aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index eb67067..602d5b9 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -124,6 +124,8 @@ public:
124 bool doOpaqueMove() const { return *resource.opaque_move; } 124 bool doOpaqueMove() const { return *resource.opaque_move; }
125 bool doFullMax() const { return *resource.full_max; } 125 bool doFullMax() const { return *resource.full_max; }
126 bool getMaxIgnoreIncrement() const { return *resource.max_ignore_inc; } 126 bool getMaxIgnoreIncrement() const { return *resource.max_ignore_inc; }
127 bool getMaxDisableMove() const { return *resource.max_disable_move; }
128 bool getMaxDisableResize() const { return *resource.max_disable_resize; }
127 bool doShowWindowPos() const { return *resource.show_window_pos; } 129 bool doShowWindowPos() const { return *resource.show_window_pos; }
128 bool decorateTransient() const { return *resource.decorate_transient; } 130 bool decorateTransient() const { return *resource.decorate_transient; }
129 const std::string &defaultDeco() const { return *resource.default_deco; } 131 const std::string &defaultDeco() const { return *resource.default_deco; }
@@ -562,8 +564,9 @@ private:
562 const std::string &altscrname); 564 const std::string &altscrname);
563 565
564 FbTk::Resource<bool> image_dither, opaque_move, full_max, 566 FbTk::Resource<bool> image_dither, opaque_move, full_max,
565 max_ignore_inc, workspace_warping, show_window_pos, 567 max_ignore_inc, max_disable_move, max_disable_resize,
566 auto_raise, click_raises, decorate_transient; 568 workspace_warping, show_window_pos, auto_raise, click_raises,
569 decorate_transient;
567 FbTk::Resource<std::string> default_deco; 570 FbTk::Resource<std::string> default_deco;
568 FbTk::Resource<std::string> rootcommand; 571 FbTk::Resource<std::string> rootcommand;
569 FbTk::Resource<ResizeModel> resize_model; 572 FbTk::Resource<ResizeModel> resize_model;