diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-02-25 08:25:14 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-02-25 08:27:08 -0500 |
commit | f468f0fbb26a5f6199b30112420b12b9cc90a6db (patch) | |
tree | e4967eac318dbfbf63d8cce0b0001fe276f4a47a /gdk/gdkdevice.c | |
parent | 197799412889659eec413b0e5cfd371cb64fc82e (diff) | |
download | gtk+-f468f0fbb26a5f6199b30112420b12b9cc90a6db.tar.gz |
device: Add a num-touches property
Some backends can provide this information for touch devices,
and it can be useful to have, so add this property.
Diffstat (limited to 'gdk/gdkdevice.c')
-rw-r--r-- | gdk/gdkdevice.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gdk/gdkdevice.c b/gdk/gdkdevice.c index db36ced326..3edaa526f0 100644 --- a/gdk/gdkdevice.c +++ b/gdk/gdkdevice.c @@ -91,6 +91,7 @@ enum { PROP_VENDOR_ID, PROP_PRODUCT_ID, PROP_SEAT, + PROP_NUM_TOUCHES, LAST_PROP }; @@ -287,6 +288,24 @@ gdk_device_class_init (GdkDeviceClass *klass) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + /** + * GdkDevice:num-touches: + * + * 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. + * + * Since: 3.20 + */ + device_props[PROP_NUM_TOUCHES] = + g_param_spec_uint ("num-touches", + P_("Number of concurrent touches"), + P_("Number of concurrent touches"), + 0, G_MAXUINT, + 0, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS); + g_object_class_install_properties (object_class, LAST_PROP, device_props); /** @@ -400,6 +419,9 @@ gdk_device_set_property (GObject *object, case PROP_SEAT: device->seat = g_value_get_object (value); break; + case PROP_NUM_TOUCHES: + device->num_touches = g_value_get_uint (value); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -452,6 +474,9 @@ gdk_device_get_property (GObject *object, case PROP_SEAT: g_value_set_object (value, device->seat); break; + case PROP_NUM_TOUCHES: + g_value_set_uint (value, device->num_touches); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; |