aboutsummaryrefslogtreecommitdiff
path: root/src/Toolbar.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Toolbar.hh')
-rw-r--r--src/Toolbar.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Toolbar.hh b/src/Toolbar.hh
index 14a0175..4f75d89 100644
--- a/src/Toolbar.hh
+++ b/src/Toolbar.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: Toolbar.hh,v 1.42 2003/08/13 09:51:22 fluxgen Exp $ 25// $Id: Toolbar.hh,v 1.43 2003/08/15 13:25:03 fluxgen Exp $
26 26
27#ifndef TOOLBAR_HH 27#ifndef TOOLBAR_HH
28#define TOOLBAR_HH 28#define TOOLBAR_HH
@@ -94,6 +94,7 @@ public:
94 void leaveNotifyEvent(XCrossingEvent &ce); 94 void leaveNotifyEvent(XCrossingEvent &ce);
95 void exposeEvent(XExposeEvent &ee); 95 void exposeEvent(XExposeEvent &ee);
96 void keyPressEvent(XKeyEvent &ke); 96 void keyPressEvent(XKeyEvent &ke);
97 void handleEvent(XEvent &event);
97 //@} 98 //@}
98 99
99 /// enter edit mode on workspace label 100 /// enter edit mode on workspace label
@@ -179,11 +180,12 @@ private:
179 FbTk::Resource<Fluxbox::Layer> m_rc_layernum; 180 FbTk::Resource<Fluxbox::Layer> m_rc_layernum;
180 FbTk::Resource<int> m_rc_on_head; 181 FbTk::Resource<int> m_rc_on_head;
181 FbTk::Resource<Placement> m_rc_placement; 182 FbTk::Resource<Placement> m_rc_placement;
183 FbTk::Resource<int> m_rc_height;
182 std::auto_ptr<Shape> m_shape; 184 std::auto_ptr<Shape> m_shape;
183 185
184 ToolTheme m_clock_theme, m_workspace_theme; 186 ToolTheme m_clock_theme, m_workspace_theme;
185 IconbarTheme m_iconbar_theme; 187 IconbarTheme m_iconbar_theme;
186 188 bool m_resize_lock; ///< to lock rearrangeItems or not
187}; 189};
188 190
189 191