DevicePadSignalName
public enum DevicePadSignalName : String, SignalNameProtocol
Undocumented
-
The
changedsignal is emitted either when theGdkDevicehas changed the number of either axes or keys. For example In X this will normally happen when the slave device routing events through the master device changes (for example, user switches from the USB mouse to a tablet), in that case the master device will change to reflect the new slave device axes and keys.Declaration
Swift
case changed = "changed" -
The notify signal is emitted on an object when one of its properties has its value set through
g_object_set_property(),g_object_set(), et al.Note that getting this signal doesn’t itself guarantee that the value of the property has actually changed. When it is emitted is determined by the derived GObject class. If the implementor did not create the property with
G_PARAM_EXPLICIT_NOTIFY, then any call tog_object_set_property()results innotifybeing emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY, then this signal is emitted only when they explicitly callg_object_notify()org_object_notify_by_pspec(), and common practice is to do that only when the value has actually changed.This signal is typically used to obtain change notification for a single property, by specifying the property name as a detail in the
g_signal_connect()call, like this: (C Language Example):g_signal_connect (text_view->buffer, "notify::paste-target-list", G_CALLBACK (gtk_text_view_target_list_notify), text_view)It is important to note that you must use canonical parameter names as detail strings for the notify signal.
Declaration
Swift
case notify = "notify" -
The
tool-changedsignal is emitted on pen/eraserGdkDeviceswhenever tools enter or leave proximity.Declaration
Swift
case toolChanged = "tool-changed" -
Associated pointer or keyboard with this device, if any. Devices of type
GDK_DEVICE_TYPE_MASTERalways come in keyboard/pointer pairs. Other device types will have anilassociated device.Declaration
Swift
case notifyAssociatedDevice = "notify::associated-device" -
The axes currently available for this device.
Declaration
Swift
case notifyAxes = "notify::axes" -
The
GdkDeviceManagertheGdkDevicepertains to.Declaration
Swift
case notifyDeviceManager = "notify::device-manager" -
The
GdkDisplaytheGdkDevicepertains to.Declaration
Swift
case notifyDisplay = "notify::display" -
Whether the device is represented by a cursor on the screen. Devices of type
GDK_DEVICE_TYPE_MASTERwill havetruehere.Declaration
Swift
case notifyHasCursor = "notify::has-cursor" -
Undocumented
Declaration
Swift
case notifyInputMode = "notify::input-mode" -
Source type for the device.
Declaration
Swift
case notifyInputSource = "notify::input-source" -
Number of axes in the device.
Declaration
Swift
case notifyNAxes = "notify::n-axes" -
The device name.
Declaration
Swift
case notifyName = "notify::name" -
The maximal number of concurrent touches on a touch device. Will be 0 if the device is not a touch device or if the number of touches is unknown.
Declaration
Swift
case notifyNumTouches = "notify::num-touches" -
Product ID of this device, see
gdk_device_get_product_id().Declaration
Swift
case notifyProductId = "notify::product-id" -
GdkSeatof this device.Declaration
Swift
case notifySeat = "notify::seat" -
Undocumented
Declaration
Swift
case notifyTool = "notify::tool" -
Device role in the device manager.
Declaration
Swift
case notifyType = "notify::type" -
Vendor ID of this device, see
gdk_device_get_vendor_id().Declaration
Swift
case notifyVendorId = "notify::vendor-id"
View on GitHub
Install in Dash
DevicePadSignalName Enumeration Reference