aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-05-08 10:14:51 (GMT)
committerfluxgen <fluxgen>2002-05-08 10:14:51 (GMT)
commitb53183cfe3c2a300ccec08b6912e416ae0cbb97b (patch)
treee5ff7954d3eaddc5dc11aa7844c41f91558d5694 /src/Screen.hh
parent1f5c8b5ba118c3700f0aac8652f400bf316a97b9 (diff)
downloadfluxbox-b53183cfe3c2a300ccec08b6912e416ae0cbb97b.zip
fluxbox-b53183cfe3c2a300ccec08b6912e416ae0cbb97b.tar.bz2
added desktopwheeling option
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 9492d50..12529e3 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.hh,v 1.31 2002/04/19 09:34:10 fluxgen Exp $ 25// $Id: Screen.hh,v 1.32 2002/05/08 10:10:19 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -79,6 +79,7 @@ public:
79 inline bool isTabRotateVertical(void) { return *resource.tab_rotate_vertical; } 79 inline bool isTabRotateVertical(void) { return *resource.tab_rotate_vertical; }
80 inline bool isSloppyWindowGrouping(void) { return *resource.sloppy_window_grouping; } 80 inline bool isSloppyWindowGrouping(void) { return *resource.sloppy_window_grouping; }
81 inline bool isWorkspaceWarping(void) { return *resource.workspace_warping; } 81 inline bool isWorkspaceWarping(void) { return *resource.workspace_warping; }
82 inline bool isDesktopWheeling(void) { return *resource.desktop_wheeling; }
82 inline bool doAutoRaise(void) { return resource.auto_raise; } 83 inline bool doAutoRaise(void) { return resource.auto_raise; }
83 inline bool doImageDither(void) { return *resource.image_dither; } 84 inline bool doImageDither(void) { return *resource.image_dither; }
84 inline bool doMaxOverSlit(void) { return *resource.max_over_slit; } 85 inline bool doMaxOverSlit(void) { return *resource.max_over_slit; }
@@ -175,6 +176,7 @@ public:
175 inline void saveTabRotateVertical(bool r) { resource.tab_rotate_vertical = r; } 176 inline void saveTabRotateVertical(bool r) { resource.tab_rotate_vertical = r; }
176 inline void saveSloppyWindowGrouping(bool s) { resource.sloppy_window_grouping = s; } 177 inline void saveSloppyWindowGrouping(bool s) { resource.sloppy_window_grouping = s; }
177 inline void saveWorkspaceWarping(bool s) { resource.workspace_warping = s; } 178 inline void saveWorkspaceWarping(bool s) { resource.workspace_warping = s; }
179 inline void saveDesktopWheeling(bool s) { resource.desktop_wheeling = s; }
178 inline void iconUpdate(void) { iconmenu->update(); } 180 inline void iconUpdate(void) { iconmenu->update(); }
179 inline Iconmenu *getIconmenu(void) { return iconmenu; } 181 inline Iconmenu *getIconmenu(void) { return iconmenu; }
180 182
@@ -298,7 +300,7 @@ private:
298 image_dither, opaque_move, full_max, 300 image_dither, opaque_move, full_max,
299 max_over_slit, tab_rotate_vertical, 301 max_over_slit, tab_rotate_vertical,
300 sloppy_window_grouping, workspace_warping, 302 sloppy_window_grouping, workspace_warping,
301 focus_last, focus_new; 303 desktop_wheeling, focus_last, focus_new;
302 Resource<std::string> rootcommand; 304 Resource<std::string> rootcommand;
303 bool auto_raise, sloppy_focus, semi_sloppy_focus, 305 bool auto_raise, sloppy_focus, semi_sloppy_focus,
304 ordered_dither; 306 ordered_dither;