diff options
author | Benjamin Valentin <[email protected]> | 2012-01-09 17:47:29 +0100 |
---|---|---|
committer | Benjamin Valentin <benpicco@rechenknecht2k7.(none)> | 2012-03-16 00:29:11 +0100 |
commit | dacdbd19b2d6037235aa4ed1bd28f89286236046 (patch) | |
tree | a63d9ea17ddd2f772bc64819cc348c644d5746b8 /src/include | |
parent | 3f122b87a866edb62d0402058f83974cf8a8fd54 (diff) | |
download | marco-dacdbd19b2d6037235aa4ed1bd28f89286236046.tar.bz2 marco-dacdbd19b2d6037235aa4ed1bd28f89286236046.tar.xz |
implement option for classic and toroidal workspace switching, based on https://bugzilla.gnome.org/show_bug.cgi?id=89315
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/common.h | 7 | ||||
-rw-r--r-- | src/include/prefs.h | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/include/common.h b/src/include/common.h index b0308f42..73611e36 100644 --- a/src/include/common.h +++ b/src/include/common.h @@ -177,6 +177,13 @@ typedef enum typedef enum { + META_WRAP_NONE, + META_WRAP_CLASSIC, + META_WRAP_TOROIDAL +} MetaWrapStyle; + +typedef enum +{ META_ACTION_TITLEBAR_TOGGLE_SHADE, META_ACTION_TITLEBAR_TOGGLE_MAXIMIZE, META_ACTION_TITLEBAR_TOGGLE_MAXIMIZE_HORIZONTALLY, diff --git a/src/include/prefs.h b/src/include/prefs.h index 39597f9f..58814130 100644 --- a/src/include/prefs.h +++ b/src/include/prefs.h @@ -43,6 +43,7 @@ typedef enum META_PREF_THEME, META_PREF_TITLEBAR_FONT, META_PREF_NUM_WORKSPACES, + META_PREF_WRAP_STYLE, META_PREF_APPLICATION_BASED, META_PREF_KEYBINDINGS, META_PREF_DISABLE_WORKAROUNDS, @@ -88,6 +89,7 @@ gboolean meta_prefs_get_application_based (void); gboolean meta_prefs_get_disable_workarounds (void); gboolean meta_prefs_get_auto_raise (void); int meta_prefs_get_auto_raise_delay (void); +MetaWrapStyle meta_prefs_get_wrap_style (void); gboolean meta_prefs_get_reduced_resources (void); gboolean meta_prefs_get_mate_accessibility (void); gboolean meta_prefs_get_mate_animations (void); |