1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gdk.DeviceManager; 26 27 private import gdk.Device; 28 private import gdk.Display; 29 private import glib.ListG; 30 private import gobject.ObjectG; 31 private import gobject.Signals; 32 private import gtkc.gdk; 33 public import gtkc.gdktypes; 34 35 36 /** 37 * In addition to a single pointer and keyboard for user interface input, 38 * GDK contains support for a variety of input devices, including graphics 39 * tablets, touchscreens and multiple pointers/keyboards interacting 40 * simultaneously with the user interface. Such input devices often have 41 * additional features, such as sub-pixel positioning information and 42 * additional device-dependent information. 43 * 44 * In order to query the device hierarchy and be aware of changes in the 45 * device hierarchy (such as virtual devices being created or removed, or 46 * physical devices being plugged or unplugged), GDK provides 47 * #GdkDeviceManager. 48 * 49 * By default, and if the platform supports it, GDK is aware of multiple 50 * keyboard/pointer pairs and multitouch devices. This behavior can be 51 * changed by calling gdk_disable_multidevice() before gdk_display_open(). 52 * There should rarely be a need to do that though, since GDK defaults 53 * to a compatibility mode in which it will emit just one enter/leave 54 * event pair for all devices on a window. To enable per-device 55 * enter/leave events and other multi-pointer interaction features, 56 * gdk_window_set_support_multidevice() must be called on 57 * #GdkWindows (or gtk_widget_set_support_multidevice() on widgets). 58 * window. See the gdk_window_set_support_multidevice() documentation 59 * for more information. 60 * 61 * On X11, multi-device support is implemented through XInput 2. 62 * Unless gdk_disable_multidevice() is called, the XInput 2 63 * #GdkDeviceManager implementation will be used as the input source. 64 * Otherwise either the core or XInput 1 implementations will be used. 65 * 66 * For simple applications that don’t have any special interest in 67 * input devices, the so-called “client pointer” 68 * provides a reasonable approximation to a simple setup with a single 69 * pointer and keyboard. The device that has been set as the client 70 * pointer can be accessed via gdk_device_manager_get_client_pointer(). 71 * 72 * Conceptually, in multidevice mode there are 2 device types. Virtual 73 * devices (or master devices) are represented by the pointer cursors 74 * and keyboard foci that are seen on the screen. Physical devices (or 75 * slave devices) represent the hardware that is controlling the virtual 76 * devices, and thus have no visible cursor on the screen. 77 * 78 * Virtual devices are always paired, so there is a keyboard device for every 79 * pointer device. Associations between devices may be inspected through 80 * gdk_device_get_associated_device(). 81 * 82 * There may be several virtual devices, and several physical devices could 83 * be controlling each of these virtual devices. Physical devices may also 84 * be “floating”, which means they are not attached to any virtual device. 85 * 86 * # Master and slave devices 87 * 88 * |[ 89 * carlos@sacarino:~$ xinput list 90 * ⎡ Virtual core pointer id=2 [master pointer (3)] 91 * ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] 92 * ⎜ ↳ Wacom ISDv4 E6 Pen stylus id=10 [slave pointer (2)] 93 * ⎜ ↳ Wacom ISDv4 E6 Finger touch id=11 [slave pointer (2)] 94 * ⎜ ↳ SynPS/2 Synaptics TouchPad id=13 [slave pointer (2)] 95 * ⎜ ↳ TPPS/2 IBM TrackPoint id=14 [slave pointer (2)] 96 * ⎜ ↳ Wacom ISDv4 E6 Pen eraser id=16 [slave pointer (2)] 97 * ⎣ Virtual core keyboard id=3 [master keyboard (2)] 98 * ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)] 99 * ↳ Power Button id=6 [slave keyboard (3)] 100 * ↳ Video Bus id=7 [slave keyboard (3)] 101 * ↳ Sleep Button id=8 [slave keyboard (3)] 102 * ↳ Integrated Camera id=9 [slave keyboard (3)] 103 * ↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)] 104 * ↳ ThinkPad Extra Buttons id=15 [slave keyboard (3)] 105 * ]| 106 * 107 * By default, GDK will automatically listen for events coming from all 108 * master devices, setting the #GdkDevice for all events coming from input 109 * devices. Events containing device information are #GDK_MOTION_NOTIFY, 110 * #GDK_BUTTON_PRESS, #GDK_2BUTTON_PRESS, #GDK_3BUTTON_PRESS, 111 * #GDK_BUTTON_RELEASE, #GDK_SCROLL, #GDK_KEY_PRESS, #GDK_KEY_RELEASE, 112 * #GDK_ENTER_NOTIFY, #GDK_LEAVE_NOTIFY, #GDK_FOCUS_CHANGE, 113 * #GDK_PROXIMITY_IN, #GDK_PROXIMITY_OUT, #GDK_DRAG_ENTER, #GDK_DRAG_LEAVE, 114 * #GDK_DRAG_MOTION, #GDK_DRAG_STATUS, #GDK_DROP_START, #GDK_DROP_FINISHED 115 * and #GDK_GRAB_BROKEN. When dealing with an event on a master device, 116 * it is possible to get the source (slave) device that the event originated 117 * from via gdk_event_get_source_device(). 118 * 119 * On a standard session, all physical devices are connected by default to 120 * the "Virtual Core Pointer/Keyboard" master devices, hence routing all events 121 * through these. This behavior is only modified by device grabs, where the 122 * slave device is temporarily detached for as long as the grab is held, and 123 * more permanently by user modifications to the device hierarchy. 124 * 125 * On certain application specific setups, it may make sense 126 * to detach a physical device from its master pointer, and mapping it to 127 * an specific window. This can be achieved by the combination of 128 * gdk_device_grab() and gdk_device_set_mode(). 129 * 130 * In order to listen for events coming from devices 131 * other than a virtual device, gdk_window_set_device_events() must be 132 * called. Generally, this function can be used to modify the event mask 133 * for any given device. 134 * 135 * Input devices may also provide additional information besides X/Y. 136 * For example, graphics tablets may also provide pressure and X/Y tilt 137 * information. This information is device-dependent, and may be 138 * queried through gdk_device_get_axis(). In multidevice mode, virtual 139 * devices will change axes in order to always represent the physical 140 * device that is routing events through it. Whenever the physical device 141 * changes, the #GdkDevice:n-axes property will be notified, and 142 * gdk_device_list_axes() will return the new device axes. 143 * 144 * Devices may also have associated “keys” or 145 * macro buttons. Such keys can be globally set to map into normal X 146 * keyboard events. The mapping is set using gdk_device_set_key(). 147 */ 148 public class DeviceManager : ObjectG 149 { 150 /** the main Gtk struct */ 151 protected GdkDeviceManager* gdkDeviceManager; 152 153 /** Get the main Gtk struct */ 154 public GdkDeviceManager* getDeviceManagerStruct() 155 { 156 return gdkDeviceManager; 157 } 158 159 /** the main Gtk struct as a void* */ 160 protected override void* getStruct() 161 { 162 return cast(void*)gdkDeviceManager; 163 } 164 165 protected override void setStruct(GObject* obj) 166 { 167 gdkDeviceManager = cast(GdkDeviceManager*)obj; 168 super.setStruct(obj); 169 } 170 171 /** 172 * Sets our main struct and passes it to the parent class. 173 */ 174 public this (GdkDeviceManager* gdkDeviceManager, bool ownedRef = false) 175 { 176 this.gdkDeviceManager = gdkDeviceManager; 177 super(cast(GObject*)gdkDeviceManager, ownedRef); 178 } 179 180 181 /** */ 182 public static GType getType() 183 { 184 return gdk_device_manager_get_type(); 185 } 186 187 /** 188 * Returns the client pointer, that is, the master pointer that acts as the core pointer 189 * for this application. In X11, window managers may change this depending on the interaction 190 * pattern under the presence of several pointers. 191 * 192 * You should use this function seldomly, only in code that isn’t triggered by a #GdkEvent 193 * and there aren’t other means to get a meaningful #GdkDevice to operate on. 194 * 195 * Return: The client pointer. This memory is 196 * owned by GDK and must not be freed or unreferenced. 197 * 198 * Since: 3.0 199 */ 200 public Device getClientPointer() 201 { 202 auto p = gdk_device_manager_get_client_pointer(gdkDeviceManager); 203 204 if(p is null) 205 { 206 return null; 207 } 208 209 return ObjectG.getDObject!(Device)(cast(GdkDevice*) p); 210 } 211 212 /** 213 * Gets the #GdkDisplay associated to @device_manager. 214 * 215 * Return: the #GdkDisplay to which 216 * @device_manager is associated to, or #NULL. This memory is 217 * owned by GDK and must not be freed or unreferenced. 218 * 219 * Since: 3.0 220 */ 221 public Display getDisplay() 222 { 223 auto p = gdk_device_manager_get_display(gdkDeviceManager); 224 225 if(p is null) 226 { 227 return null; 228 } 229 230 return ObjectG.getDObject!(Display)(cast(GdkDisplay*) p); 231 } 232 233 /** 234 * Returns the list of devices of type @type currently attached to 235 * @device_manager. 236 * 237 * Params: 238 * type = device type to get. 239 * 240 * Return: a list of 241 * #GdkDevices. The returned list must be 242 * freed with g_list_free (). The list elements are owned by 243 * GTK+ and must not be freed or unreffed. 244 * 245 * Since: 3.0 246 */ 247 public ListG listDevices(GdkDeviceType type) 248 { 249 auto p = gdk_device_manager_list_devices(gdkDeviceManager, type); 250 251 if(p is null) 252 { 253 return null; 254 } 255 256 return new ListG(cast(GList*) p); 257 } 258 259 int[string] connectedSignals; 260 261 void delegate(Device, DeviceManager)[] onDeviceAddedListeners; 262 /** 263 * The ::device-added signal is emitted either when a new master 264 * pointer is created, or when a slave (Hardware) input device 265 * is plugged in. 266 * 267 * Params: 268 * device = the newly added #GdkDevice. 269 */ 270 void addOnDeviceAdded(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 271 { 272 if ( "device-added" !in connectedSignals ) 273 { 274 Signals.connectData( 275 this, 276 "device-added", 277 cast(GCallback)&callBackDeviceAdded, 278 cast(void*)this, 279 null, 280 connectFlags); 281 connectedSignals["device-added"] = 1; 282 } 283 onDeviceAddedListeners ~= dlg; 284 } 285 extern(C) static void callBackDeviceAdded(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 286 { 287 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceAddedListeners ) 288 { 289 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 290 } 291 } 292 293 void delegate(Device, DeviceManager)[] onDeviceChangedListeners; 294 /** 295 * The ::device-changed signal is emitted whenever a device 296 * has changed in the hierarchy, either slave devices being 297 * disconnected from their master device or connected to 298 * another one, or master devices being added or removed 299 * a slave device. 300 * 301 * If a slave device is detached from all master devices 302 * (gdk_device_get_associated_device() returns %NULL), its 303 * #GdkDeviceType will change to %GDK_DEVICE_TYPE_FLOATING, 304 * if it's attached, it will change to %GDK_DEVICE_TYPE_SLAVE. 305 * 306 * Params: 307 * device = the #GdkDevice that changed. 308 */ 309 void addOnDeviceChanged(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 310 { 311 if ( "device-changed" !in connectedSignals ) 312 { 313 Signals.connectData( 314 this, 315 "device-changed", 316 cast(GCallback)&callBackDeviceChanged, 317 cast(void*)this, 318 null, 319 connectFlags); 320 connectedSignals["device-changed"] = 1; 321 } 322 onDeviceChangedListeners ~= dlg; 323 } 324 extern(C) static void callBackDeviceChanged(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 325 { 326 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceChangedListeners ) 327 { 328 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 329 } 330 } 331 332 void delegate(Device, DeviceManager)[] onDeviceRemovedListeners; 333 /** 334 * The ::device-removed signal is emitted either when a master 335 * pointer is removed, or when a slave (Hardware) input device 336 * is unplugged. 337 * 338 * Params: 339 * device = the just removed #GdkDevice. 340 */ 341 void addOnDeviceRemoved(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 342 { 343 if ( "device-removed" !in connectedSignals ) 344 { 345 Signals.connectData( 346 this, 347 "device-removed", 348 cast(GCallback)&callBackDeviceRemoved, 349 cast(void*)this, 350 null, 351 connectFlags); 352 connectedSignals["device-removed"] = 1; 353 } 354 onDeviceRemovedListeners ~= dlg; 355 } 356 extern(C) static void callBackDeviceRemoved(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 357 { 358 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceRemovedListeners ) 359 { 360 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 361 } 362 } 363 364 /** 365 * Disables multidevice support in GDK. This call must happen prior 366 * to gdk_display_open(), gtk_init(), gtk_init_with_args() or 367 * gtk_init_check() in order to take effect. 368 * 369 * Most common GTK+ applications won’t ever need to call this. Only 370 * applications that do mixed GDK/Xlib calls could want to disable 371 * multidevice support if such Xlib code deals with input devices in 372 * any way and doesn’t observe the presence of XInput 2. 373 * 374 * Since: 3.0 375 */ 376 public static void disableMultidevice() 377 { 378 gdk_disable_multidevice(); 379 } 380 }