aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-03-25 06:53:09 (GMT)
committermarkt <markt>2007-03-25 06:53:09 (GMT)
commitcd28ddec7b719fd10f5b7740cf25fa77891526ae (patch)
tree2c033a9a7c6c8edec38d3ee85d6be67e8efe6128 /src/Screen.hh
parentaf76b920415642fa04ee32fa1c621e8b36888842 (diff)
downloadfluxbox-cd28ddec7b719fd10f5b7740cf25fa77891526ae.zip
fluxbox-cd28ddec7b719fd10f5b7740cf25fa77891526ae.tar.bz2
added session.screen0.tabs.usePixmap
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 352a015..53198fc 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -147,6 +147,7 @@ public:
147 inline const std::string &getScrollAction() const { return *resource.scroll_action; } 147 inline const std::string &getScrollAction() const { return *resource.scroll_action; }
148 inline const bool getScrollReverse() const { return *resource.scroll_reverse; } 148 inline const bool getScrollReverse() const { return *resource.scroll_reverse; }
149 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } 149 inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; }
150 inline const bool getTabsUsePixmap() const { return *resource.tabs_use_pixmap; }
150 inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; } 151 inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; }
151 152
152 inline unsigned int getTabWidth() const { return *resource.tab_width; } 153 inline unsigned int getTabWidth() const { return *resource.tab_width; }
@@ -468,6 +469,7 @@ private:
468 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; 469 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style;
469 FbTk::Resource<std::string> scroll_action; 470 FbTk::Resource<std::string> scroll_action;
470 FbTk::Resource<bool> scroll_reverse; 471 FbTk::Resource<bool> scroll_reverse;
472 FbTk::Resource<bool> tabs_use_pixmap;
471 FbTk::Resource<bool> max_over_tabs; 473 FbTk::Resource<bool> max_over_tabs;
472 FbTk::Resource<bool> default_internal_tabs; 474 FbTk::Resource<bool> default_internal_tabs;
473 475