aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-01-05 11:02:05 (GMT)
committerfluxgen <fluxgen>2002-01-05 11:02:05 (GMT)
commit91d554e6e30bfea3ab2353ad7756f285926c9983 (patch)
tree057fb848e004de35cb62b07de6b0175fc15b9e76
parentb00cd00cce7ee922cc96fa2d1c89a9778b96f1df (diff)
downloadfluxbox-91d554e6e30bfea3ab2353ad7756f285926c9983.zip
fluxbox-91d554e6e30bfea3ab2353ad7756f285926c9983.tar.bz2
Added maximize over slit resource
-rw-r--r--src/Screen.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 35fc271..186e0b0 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -109,6 +109,7 @@ public:
109 { return resource.image_dither; } 109 { return resource.image_dither; }
110 inline const Bool &doOrderedDither(void) const 110 inline const Bool &doOrderedDither(void) const
111 { return resource.ordered_dither; } 111 { return resource.ordered_dither; }
112 inline const Bool &doMaxOverSlit(void) const { return resource.max_over_slit; }
112 inline const Bool &doOpaqueMove(void) const { return resource.opaque_move; } 113 inline const Bool &doOpaqueMove(void) const { return resource.opaque_move; }
113 inline const Bool &doFullMax(void) const { return resource.full_max; } 114 inline const Bool &doFullMax(void) const { return resource.full_max; }
114 inline const Bool &doFocusNew(void) const { return resource.focus_new; } 115 inline const Bool &doFocusNew(void) const { return resource.focus_new; }
@@ -197,6 +198,7 @@ public:
197 inline void saveEdgeSnapThreshold(int t) 198 inline void saveEdgeSnapThreshold(int t)
198 { resource.edge_snap_threshold = t; } 199 { resource.edge_snap_threshold = t; }
199 inline void saveImageDither(Bool d) { resource.image_dither = d; } 200 inline void saveImageDither(Bool d) { resource.image_dither = d; }
201 inline void saveMaxOverSlit(Bool m) { resource.max_over_slit = m; }
200 inline void saveOpaqueMove(Bool o) { resource.opaque_move = o; } 202 inline void saveOpaqueMove(Bool o) { resource.opaque_move = o; }
201 inline void saveFullMax(Bool f) { resource.full_max = f; } 203 inline void saveFullMax(Bool f) { resource.full_max = f; }
202 inline void saveFocusNew(Bool f) { resource.focus_new = f; } 204 inline void saveFocusNew(Bool f) { resource.focus_new = f; }
@@ -311,7 +313,7 @@ private:
311 313
312 Bool toolbar_on_top, toolbar_auto_hide, sloppy_focus, auto_raise, 314 Bool toolbar_on_top, toolbar_auto_hide, sloppy_focus, auto_raise,
313 auto_edge_balance, image_dither, ordered_dither, opaque_move, full_max, 315 auto_edge_balance, image_dither, ordered_dither, opaque_move, full_max,
314 focus_new, focus_last, tab_rotate_vertical, semi_sloppy_focus, 316 focus_new, focus_last, max_over_slit, tab_rotate_vertical, semi_sloppy_focus,
315 sloppy_window_grouping; 317 sloppy_window_grouping;
316 318
317 int workspaces, toolbar_placement, toolbar_width_percent, placement_policy, 319 int workspaces, toolbar_placement, toolbar_width_percent, placement_policy,