Blame SOURCES/wacom-pro-pen-3d.patch

95b65e
From 42a526581d1216d835dbbbeab5a7bdb75b349179 Mon Sep 17 00:00:00 2001
95b65e
From: Jason Gerecke <killertofu@gmail.com>
95b65e
Date: Tue, 10 Oct 2017 09:18:25 -0700
95b65e
Subject: [PATCH 1/2] clutter/evdev: Add support for BTN_STYLUS3
95b65e
95b65e
BTN_STYLUS3 is defined by the Linux 4.15 kernel and is sent when the
95b65e
third button on a stylus is pressed. At the moment, only Wacom's "Pro
95b65e
Pen 3D" has three stylus buttons. Pressing this button triggers a button
95b65e
8 event to be sent under X11, so we use the same mapping here.
95b65e
95b65e
https://bugzilla.gnome.org/show_bug.cgi?id=790033
95b65e
---
95b65e
 clutter/clutter/evdev/clutter-seat-evdev.c | 8 ++++++++
95b65e
 1 file changed, 8 insertions(+)
95b65e
95b65e
diff --git a/clutter/clutter/evdev/clutter-seat-evdev.c b/clutter/clutter/evdev/clutter-seat-evdev.c
95b65e
index e8524da..f98f85a 100644
95b65e
--- a/clutter/clutter/evdev/clutter-seat-evdev.c
95b65e
+++ b/clutter/clutter/evdev/clutter-seat-evdev.c
95b65e
@@ -45,6 +45,10 @@
95b65e
 
95b65e
 #define DISCRETE_SCROLL_STEP 10.0
95b65e
 
95b65e
+#ifndef BTN_STYLUS3
95b65e
+#define BTN_STYLUS3 0x149 /* Linux 4.15 */
95b65e
+#endif
95b65e
+
95b65e
 void
95b65e
 clutter_seat_evdev_set_libinput_seat (ClutterSeatEvdev     *seat,
95b65e
                                       struct libinput_seat *libinput_seat)
95b65e
@@ -492,6 +496,10 @@ clutter_seat_evdev_notify_button (ClutterSeatEvdev   *seat,
95b65e
       button_nr = CLUTTER_BUTTON_MIDDLE;
95b65e
       break;
95b65e
 
95b65e
+    case 0x149: /* BTN_STYLUS3 */
95b65e
+      button_nr = 8;
95b65e
+      break;
95b65e
+
95b65e
     default:
95b65e
       /* For compatibility reasons, all additional buttons go after the old 4-7 scroll ones */
95b65e
       if (clutter_input_device_get_device_type (input_device) == CLUTTER_TABLET_DEVICE)
95b65e
-- 
95b65e
2.17.0
95b65e
95b65e
95b65e
From c42c5294d0ca3d27001f217974cad72a40ffae60 Mon Sep 17 00:00:00 2001
95b65e
From: Jason Gerecke <killertofu@gmail.com>
95b65e
Date: Tue, 10 Oct 2017 08:55:41 -0700
95b65e
Subject: [PATCH 2/2] backends: Add support for Wacom stylus
95b65e
 tertiary-button-action
95b65e
95b65e
The tertiary-button-action (see bug 790028) is a place for g-c-c to store
95b65e
the action which should be performed when a stylus' third button is pressed.
95b65e
Pressing this button is signaled as a BTN_STYLUS3 event from the kernel or
95b65e
X11 button 8.
95b65e
95b65e
https://bugzilla.gnome.org/show_bug.cgi?id=790033
95b65e
---
95b65e
 src/backends/meta-input-settings-private.h       |  3 ++-
95b65e
 src/backends/meta-input-settings.c               |  5 +++--
95b65e
 src/backends/native/meta-input-settings-native.c |  5 ++++-
95b65e
 src/backends/x11/meta-input-settings-x11.c       | 10 ++++++++--
95b65e
 4 files changed, 17 insertions(+), 6 deletions(-)
95b65e
95b65e
diff --git a/src/backends/meta-input-settings-private.h b/src/backends/meta-input-settings-private.h
95b65e
index 605690e..893d4ec 100644
95b65e
--- a/src/backends/meta-input-settings-private.h
95b65e
+++ b/src/backends/meta-input-settings-private.h
95b65e
@@ -111,7 +111,8 @@ struct _MetaInputSettingsClass
95b65e
                                   ClutterInputDevice         *device,
95b65e
                                   ClutterInputDeviceTool     *tool,
95b65e
                                   GDesktopStylusButtonAction  primary,
95b65e
-                                  GDesktopStylusButtonAction  secondary);
95b65e
+                                  GDesktopStylusButtonAction  secondary,
95b65e
+                                  GDesktopStylusButtonAction  tertiary);
95b65e
   gboolean (* has_two_finger_scroll) (MetaInputSettings  *settings,
95b65e
                                       ClutterInputDevice *device);
95b65e
 };
