aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-05-19 17:56:55 (GMT)
committerfluxgen <fluxgen>2002-05-19 17:56:55 (GMT)
commit57cd3c5c7cdaf99ff27b8a83f20dc8fd556677ab (patch)
tree34d3086b9b9baf1617cb024d3a79a1c2f23f2f16 /src/Screen.hh
parent75f83132ea906d3681298d018f428c587c207288 (diff)
downloadfluxbox-57cd3c5c7cdaf99ff27b8a83f20dc8fd556677ab.zip
fluxbox-57cd3c5c7cdaf99ff27b8a83f20dc8fd556677ab.tar.bz2
added configurable geometry
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 8ae34fe..27957ce 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.35 2002/05/17 11:55:02 fluxgen Exp $ 25// $Id: Screen.hh,v 1.36 2002/05/19 17:56:55 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -87,6 +87,7 @@ public:
87 inline bool doFullMax(void) { return *resource.full_max; } 87 inline bool doFullMax(void) { return *resource.full_max; }
88 inline bool doFocusNew(void) { return *resource.focus_new; } 88 inline bool doFocusNew(void) { return *resource.focus_new; }
89 inline bool doFocusLast(void) { return *resource.focus_last; } 89 inline bool doFocusLast(void) { return *resource.focus_last; }
90 inline bool doShowWindowPos(void) { return *resource.show_window_pos; }
90 91
91 inline const GC &getOpGC() const { return theme->getOpGC(); } 92 inline const GC &getOpGC() const { return theme->getOpGC(); }
92 93
@@ -300,7 +301,8 @@ private:
300 image_dither, opaque_move, full_max, 301 image_dither, opaque_move, full_max,
301 max_over_slit, tab_rotate_vertical, 302 max_over_slit, tab_rotate_vertical,
302 sloppy_window_grouping, workspace_warping, 303 sloppy_window_grouping, workspace_warping,
303 desktop_wheeling, focus_last, focus_new; 304 desktop_wheeling, show_window_pos,
305 focus_last, focus_new;
304 Resource<std::string> rootcommand; 306 Resource<std::string> rootcommand;
305 bool auto_raise, sloppy_focus, semi_sloppy_focus, 307 bool auto_raise, sloppy_focus, semi_sloppy_focus,
306 ordered_dither; 308 ordered_dither;