aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-01-04 19:13:55 (GMT)
committermarkt <markt>2007-01-04 19:13:55 (GMT)
commit9d5e2f143ba2dc33c5f79a1a18646512b04c942d (patch)
treeee41281f87fc3df91d0c817c4a123591d0ba92c5 /src/Screen.hh
parent6d4d17b5f95915396fd1e04ef068d2df1f95bf35 (diff)
downloadfluxbox-9d5e2f143ba2dc33c5f79a1a18646512b04c942d.zip
fluxbox-9d5e2f143ba2dc33c5f79a1a18646512b04c942d.tar.bz2
add session.screenN.defaultDeco: <bitmask> to the apps file
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 1778308..739c458 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -120,6 +120,7 @@ public:
120 bool doFullMax() const { return *resource.full_max; } 120 bool doFullMax() const { return *resource.full_max; }
121 bool doShowWindowPos() const { return *resource.show_window_pos; } 121 bool doShowWindowPos() const { return *resource.show_window_pos; }
122 bool decorateTransient() const { return *resource.decorate_transient; } 122 bool decorateTransient() const { return *resource.decorate_transient; }
123 unsigned int defaultDeco() const { return *resource.default_deco; }
123 const std::string &windowMenuFilename() const { return *resource.windowmenufile; } 124 const std::string &windowMenuFilename() const { return *resource.windowmenufile; }
124 FbTk::ImageControl &imageControl() { return *m_image_control.get(); } 125 FbTk::ImageControl &imageControl() { return *m_image_control.get(); }
125 // menus 126 // menus
@@ -440,7 +441,8 @@ private:
440 workspace_warping, 441 workspace_warping,
441 desktop_wheeling, reverse_wheeling, show_window_pos, 442 desktop_wheeling, reverse_wheeling, show_window_pos,
442 auto_raise, click_raises, decorate_transient; 443 auto_raise, click_raises, decorate_transient;
443 FbTk::Resource<std::string> rootcommand; 444 FbTk::Resource<unsigned int> default_deco;
445 FbTk::Resource<std::string> rootcommand;
444 FbTk::Resource<ResizeModel> resize_model; 446 FbTk::Resource<ResizeModel> resize_model;
445 FbTk::Resource<FbWinFrame::TabPlacement> tab_placement; 447 FbTk::Resource<FbWinFrame::TabPlacement> tab_placement;
446 FbTk::Resource<std::string> windowmenufile; 448 FbTk::Resource<std::string> windowmenufile;