From 19fdb3f9f84b9354c24d1ec58e43ea9d4d575c3f Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Fri, 24 Aug 2018 00:17:16 -0400 Subject: Mouse: include a toggle to enable or disable middlemouse paste Defaults to ON so as not to change expected behavior until user changes it. --- capplets/mouse/mate-mouse-properties.c | 9 +++++++++ capplets/mouse/mate-mouse-properties.ui | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) (limited to 'capplets/mouse') diff --git a/capplets/mouse/mate-mouse-properties.c b/capplets/mouse/mate-mouse-properties.c index 5fc3fee8..d5fef831 100644 --- a/capplets/mouse/mate-mouse-properties.c +++ b/capplets/mouse/mate-mouse-properties.c @@ -51,6 +51,7 @@ enum }; #define MOUSE_SCHEMA "org.mate.peripherals-mouse" +#define INTERFACE_SCHEMA "org.mate.interface" #define DOUBLE_CLICK_KEY "double-click" #define TOUCHPAD_SCHEMA "org.mate.peripherals-touchpad" @@ -61,6 +62,7 @@ enum static gint double_click_state = DOUBLE_CLICK_TEST_OFF; static GSettings *mouse_settings = NULL; +static GSettings *interface_settings = NULL; static GSettings *touchpad_settings = NULL; /* Double Click handling */ @@ -273,6 +275,11 @@ setup_dialog (GtkBuilder *dialog) g_settings_bind (mouse_settings, "middle-button-enabled", WID ("middle_button_emulation_toggle"), "active", G_SETTINGS_BIND_DEFAULT); + /* Middle Button Paste */ + g_settings_bind (interface_settings, "gtk-enable-primary-paste", WID ("middle_button_paste_toggle"), + "active", G_SETTINGS_BIND_DEFAULT); + + /* Double-click time */ g_settings_bind (mouse_settings, DOUBLE_CLICK_KEY, gtk_range_get_adjustment (GTK_RANGE (WID ("delay_scale"))), "value", @@ -432,6 +439,7 @@ main (int argc, char **argv) activate_settings_daemon (); mouse_settings = g_settings_new (MOUSE_SCHEMA); + interface_settings = g_settings_new (INTERFACE_SCHEMA); touchpad_settings = g_settings_new (TOUCHPAD_SCHEMA); dialog = create_dialog (); @@ -471,6 +479,7 @@ main (int argc, char **argv) } g_object_unref (mouse_settings); + g_object_unref (interface_settings); g_object_unref (touchpad_settings); return 0; diff --git a/capplets/mouse/mate-mouse-properties.ui b/capplets/mouse/mate-mouse-properties.ui index aea5fcc2..48c446e2 100644 --- a/capplets/mouse/mate-mouse-properties.ui +++ b/capplets/mouse/mate-mouse-properties.ui @@ -287,6 +287,32 @@ 2 + + + True + False + 6 + 12 + + + Enable middlemouse paste + True + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + start + True + True + True + + + + + False + True + 3 + + False -- cgit v1.2.1