diff options
author | markt <markt> | 2007-03-06 17:20:13 (GMT) |
---|---|---|
committer | markt <markt> | 2007-03-06 17:20:13 (GMT) |
commit | ed3731fa30c8563e1187ff72528fcc2ca567c43d (patch) | |
tree | 9cca53ab1137da5a3f6c538d18feb569fbca2475 /src/Screen.hh | |
parent | 8c5fd07d77923b07739c51f00f090b94b1b4e550 (diff) | |
download | fluxbox_pavel-ed3731fa30c8563e1187ff72528fcc2ca567c43d.zip fluxbox_pavel-ed3731fa30c8563e1187ff72528fcc2ca567c43d.tar.bz2 |
session.screen0.defaultDeco now understands TAB, BORDER, etc.
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 8694f6d..bf03ac6 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -123,7 +123,7 @@ public: | |||
123 | bool doFullMax() const { return *resource.full_max; } | 123 | bool doFullMax() const { return *resource.full_max; } |
124 | bool doShowWindowPos() const { return *resource.show_window_pos; } | 124 | bool doShowWindowPos() const { return *resource.show_window_pos; } |
125 | bool decorateTransient() const { return *resource.decorate_transient; } | 125 | bool decorateTransient() const { return *resource.decorate_transient; } |
126 | unsigned int defaultDeco() const { return *resource.default_deco; } | 126 | const std::string &defaultDeco() const { return *resource.default_deco; } |
127 | const std::string &windowMenuFilename() const { return *resource.windowmenufile; } | 127 | const std::string &windowMenuFilename() const { return *resource.windowmenufile; } |
128 | FbTk::ImageControl &imageControl() { return *m_image_control.get(); } | 128 | FbTk::ImageControl &imageControl() { return *m_image_control.get(); } |
129 | // menus | 129 | // menus |
@@ -449,7 +449,7 @@ private: | |||
449 | workspace_warping, | 449 | workspace_warping, |
450 | desktop_wheeling, reverse_wheeling, show_window_pos, | 450 | desktop_wheeling, reverse_wheeling, show_window_pos, |
451 | auto_raise, click_raises, decorate_transient; | 451 | auto_raise, click_raises, decorate_transient; |
452 | FbTk::Resource<unsigned int> default_deco; | 452 | FbTk::Resource<std::string> default_deco; |
453 | FbTk::Resource<std::string> rootcommand; | 453 | FbTk::Resource<std::string> rootcommand; |
454 | FbTk::Resource<ResizeModel> resize_model; | 454 | FbTk::Resource<ResizeModel> resize_model; |
455 | FbTk::Resource<FbWinFrame::TabPlacement> tab_placement; | 455 | FbTk::Resource<FbWinFrame::TabPlacement> tab_placement; |