mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
backends: extend tablet device checks
The Clutter X11 backend can't drop CLUTTER_PEN_DEVICE and CLUTTER_ERASER_DEVICE in favor of CLUTTER_TABLET_DEVICE without losing information (as the driver will create one device for each). So make MetaInputSettings cater for both sets of device types. https://bugzilla.gnome.org/show_bug.cgi?id=773779
This commit is contained in:
parent
6257f1195b
commit
b35b531f00
@ -724,7 +724,9 @@ update_tablet_keep_aspect (MetaInputSettings *input_settings,
|
|||||||
MetaOutput *output = NULL;
|
MetaOutput *output = NULL;
|
||||||
gboolean keep_aspect;
|
gboolean keep_aspect;
|
||||||
|
|
||||||
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE)
|
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PEN_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_ERASER_DEVICE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef HAVE_LIBWACOM
|
#ifdef HAVE_LIBWACOM
|
||||||
@ -768,6 +770,8 @@ update_device_display (MetaInputSettings *input_settings,
|
|||||||
MetaOutput *output;
|
MetaOutput *output;
|
||||||
|
|
||||||
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PEN_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_ERASER_DEVICE &&
|
||||||
clutter_input_device_get_device_type (device) != CLUTTER_TOUCHSCREEN_DEVICE)
|
clutter_input_device_get_device_type (device) != CLUTTER_TOUCHSCREEN_DEVICE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -800,7 +804,9 @@ update_tablet_mapping (MetaInputSettings *input_settings,
|
|||||||
MetaInputSettingsClass *input_settings_class;
|
MetaInputSettingsClass *input_settings_class;
|
||||||
GDesktopTabletMapping mapping;
|
GDesktopTabletMapping mapping;
|
||||||
|
|
||||||
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE)
|
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PEN_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_ERASER_DEVICE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef HAVE_LIBWACOM
|
#ifdef HAVE_LIBWACOM
|
||||||
@ -838,7 +844,9 @@ update_tablet_area (MetaInputSettings *input_settings,
|
|||||||
const gdouble *area;
|
const gdouble *area;
|
||||||
gsize n_elems;
|
gsize n_elems;
|
||||||
|
|
||||||
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE)
|
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PEN_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_ERASER_DEVICE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef HAVE_LIBWACOM
|
#ifdef HAVE_LIBWACOM
|
||||||
@ -877,7 +885,10 @@ update_tablet_left_handed (MetaInputSettings *input_settings,
|
|||||||
MetaInputSettingsClass *input_settings_class;
|
MetaInputSettingsClass *input_settings_class;
|
||||||
gboolean enabled;
|
gboolean enabled;
|
||||||
|
|
||||||
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE)
|
if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PEN_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_ERASER_DEVICE &&
|
||||||
|
clutter_input_device_get_device_type (device) != CLUTTER_PAD_DEVICE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef HAVE_LIBWACOM
|
#ifdef HAVE_LIBWACOM
|
||||||
|
Loading…
Reference in New Issue
Block a user