aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index 40b0379..ad75957 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -136,26 +136,6 @@ public:
136 // we have a special resource type because we need to be able to name certain layers 136 // we have a special resource type because we need to be able to name certain layers
137 // a Resource<int> wouldn't allow this 137 // a Resource<int> wouldn't allow this
138 138
139 class Layer {
140 public:
141 explicit Layer(int i) : m_num(i) {};
142 int getNum() const { return m_num; }
143
144 Layer &operator=(int num) { m_num = num; return *this; }
145
146 private:
147 int m_num;
148 };
149
150 // TODO these probably should be configurable
151 int getMenuLayer() const { return 0; }
152 int getAboveDockLayer() const { return 2; }
153 int getDockLayer() const { return 4; }
154 int getTopLayer() const { return 6; }
155 int getNormalLayer() const { return 8; }
156 int getBottomLayer() const { return 10; }
157 int getDesktopLayer() const { return 12; }
158
159 139
160 time_t getAutoRaiseDelay() const { return *m_rc_auto_raise_delay; } 140 time_t getAutoRaiseDelay() const { return *m_rc_auto_raise_delay; }
161 141