mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
gdkdevice: Add GDK_SOURCE_TABLET_PAD input source type for GdkDevices
This will represent a tablet pad. https://bugzilla.gnome.org/show_bug.cgi?id=770026
This commit is contained in:
parent
3ac56e60c7
commit
3f56af3738
@ -49,6 +49,9 @@ typedef struct _GdkTimeCoord GdkTimeCoord;
|
|||||||
* as a touchpad. This device type has been added in 3.4.
|
* as a touchpad. This device type has been added in 3.4.
|
||||||
* @GDK_SOURCE_TRACKPOINT: the device is a trackpoint. This device type has been
|
* @GDK_SOURCE_TRACKPOINT: the device is a trackpoint. This device type has been
|
||||||
* added in 3.22
|
* added in 3.22
|
||||||
|
* @GDK_SOURCE_TABLET_PAD: the device is a "pad", a collection of buttons,
|
||||||
|
* rings and strips found in drawing tablets. This device type has been
|
||||||
|
* added in 3.22.
|
||||||
*
|
*
|
||||||
* An enumeration describing the type of an input device in general terms.
|
* An enumeration describing the type of an input device in general terms.
|
||||||
*/
|
*/
|
||||||
@ -61,7 +64,8 @@ typedef enum
|
|||||||
GDK_SOURCE_KEYBOARD,
|
GDK_SOURCE_KEYBOARD,
|
||||||
GDK_SOURCE_TOUCHSCREEN,
|
GDK_SOURCE_TOUCHSCREEN,
|
||||||
GDK_SOURCE_TOUCHPAD,
|
GDK_SOURCE_TOUCHPAD,
|
||||||
GDK_SOURCE_TRACKPOINT
|
GDK_SOURCE_TRACKPOINT,
|
||||||
|
GDK_SOURCE_TABLET_PAD
|
||||||
} GdkInputSource;
|
} GdkInputSource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user