aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authormarkt <markt>2006-07-26 01:22:42 (GMT)
committermarkt <markt>2006-07-26 01:22:42 (GMT)
commit14efe686cdc8023f9c984fc067206d40b07b2ad5 (patch)
treef81d24f8e4b6e2eb28255d64722995cc9bf3abbb /src/Screen.hh
parent9229f8bc9ceae2505d7715cdea6e75aeb1b2c78b (diff)
downloadfluxbox-14efe686cdc8023f9c984fc067206d40b07b2ad5.zip
fluxbox-14efe686cdc8023f9c984fc067206d40b07b2ad5.tar.bz2
added resource and menu item for maximizing over tabs
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index d4aea5e..ecfc619 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -140,6 +140,7 @@ public:
140 inline const std::string &getScrollAction() const { return *resource.scroll_action; } 140 inline const std::string &getScrollAction() const { return *resource.scroll_action; }
141 inline const bool getScrollReverse() const { return *resource.scroll_reverse; } 141 inline const bool getScrollReverse() const { return *resource.scroll_reverse; }
142 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } 142 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; }
143 inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; }
143 144
144 inline unsigned int getTabWidth() const { return *resource.tab_width; } 145 inline unsigned int getTabWidth() const { return *resource.tab_width; }
145 146
@@ -452,6 +453,7 @@ private:
452 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; 453 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style;
453 FbTk::Resource<std::string> scroll_action; 454 FbTk::Resource<std::string> scroll_action;
454 FbTk::Resource<bool> scroll_reverse; 455 FbTk::Resource<bool> scroll_reverse;
456 FbTk::Resource<bool> max_over_tabs;
455 FbTk::Resource<bool> default_internal_tabs; 457 FbTk::Resource<bool> default_internal_tabs;
456 458
457 } resource; 459 } resource;