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 183 public static GType getType() 184 { 185 return gdk_device_manager_get_type(); 186 } 187 188 /** 189 * Returns the client pointer, that is, the master pointer that acts as the core pointer 190 * for this application. In X11, window managers may change this depending on the interaction 191 * pattern under the presence of several pointers. 192 * 193 * You should use this function seldomly, only in code that isn’t triggered by a #GdkEvent 194 * and there aren’t other means to get a meaningful #GdkDevice to operate on. 195 * 196 * Return: The client pointer. This memory is 197 * owned by GDK and must not be freed or unreferenced. 198 * 199 * Since: 3.0 200 */ 201 public Device getClientPointer() 202 { 203 auto p = gdk_device_manager_get_client_pointer(gdkDeviceManager); 204 205 if(p is null) 206 { 207 return null; 208 } 209 210 return ObjectG.getDObject!(Device)(cast(GdkDevice*) p); 211 } 212 213 /** 214 * Gets the #GdkDisplay associated to @device_manager. 215 * 216 * Return: the #GdkDisplay to which 217 * @device_manager is associated to, or #NULL. This memory is 218 * owned by GDK and must not be freed or unreferenced. 219 * 220 * Since: 3.0 221 */ 222 public Display getDisplay() 223 { 224 auto p = gdk_device_manager_get_display(gdkDeviceManager); 225 226 if(p is null) 227 { 228 return null; 229 } 230 231 return ObjectG.getDObject!(Display)(cast(GdkDisplay*) p); 232 } 233 234 /** 235 * Returns the list of devices of type @type currently attached to 236 * @device_manager. 237 * 238 * Params: 239 * type = device type to get. 240 * 241 * Return: a list of 242 * #GdkDevices. The returned list must be 243 * freed with g_list_free (). The list elements are owned by 244 * GTK+ and must not be freed or unreffed. 245 * 246 * Since: 3.0 247 */ 248 public ListG listDevices(GdkDeviceType type) 249 { 250 auto p = gdk_device_manager_list_devices(gdkDeviceManager, type); 251 252 if(p is null) 253 { 254 return null; 255 } 256 257 return new ListG(cast(GList*) p); 258 } 259 260 int[string] connectedSignals; 261 262 void delegate(Device, DeviceManager)[] onDeviceAddedListeners; 263 /** 264 * The ::device-added signal is emitted either when a new master 265 * pointer is created, or when a slave (Hardware) input device 266 * is plugged in. 267 * 268 * Params: 269 * device = the newly added #GdkDevice. 270 */ 271 void addOnDeviceAdded(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 272 { 273 if ( "device-added" !in connectedSignals ) 274 { 275 Signals.connectData( 276 this, 277 "device-added", 278 cast(GCallback)&callBackDeviceAdded, 279 cast(void*)this, 280 null, 281 connectFlags); 282 connectedSignals["device-added"] = 1; 283 } 284 onDeviceAddedListeners ~= dlg; 285 } 286 extern(C) static void callBackDeviceAdded(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 287 { 288 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceAddedListeners ) 289 { 290 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 291 } 292 } 293 294 void delegate(Device, DeviceManager)[] onDeviceChangedListeners; 295 /** 296 * The ::device-changed signal is emitted whenever a device 297 * has changed in the hierarchy, either slave devices being 298 * disconnected from their master device or connected to 299 * another one, or master devices being added or removed 300 * a slave device. 301 * 302 * If a slave device is detached from all master devices 303 * (gdk_device_get_associated_device() returns %NULL), its 304 * #GdkDeviceType will change to %GDK_DEVICE_TYPE_FLOATING, 305 * if it's attached, it will change to %GDK_DEVICE_TYPE_SLAVE. 306 * 307 * Params: 308 * device = the #GdkDevice that changed. 309 */ 310 void addOnDeviceChanged(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 311 { 312 if ( "device-changed" !in connectedSignals ) 313 { 314 Signals.connectData( 315 this, 316 "device-changed", 317 cast(GCallback)&callBackDeviceChanged, 318 cast(void*)this, 319 null, 320 connectFlags); 321 connectedSignals["device-changed"] = 1; 322 } 323 onDeviceChangedListeners ~= dlg; 324 } 325 extern(C) static void callBackDeviceChanged(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 326 { 327 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceChangedListeners ) 328 { 329 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 330 } 331 } 332 333 void delegate(Device, DeviceManager)[] onDeviceRemovedListeners; 334 /** 335 * The ::device-removed signal is emitted either when a master 336 * pointer is removed, or when a slave (Hardware) input device 337 * is unplugged. 338 * 339 * Params: 340 * device = the just removed #GdkDevice. 341 */ 342 void addOnDeviceRemoved(void delegate(Device, DeviceManager) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 343 { 344 if ( "device-removed" !in connectedSignals ) 345 { 346 Signals.connectData( 347 this, 348 "device-removed", 349 cast(GCallback)&callBackDeviceRemoved, 350 cast(void*)this, 351 null, 352 connectFlags); 353 connectedSignals["device-removed"] = 1; 354 } 355 onDeviceRemovedListeners ~= dlg; 356 } 357 extern(C) static void callBackDeviceRemoved(GdkDeviceManager* devicemanagerStruct, GdkDevice* device, DeviceManager _devicemanager) 358 { 359 foreach ( void delegate(Device, DeviceManager) dlg; _devicemanager.onDeviceRemovedListeners ) 360 { 361 dlg(ObjectG.getDObject!(Device)(device), _devicemanager); 362 } 363 } 364 365 /** 366 * Disables multidevice support in GDK. This call must happen prior 367 * to gdk_display_open(), gtk_init(), gtk_init_with_args() or 368 * gtk_init_check() in order to take effect. 369 * 370 * Most common GTK+ applications won’t ever need to call this. Only 371 * applications that do mixed GDK/Xlib calls could want to disable 372 * multidevice support if such Xlib code deals with input devices in 373 * any way and doesn’t observe the presence of XInput 2. 374 * 375 * Since: 3.0 376 */ 377 public static void disableMultidevice() 378 { 379 gdk_disable_multidevice(); 380 } 381 }