95b65e
diff --git a/src/backends/meta-input-settings.c b/src/backends/meta-input-settings.c
95b65e
index ec0fc9f..989f9e3 100644
95b65e
--- a/src/backends/meta-input-settings.c
95b65e
+++ b/src/backends/meta-input-settings.c
95b65e
@@ -1453,7 +1453,7 @@ update_stylus_buttonmap (MetaInputSettings      *input_settings,
95b65e
                          ClutterInputDeviceTool *tool)
95b65e
 {
95b65e
   MetaInputSettingsClass *input_settings_class;
95b65e
-  GDesktopStylusButtonAction primary, secondary;
95b65e
+  GDesktopStylusButtonAction primary, secondary, tertiary;
95b65e
   GSettings *tool_settings;
95b65e
 
95b65e
   if (clutter_input_device_get_device_type (device) != CLUTTER_TABLET_DEVICE &&
95b65e
@@ -1468,10 +1468,11 @@ update_stylus_buttonmap (MetaInputSettings      *input_settings,
95b65e
 
95b65e
   primary = g_settings_get_enum (tool_settings, "button-action");
95b65e
   secondary = g_settings_get_enum (tool_settings, "secondary-button-action");
95b65e
+  tertiary = g_settings_get_enum (tool_settings, "tertiary-button-action");
95b65e
 
95b65e
   input_settings_class = META_INPUT_SETTINGS_GET_CLASS (input_settings);
95b65e
   input_settings_class->set_stylus_button_map (input_settings, device, tool,
95b65e
-                                               primary, secondary);
95b65e
+                                               primary, secondary, tertiary);
95b65e
 }
95b65e
 
95b65e
 static void
95b65e
diff --git a/src/backends/native/meta-input-settings-native.c b/src/backends/native/meta-input-settings-native.c
95b65e
index beb7217..7450725 100644
95b65e
--- a/src/backends/native/meta-input-settings-native.c
95b65e
+++ b/src/backends/native/meta-input-settings-native.c
95b65e
@@ -547,12 +547,15 @@ meta_input_settings_native_set_stylus_button_map (MetaInputSettings          *se
95b65e
                                                   ClutterInputDevice         *device,
95b65e
                                                   ClutterInputDeviceTool     *tool,
95b65e
                                                   GDesktopStylusButtonAction  primary,
95b65e
-                                                  GDesktopStylusButtonAction  secondary)
95b65e
+                                                  GDesktopStylusButtonAction  secondary,
95b65e
+                                                  GDesktopStylusButtonAction  tertiary)
95b65e
 {
95b65e
   clutter_evdev_input_device_tool_set_button_code (tool, CLUTTER_BUTTON_MIDDLE,
95b65e
                                                    action_to_evcode (primary));
95b65e
   clutter_evdev_input_device_tool_set_button_code (tool, CLUTTER_BUTTON_SECONDARY,
95b65e
                                                    action_to_evcode (secondary));
95b65e
+  clutter_evdev_input_device_tool_set_button_code (tool, 8, /* Back */
95b65e
+                                                   action_to_evcode (tertiary));
95b65e
 }
95b65e
 
95b65e
 static void
95b65e
diff --git a/src/backends/x11/meta-input-settings-x11.c b/src/backends/x11/meta-input-settings-x11.c
95b65e
index 4867b6b..7d5239f 100644
95b65e
--- a/src/backends/x11/meta-input-settings-x11.c
95b65e
+++ b/src/backends/x11/meta-input-settings-x11.c
95b65e
@@ -1031,7 +1031,8 @@ meta_input_settings_x11_set_stylus_button_map (MetaInputSettings          *setti
95b65e
                                                ClutterInputDevice         *device,
95b65e
                                                ClutterInputDeviceTool     *tool,
95b65e
                                                GDesktopStylusButtonAction  primary,
95b65e
-                                               GDesktopStylusButtonAction  secondary)
95b65e
+                                               GDesktopStylusButtonAction  secondary,
95b65e
+                                               GDesktopStylusButtonAction  tertiary)
95b65e
 {
95b65e
   MetaDisplay *display = meta_get_display ();
95b65e
   MetaBackend *backend = meta_get_backend ();
95b65e
@@ -1046,10 +1047,15 @@ meta_input_settings_x11_set_stylus_button_map (MetaInputSettings          *setti
95b65e
   xdev = device_ensure_xdevice (device);
95b65e
   if (xdev)
95b65e
     {
95b65e
-      guchar map[3] = {
95b65e
+      guchar map[8] = {
95b65e
         CLUTTER_BUTTON_PRIMARY,
95b65e
         action_to_button (primary, CLUTTER_BUTTON_MIDDLE),
95b65e
         action_to_button (secondary, CLUTTER_BUTTON_SECONDARY),
95b65e
+        4,
95b65e
+        5,
95b65e
+        6,
95b65e
+        7,
95b65e
+        action_to_button (tertiary, 8), /* "Back" */
95b65e
       };
95b65e
 
95b65e
       XSetDeviceButtonMapping (xdisplay, xdev, map, G_N_ELEMENTS (map));
95b65e
-- 
95b65e
2.17.0
95b65e