aboutsummaryrefslogtreecommitdiff
path: root/src/Toolbar.hh
diff options
context:
space:
mode:
authorunknown <unknown>2002-01-11 11:59:54 (GMT)
committerunknown <unknown>2002-01-11 11:59:54 (GMT)
commit61661d638e34b3ce6c986d5a53b8c08c1051d422 (patch)
treef0b87676e95070afee163f76902efd0c4d5b5fe6 /src/Toolbar.hh
parentf98c3c9045397bd9497621deb55b310366f8a5de (diff)
parenta3d2a1cf0a5ab724e19a91915fe97842f52260d5 (diff)
downloadfluxbox_pavel-Release-0_1_6.zip
fluxbox_pavel-Release-0_1_6.tar.bz2
This commit was manufactured by cvs2svn to create tagRelease-0_1_6
'Release-0_1_6'.
Diffstat (limited to 'src/Toolbar.hh')
-rw-r--r--src/Toolbar.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Toolbar.hh b/src/Toolbar.hh
index d6e19db..bd59a8c 100644
--- a/src/Toolbar.hh
+++ b/src/Toolbar.hh
@@ -130,6 +130,7 @@ public:
130 { return ((hidden) ? frame.x_hidden : frame.x); } 130 { return ((hidden) ? frame.x_hidden : frame.x); }
131 inline const int &getY(void) const 131 inline const int &getY(void) const
132 { return ((hidden) ? frame.y_hidden : frame.y); } 132 { return ((hidden) ? frame.y_hidden : frame.y); }
133 inline IconBar *getIconBar(void) { return iconbar; }
133 134
134 void buttonPressEvent(XButtonEvent *); 135 void buttonPressEvent(XButtonEvent *);
135 void buttonReleaseEvent(XButtonEvent *); 136 void buttonReleaseEvent(XButtonEvent *);
@@ -155,8 +156,8 @@ public:
155 156
156 virtual void timeout(void); 157 virtual void timeout(void);
157 158
158 enum { TopLeft = 1, BottomLeft, TopCenter, 159 enum { TOPLEFT = 1, BOTTOMLEFT, TOPCENTER,
159 BottomCenter, TopRight, BottomRight }; 160 BOTTOMCENTER, TOPRIGHT, BOTTOMRIGHT };
160}; 161};
161 162
162 163