aboutsummaryrefslogtreecommitdiff
path: root/src/IconBar.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-03-03 21:51:13 (GMT)
committerrathnor <rathnor>2003-03-03 21:51:13 (GMT)
commit19875e5a5ba474387971ede597cdc4aa7454d4c0 (patch)
tree99d672abcffa86d74734deacbd888eccde02ffd2 /src/IconBar.hh
parent824fd0db7a4b8117fecba9bb46053bdd38691803 (diff)
downloadfluxbox-19875e5a5ba474387971ede597cdc4aa7454d4c0.zip
fluxbox-19875e5a5ba474387971ede597cdc4aa7454d4c0.tar.bz2
Add code for toolbar modes
Diffstat (limited to 'src/IconBar.hh')
-rw-r--r--src/IconBar.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/IconBar.hh b/src/IconBar.hh
index 8a30f55..1ac3809 100644
--- a/src/IconBar.hh
+++ b/src/IconBar.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: IconBar.hh,v 1.10 2003/02/23 00:50:53 fluxgen Exp $ 22// $Id: IconBar.hh,v 1.11 2003/03/03 21:51:03 rathnor Exp $
23 23
24#ifndef ICONBAR_HH 24#ifndef ICONBAR_HH
25#define ICONBAR_HH 25#define ICONBAR_HH
@@ -52,12 +52,14 @@ private:
52class IconBar 52class IconBar
53{ 53{
54public: 54public:
55 typedef std::list<Window> WindowList;
55 IconBar(BScreen *scrn, Window parent, FbTk::Font &font); 56 IconBar(BScreen *scrn, Window parent, FbTk::Font &font);
56 ~IconBar(); 57 ~IconBar();
57 void draw(); //TODO 58 void draw(); //TODO
58 void reconfigure(); 59 void reconfigure();
59 Window addIcon(FluxboxWindow *fluxboxwin); 60 Window addIcon(FluxboxWindow *fluxboxwin);
60 Window delIcon(FluxboxWindow *fluxboxwin); 61 Window delIcon(FluxboxWindow *fluxboxwin);
62 WindowList *delAllIcons();
61 void buttonPressEvent(XButtonEvent *be); 63 void buttonPressEvent(XButtonEvent *be);
62 FluxboxWindow *findWindow(Window w); 64 FluxboxWindow *findWindow(Window w);
63 IconBarObj *findIcon(FluxboxWindow * const fluxboxwin); 65 IconBarObj *findIcon(FluxboxWindow * const fluxboxwin);