]> Dogcows Code - chaz/openbox/blob - src/Toolbar.h
configuration changes "done"!!
[chaz/openbox] / src / Toolbar.h
1 // Toolbar.h for Openbox
2 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
3 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifndef __Toolbar_hh
24 #define __Toolbar_hh
25
26 #include <X11/Xlib.h>
27
28 #include "Basemenu.h"
29 #include "Timer.h"
30 #include "Resource.h"
31 #include "Screen.h"
32
33 // forward declaration
34 class Toolbar;
35
36 class Toolbarmenu : public Basemenu {
37 private:
38 class Placementmenu : public Basemenu {
39 private:
40 Toolbarmenu &toolbarmenu;
41
42 protected:
43 virtual void itemSelected(int, int);
44
45 public:
46 Placementmenu(Toolbarmenu &);
47 };
48
49 Toolbar &toolbar;
50 Placementmenu *placementmenu;
51
52 friend class Placementmenu;
53 friend class Toolbar;
54
55
56 protected:
57 virtual void itemSelected(int, int);
58 virtual void internal_hide();
59
60 public:
61 Toolbarmenu(Toolbar &);
62 ~Toolbarmenu();
63
64 inline Basemenu *getPlacementmenu() { return placementmenu; }
65
66 void reconfigure();
67 };
68
69
70 class Toolbar : public TimeoutHandler {
71 private:
72 bool m_ontop, m_editing, m_hidden, m_autohide;
73 int m_width_percent, m_placement;
74 Display *display;
75
76 struct frame {
77 unsigned long button_pixel, pbutton_pixel;
78 Pixmap base, label, wlabel, clk, button, pbutton;
79 Window window, workspace_label, window_label, clock, psbutton, nsbutton,
80 pwbutton, nwbutton;
81
82 int x, y, x_hidden, y_hidden, hour, minute, grab_x, grab_y;
83 unsigned int width, height, window_label_w, workspace_label_w, clock_w,
84 button_w, bevel_w, label_h;
85 } frame;
86
87 class HideHandler : public TimeoutHandler {
88 public:
89 Toolbar *toolbar;
90 virtual void timeout();
91 } hide_handler;
92
93 Openbox &openbox;
94 Resource &config;
95 BImageControl *image_ctrl;
96 BScreen &screen;
97 BTimer *clock_timer, *hide_timer;
98 Toolbarmenu *toolbarmenu;
99
100 char *new_workspace_name;
101 size_t new_name_pos;
102
103 friend class HideHandler;
104 friend class Toolbarmenu;
105 friend class Toolbarmenu::Placementmenu;
106
107
108 public:
109 Toolbar(BScreen &, Resource &);
110 virtual ~Toolbar();
111
112 inline Toolbarmenu *getMenu() { return toolbarmenu; }
113
114 inline const Window &getWindowID() const { return frame.window; }
115
116 inline unsigned int getWidth() const { return frame.width; }
117 inline unsigned int getHeight() const { return frame.height; }
118 unsigned int getExposedHeight() const;
119
120 int getX() const;
121 int getY() const;
122
123 void buttonPressEvent(XButtonEvent *);
124 void buttonReleaseEvent(XButtonEvent *);
125 void enterNotifyEvent(XCrossingEvent *);
126 void leaveNotifyEvent(XCrossingEvent *);
127 void exposeEvent(XExposeEvent *);
128 void keyPressEvent(XKeyEvent *);
129
130 void redrawWindowLabel(Bool = False);
131 void redrawWorkspaceLabel(Bool = False);
132 void redrawPrevWorkspaceButton(Bool = False, Bool = False);
133 void redrawNextWorkspaceButton(Bool = False, Bool = False);
134 void redrawPrevWindowButton(Bool = False, Bool = False);
135 void redrawNextWindowButton(Bool = False, Bool = False);
136 void edit();
137 void reconfigure();
138 void load();
139 void save();
140 void mapToolbar();
141 void unMapToolbar();
142 #ifdef HAVE_STRFTIME
143 void checkClock(Bool = False);
144 #else // HAVE_STRFTIME
145 void checkClock(Bool = False, Bool = False);
146 #endif // HAVE_STRFTIME
147
148 virtual void timeout();
149
150 inline bool onTop() const { return m_ontop; }
151 void setOnTop(bool);
152
153 inline bool autoHide() const { return m_autohide; }
154 void setAutoHide(bool);
155
156 inline int widthPercent() const { return m_width_percent; }
157 void setWidthPercent(int);
158
159 inline int placement() const { return m_placement; }
160 void setPlacement(int);
161
162 inline bool isEditing() const { return m_editing; }
163 inline bool isHidden() const { return m_hidden; }
164
165 enum { TopLeft = 1, BottomLeft, TopCenter,
166 BottomCenter, TopRight, BottomRight };
167 };
168
169
170 #endif // __Toolbar_hh
This page took 0.040852 seconds and 5 git commands to generate.