package wayland
Pure OCaml Wayland protocol library
Install
dune-project
Dependency
Authors
Maintainers
Sources
wayland-2.2.tbz
sha256=0f882060a4cfe9424ed397676b8e2aaa931d84610beb29cb2ec9c355d1819625
sha512=847781a3d274da7463ad1a2e46bada3663b8dee08fa576ad787e7ba35cb0f39a3e1a0e6e9729db2f643885a35ae32ece0358c5897d31b68907cad44f1b26af31
doc/src/wayland.protocols/cursor_shape_v1_client.ml.html
Source file cursor_shape_v1_client.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
(* This file was generated automatically by wayland-scanner-ocaml *) [@@@ocaml.warning "-27-34"] open struct module Imports = struct include Cursor_shape_v1_proto include Wayland.Wayland_proto include Tablet_v2_proto end module Proxy = Wayland.Proxy module Msg = Wayland.Msg module Fixed = Wayland.Fixed module Iface_reg = Wayland.Iface_reg module S = Wayland.S end (** Cursor shape manager. This global offers an alternative, optional way to set cursor images. This new way uses enumerated cursors instead of a wl_surface like wl_pointer.set_cursor does. Warning! The protocol described in this file is currently in the testing phase. Backward compatible changes may be added together with the corresponding interface version bump. Backward incompatible changes can only be done by creating a new major version of the extension. *) module Wp_cursor_shape_manager_v1 = struct type 'v t = ([`Wp_cursor_shape_manager_v1], 'v, [`Client]) Proxy.t (** {2 Version 1, 2} *) (** Manage the cursor shape of a tablet tool device. Obtain a wp_cursor_shape_device_v1 for a zwp_tablet_tool_v2 object. When the zwp_tablet_tool_v2 is removed, the wp_cursor_shape_device_v1 object becomes inert. *) let get_tablet_tool_v2 (_t:([< `V1 | `V2] as 'v) t) (cursor_shape_device:([`Wp_cursor_shape_device_v1], 'v, [`Client]) #Proxy.Handler.t) ~(tablet_tool:([`Zwp_tablet_tool_v2], _, [`Client]) Proxy.t) = let __cursor_shape_device = Proxy.spawn _t cursor_shape_device in let _msg = Proxy.alloc _t ~op:2 ~ints:2 ~strings:[] ~arrays:[] in Msg.add_int _msg (Proxy.id __cursor_shape_device); Msg.add_int _msg (Proxy.id tablet_tool); Proxy.send _t _msg; __cursor_shape_device (** Manage the cursor shape of a pointer device. Obtain a wp_cursor_shape_device_v1 for a wl_pointer object. When the pointer capability is removed from the wl_seat, the wp_cursor_shape_device_v1 object becomes inert. *) let get_pointer (_t:([< `V1 | `V2] as 'v) t) (cursor_shape_device:([`Wp_cursor_shape_device_v1], 'v, [`Client]) #Proxy.Handler.t) ~(pointer:([`Wl_pointer], _, [`Client]) Proxy.t) = let __cursor_shape_device = Proxy.spawn _t cursor_shape_device in let _msg = Proxy.alloc _t ~op:1 ~ints:2 ~strings:[] ~arrays:[] in Msg.add_int _msg (Proxy.id __cursor_shape_device); Msg.add_int _msg (Proxy.id pointer); Proxy.send _t _msg; __cursor_shape_device (** Destroy the manager. Destroy the cursor shape manager. *) let destroy (_t:([< `V1 | `V2] as 'v) t) = let _msg = Proxy.alloc _t ~op:0 ~ints:0 ~strings:[] ~arrays:[] in Proxy.send _t _msg; Proxy.shutdown_send _t (**/**) class ['v] _handlers_unsafe = object (_self : (_, 'v, _) #Proxy.Handler.t) method user_data = S.No_data method metadata = (module Cursor_shape_v1_proto.Wp_cursor_shape_manager_v1) method max_version = 2l method dispatch (_proxy : 'v t) _msg = let _proxy = Proxy.cast_version _proxy in match Msg.op _msg with | _ -> assert false end (**/**) (** {2 Handlers} Note: Servers will always want to use [v1]. *) (** Handler for a proxy with version >= 1. *) class ['v] v1 = object (_ : (_, 'v, _) #Proxy.Service_handler.t) (**/**) inherit [[< `V1 | `V2] as 'v] _handlers_unsafe (**/**) method min_version = 1l method bind_version : [`V1] = `V1 end (** Handler for a proxy with version >= 2. *) class ['v] v2 = object (_ : (_, 'v, _) #Proxy.Service_handler.t) (**/**) inherit [[< `V2] as 'v] _handlers_unsafe (**/**) method min_version = 2l method bind_version : [`V2] = `V2 end end (** Cursor shape for a device. This interface allows clients to set the cursor shape. *) module Wp_cursor_shape_device_v1 = struct type 'v t = ([`Wp_cursor_shape_device_v1], 'v, [`Client]) Proxy.t module Shape = Cursor_shape_v1_proto.Wp_cursor_shape_device_v1.Shape module Error = Cursor_shape_v1_proto.Wp_cursor_shape_device_v1.Error (** {2 Version 1, 2} *) (** Set device cursor to the shape. Sets the device cursor to the specified shape. The compositor will change the cursor image based on the specified shape. The cursor actually changes only if the input device focus is one of the requesting client's surfaces. If any, the previous cursor image (surface or shape) is replaced. The "shape" argument must be a valid enum entry, otherwise the invalid_shape protocol error is raised. This is similar to the wl_pointer.set_cursor and zwp_tablet_tool_v2.set_cursor requests, but this request accepts a shape instead of contents in the form of a surface. Clients can mix set_cursor and set_shape requests. The serial parameter must match the latest wl_pointer.enter or zwp_tablet_tool_v2.proximity_in serial number sent to the client. Otherwise the request will be ignored. *) let set_shape (_t:([< `V1 | `V2] as 'v) t) ~serial ~shape = let _msg = Proxy.alloc _t ~op:1 ~ints:2 ~strings:[] ~arrays:[] in Msg.add_int _msg serial; Msg.add_int _msg (Imports.Wp_cursor_shape_device_v1.Shape.to_int32 shape); Proxy.send _t _msg (** Destroy the cursor shape device. Destroy the cursor shape device. The device cursor shape remains unchanged. *) let destroy (_t:([< `V1 | `V2] as 'v) t) = let _msg = Proxy.alloc _t ~op:0 ~ints:0 ~strings:[] ~arrays:[] in Proxy.send _t _msg; Proxy.shutdown_send _t (**/**) class ['v] _handlers_unsafe = object (_self : (_, 'v, _) #Proxy.Handler.t) method user_data = S.No_data method metadata = (module Cursor_shape_v1_proto.Wp_cursor_shape_device_v1) method max_version = 2l method dispatch (_proxy : 'v t) _msg = let _proxy = Proxy.cast_version _proxy in match Msg.op _msg with | _ -> assert false end (**/**) (** {2 Handlers} Note: Servers will always want to use [v1]. *) (** Handler for a proxy with version >= 1. *) class ['v] v1 = object (_ : (_, 'v, _) #Proxy.Service_handler.t) (**/**) inherit [[< `V1 | `V2] as 'v] _handlers_unsafe (**/**) method min_version = 1l end (** Handler for a proxy with version >= 2. *) class ['v] v2 = object (_ : (_, 'v, _) #Proxy.Service_handler.t) (**/**) inherit [[< `V2] as 'v] _handlers_unsafe (**/**) method min_version = 2l end end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>