aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-05-04 16:55:40 (GMT)
committerrathnor <rathnor>2003-05-04 16:55:40 (GMT)
commitb10dc8434b4faa7c4b9be82c00f1c4e141eab0c4 (patch)
treec8155258f61711b3f90dcbe3c02011323f5d12c7 /src/fluxbox.hh
parentcd3379270b388cbfe5040d43a4c90f976c06e1b7 (diff)
downloadfluxbox-b10dc8434b4faa7c4b9be82c00f1c4e141eab0c4.zip
fluxbox-b10dc8434b4faa7c4b9be82c00f1c4e141eab0c4.tar.bz2
add session.ignoreBorder to ignore border for movement events
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index ee60094..35f7c79 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.hh,v 1.51 2003/04/27 04:28:04 rathnor Exp $ 25// $Id: fluxbox.hh,v 1.52 2003/05/04 16:55:40 rathnor Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -99,6 +99,8 @@ public:
99 99
100 enum FocusModel { SLOPPYFOCUS=0, SEMISLOPPYFOCUS, CLICKTOFOCUS }; 100 enum FocusModel { SLOPPYFOCUS=0, SEMISLOPPYFOCUS, CLICKTOFOCUS };
101 101
102 inline const Bool getIgnoreBorder() const { return *m_rc_ignoreborder; }
103
102 inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; } 104 inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; }
103 inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; } 105 inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; }
104 inline const std::string &getStyleFilename() const { return *m_rc_stylefile; } 106 inline const std::string &getStyleFilename() const { return *m_rc_stylefile; }
@@ -216,7 +218,7 @@ private:
216 ResourceManager m_resourcemanager, m_screen_rm; 218 ResourceManager m_resourcemanager, m_screen_rm;
217 219
218 //--- Resources 220 //--- Resources
219 Resource<bool> m_rc_tabs; 221 Resource<bool> m_rc_tabs, m_rc_ignoreborder;
220 Resource<int> m_rc_colors_per_channel, m_rc_numlayers; 222 Resource<int> m_rc_colors_per_channel, m_rc_numlayers;
221 Resource<std::string> m_rc_stylefile, 223 Resource<std::string> m_rc_stylefile,
222 m_rc_menufile, m_rc_keyfile, m_rc_slitlistfile, 224 m_rc_menufile, m_rc_keyfile, m_rc_slitlistfile,