diff options
author | Stefano Karapetsas <[email protected]> | 2012-09-05 14:13:02 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-09-05 14:13:02 +0200 |
commit | f3fda69cae01b52e65a5608ed7c86d2abbb8f80a (patch) | |
tree | 606ee69064e291e4957a81ad434efd3d913e1ab0 /src | |
parent | 8e8764286d4a3f65839dfdd4019b4f22fe3eabe4 (diff) | |
download | caja-f3fda69cae01b52e65a5608ed7c86d2abbb8f80a.tar.bz2 caja-f3fda69cae01b52e65a5608ed7c86d2abbb8f80a.tar.xz |
convert mouse preferences to gsettings
Diffstat (limited to 'src')
-rw-r--r-- | src/caja-navigation-window.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/caja-navigation-window.c b/src/caja-navigation-window.c index 7043e2d7..827ba154 100644 --- a/src/caja-navigation-window.c +++ b/src/caja-navigation-window.c @@ -245,7 +245,7 @@ mouse_back_button_changed (gpointer callback_data) { int new_back_button; - new_back_button = eel_preferences_get_integer (CAJA_PREFERENCES_MOUSE_BACK_BUTTON); + new_back_button = g_settings_get_int (caja_preferences, CAJA_PREFERENCES_MOUSE_BACK_BUTTON); /* Bounds checking */ if (new_back_button < 6 || new_back_button > UPPER_MOUSE_LIMIT) @@ -259,7 +259,7 @@ mouse_forward_button_changed (gpointer callback_data) { int new_forward_button; - new_forward_button = eel_preferences_get_integer (CAJA_PREFERENCES_MOUSE_FORWARD_BUTTON); + new_forward_button = g_settings_get_int (caja_preferences, CAJA_PREFERENCES_MOUSE_FORWARD_BUTTON); /* Bounds checking */ if (new_forward_button < 6 || new_forward_button > UPPER_MOUSE_LIMIT) @@ -271,7 +271,7 @@ mouse_forward_button_changed (gpointer callback_data) static void use_extra_mouse_buttons_changed (gpointer callback_data) { - mouse_extra_buttons = eel_preferences_get_boolean (CAJA_PREFERENCES_MOUSE_USE_EXTRA_BUTTONS); + mouse_extra_buttons = g_settings_get_boolean (caja_preferences, CAJA_PREFERENCES_MOUSE_USE_EXTRA_BUTTONS); } void @@ -1286,18 +1286,20 @@ caja_navigation_window_class_init (CajaNavigationWindowClass *class) g_type_class_add_private (G_OBJECT_CLASS (class), sizeof (CajaNavigationWindowDetails)); + g_signal_connect_swapped (caja_preferences, + "changed::" CAJA_PREFERENCES_MOUSE_BACK_BUTTON, + G_CALLBACK(mouse_back_button_changed), + NULL); - eel_preferences_add_callback (CAJA_PREFERENCES_MOUSE_BACK_BUTTON, - mouse_back_button_changed, - NULL); + g_signal_connect_swapped (caja_preferences, + "changed::" CAJA_PREFERENCES_MOUSE_FORWARD_BUTTON, + G_CALLBACK(mouse_forward_button_changed), + NULL); - eel_preferences_add_callback (CAJA_PREFERENCES_MOUSE_FORWARD_BUTTON, - mouse_forward_button_changed, - NULL); - - eel_preferences_add_callback (CAJA_PREFERENCES_MOUSE_USE_EXTRA_BUTTONS, - use_extra_mouse_buttons_changed, - NULL); + g_signal_connect_swapped (caja_preferences, + "changed::" CAJA_PREFERENCES_MOUSE_USE_EXTRA_BUTTONS, + G_CALLBACK(use_extra_mouse_buttons_changed), + NULL); } static CajaWindowSlot * |