]> icculus.org git repositories - mikachu/openbox.git/blob - src/Screen.hh
extend the style format to use xft.(font|size|flags) to specify an xft font
[mikachu/openbox.git] / src / Screen.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // Screen.hh for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifndef   __Screen_hh
25 #define   __Screen_hh
26
27 extern "C" {
28 #include <X11/Xlib.h>
29 #include <X11/Xresource.h>
30
31 #ifdef    TIME_WITH_SYS_TIME
32 #  include <sys/time.h>
33 #  include <time.h>
34 #else // !TIME_WITH_SYS_TIME
35 #  ifdef    HAVE_SYS_TIME_H
36 #    include <sys/time.h>
37 #  else // !HAVE_SYS_TIME_H
38 #    include <time.h>
39 #  endif // HAVE_SYS_TIME_H
40 #endif // TIME_WITH_SYS_TIME
41 }
42
43 #include <list>
44 #include <vector>
45
46 #include "Color.hh"
47 #include "Texture.hh"
48 #include "Image.hh"
49 #include "Configmenu.hh"
50 #include "Iconmenu.hh"
51 #include "Netizen.hh"
52 #include "Rootmenu.hh"
53 #include "Timer.hh"
54 #include "Workspace.hh"
55 #include "Workspacemenu.hh"
56 #include "blackbox.hh"
57
58 class Slit; // forward reference
59 class BFont;
60 class XAtom;
61
62 enum TextJustify { LeftJustify = 1, RightJustify, CenterJustify };
63
64 struct WindowStyle {
65   BColor f_focus, f_unfocus, l_text_focus, l_text_unfocus, b_pic_focus,
66     b_pic_unfocus;
67   BTexture t_focus, t_unfocus, l_focus, l_unfocus, h_focus, h_unfocus,
68     b_focus, b_unfocus, b_pressed, g_focus, g_unfocus;
69
70   BFont *font;
71
72   TextJustify justify;
73
74   void doJustify(const std::string &text, int &start_pos,
75                  unsigned int max_length, unsigned int modifier) const;
76 };
77
78 struct ToolbarStyle {
79   BColor l_text, w_text, c_text, b_pic;
80   BTexture toolbar, label, window, button, pressed, clock;
81
82   BFont *font;
83
84   TextJustify justify;
85
86   void doJustify(const std::string &text, int &start_pos,
87                  unsigned int max_length, unsigned int modifier) const;
88 };
89
90 struct MenuStyle {
91   BColor t_text, f_text, h_text, d_text;
92   BTexture title, frame, hilite;
93
94   BFont *t_font, *f_font;
95
96   TextJustify t_justify, f_justify;
97   int bullet, bullet_pos;
98 };
99
100 struct Strut {
101   unsigned int top, bottom, left, right;
102
103   Strut(void): top(0), bottom(0), left(0), right(0) {}
104 };
105
106 class BScreen : public ScreenInfo {
107 private:
108   bool root_colormap_installed, managed, geom_visible;
109   GC opGC;
110   Pixmap geom_pixmap;
111   Window geom_window;
112
113   Blackbox *blackbox;
114   BImageControl *image_control;
115   Configmenu *configmenu;
116   Iconmenu *iconmenu;
117   Rootmenu *rootmenu;
118   Configuration *config;
119   XAtom *xatom;
120
121   typedef std::list<Rootmenu*> RootmenuList;
122   RootmenuList rootmenuList;
123
124   typedef std::list<Netizen*> NetizenList;
125   NetizenList netizenList;
126   BlackboxWindowList iconList, windowList;
127
128   typedef std::vector<Window> WindowList;
129   WindowList desktopWindowList, systrayWindowList;
130
131   Slit *slit;
132   Toolbar *toolbar;
133   Workspace *current_workspace;
134   Workspacemenu *workspacemenu;
135
136   unsigned int geom_w, geom_h;
137   unsigned long event_mask;
138
139   Rect usableArea;
140
141   typedef std::list<Strut*> StrutList;
142   StrutList strutList;
143   typedef std::vector<Workspace*> WorkspaceList;
144   WorkspaceList workspacesList;
145
146   struct screen_resource {
147     WindowStyle wstyle;
148     ToolbarStyle tstyle;
149     MenuStyle mstyle;
150
151     bool sloppy_focus, auto_raise, auto_edge_balance, ordered_dither,
152       opaque_move, full_max, focus_new, focus_last, click_raise,
153       hide_toolbar, window_to_window_snap, window_corner_snap;
154     BColor border_color;
155
156     unsigned int workspaces;
157     int toolbar_placement, toolbar_width_percent, placement_policy,
158       edge_snap_threshold, row_direction, col_direction;
159
160     unsigned int handle_width, bevel_width, frame_width, border_width;
161
162 #ifdef    HAVE_STRFTIME
163     std::string strftime_format;
164 #else // !HAVE_STRFTIME
165     bool clock24hour;
166     int date_format;
167 #endif // HAVE_STRFTIME
168
169   } resource;
170   std::string screenstr;
171
172   BScreen(const BScreen&);
173   BScreen& operator=(const BScreen&);
174
175   bool parseMenuFile(FILE *file, Rootmenu *menu);
176
177   BTexture readDatabaseTexture(const std::string &rname,
178                                const std::string &default_color,
179                                const Configuration &style);
180   BColor readDatabaseColor(const std::string &rname,
181                            const std::string &default_color,
182                            const Configuration &style);
183   BFont *readDatabaseFont(const std::string &rbasename,
184                           const Configuration &style);
185
186   void InitMenu(void);
187   void LoadStyle(void);
188
189   void updateWorkArea(void);
190 public:
191   enum { RowSmartPlacement = 1, ColSmartPlacement, CascadePlacement,
192          UnderMousePlacement, LeftRight, RightLeft, TopBottom, BottomTop };
193   enum { RoundBullet = 1, TriangleBullet, SquareBullet, NoBullet };
194   enum { Restart = 1, RestartOther, Exit, Shutdown, Execute, Reconfigure,
195          WindowShade, WindowIconify, WindowMaximize, WindowClose, WindowRaise,
196          WindowLower, WindowStick, WindowKill, SetStyle };
197   enum FocusModel { SloppyFocus, ClickToFocus };
198
199   BScreen(Blackbox *bb, unsigned int scrn);
200   ~BScreen(void);
201
202   inline bool isSloppyFocus(void) const { return resource.sloppy_focus; }
203   inline bool isRootColormapInstalled(void) const
204   { return root_colormap_installed; }
205   inline bool doAutoRaise(void) const { return resource.auto_raise; }
206   inline bool doClickRaise(void) const { return resource.click_raise; }
207   inline bool isScreenManaged(void) const { return managed; }
208   inline bool doImageDither(void) const { return image_control->doDither(); }
209   inline bool doOrderedDither(void) const { return resource.ordered_dither; }
210   inline bool doOpaqueMove(void) const { return resource.opaque_move; }
211   inline bool doFullMax(void) const { return resource.full_max; }
212   inline bool doFocusNew(void) const { return resource.focus_new; }
213   inline bool doFocusLast(void) const { return resource.focus_last; }
214   inline bool doHideToolbar(void) const { return resource.hide_toolbar; }
215   inline bool getWindowToWindowSnap(void) const
216     { return resource.window_to_window_snap; }
217   inline bool getWindowCornerSnap(void) const
218     { return resource.window_corner_snap; }
219
220   inline const GC &getOpGC(void) const { return opGC; }
221
222   inline Blackbox *getBlackbox(void) { return blackbox; }
223   inline BColor *getBorderColor(void) { return &resource.border_color; }
224   inline BImageControl *getImageControl(void) { return image_control; }
225   inline Rootmenu *getRootmenu(void) { return rootmenu; }
226
227   inline Slit *getSlit(void) { return slit; }
228   inline Toolbar *getToolbar(void) { return toolbar; }
229
230   Workspace *getWorkspace(unsigned int index);
231
232   inline Workspace *getCurrentWorkspace(void) { return current_workspace; }
233
234   inline Workspacemenu *getWorkspacemenu(void) { return workspacemenu; }
235
236   inline unsigned int getHandleWidth(void) const
237   { return resource.handle_width; }
238   inline unsigned int getBevelWidth(void) const
239   { return resource.bevel_width; }
240   inline unsigned int getFrameWidth(void) const
241   { return resource.frame_width; }
242   inline unsigned int getBorderWidth(void) const
243   { return resource.border_width; }
244
245   inline unsigned int getCurrentWorkspaceID(void)
246   { return current_workspace->getID(); }
247   inline unsigned int getWorkspaceCount(void)
248   { return workspacesList.size(); }
249   inline unsigned int getIconCount(void) { return iconList.size(); }
250   inline unsigned int getNumberOfWorkspaces(void) const
251   { return resource.workspaces; }
252   inline int getPlacementPolicy(void) const
253   { return resource.placement_policy; }
254   inline int getEdgeSnapThreshold(void) const
255   { return resource.edge_snap_threshold; }
256   inline int getRowPlacementDirection(void) const
257   { return resource.row_direction; }
258   inline int getColPlacementDirection(void) const
259   { return resource.col_direction; }
260
261   inline void setRootColormapInstalled(bool r) { root_colormap_installed = r; }
262   void saveSloppyFocus(bool s);
263   void saveAutoRaise(bool a);
264   void saveClickRaise(bool c);
265   void saveWorkspaces(unsigned int w);
266   void savePlacementPolicy(int p);
267   void saveRowPlacementDirection(int d);
268   void saveColPlacementDirection(int d);
269   void saveEdgeSnapThreshold(int t);
270   void saveImageDither(bool d);
271   void saveOpaqueMove(bool o);
272   void saveFullMax(bool f);
273   void saveFocusNew(bool f);
274   void saveFocusLast(bool f);
275   void saveHideToolbar(bool h);
276   void saveWindowToWindowSnap(bool s);
277   void saveWindowCornerSnap(bool s);
278   inline void iconUpdate(void) { iconmenu->update(); }
279
280 #ifdef    HAVE_STRFTIME
281   inline const char *getStrftimeFormat(void)
282   { return resource.strftime_format.c_str(); }
283   void saveStrftimeFormat(const std::string& format);
284 #else // !HAVE_STRFTIME
285   inline int getDateFormat(void) { return resource.date_format; }
286   inline void saveDateFormat(int f);
287   inline bool isClock24Hour(void) { return resource.clock24hour; }
288   inline void saveClock24Hour(bool c);
289 #endif // HAVE_STRFTIME
290
291   inline WindowStyle *getWindowStyle(void) { return &resource.wstyle; }
292   inline MenuStyle *getMenuStyle(void) { return &resource.mstyle; }
293   inline ToolbarStyle *getToolbarStyle(void) { return &resource.tstyle; }
294
295   BlackboxWindow *getIcon(unsigned int index);
296
297   const Rect& availableArea(void) const;
298   void updateAvailableArea(void);
299   void addStrut(Strut *strut);
300   void removeStrut(Strut *strut);
301
302   unsigned int addWorkspace(void);
303   unsigned int removeLastWorkspace(void);
304   void changeWorkspaceID(unsigned int id);
305   void saveWorkspaceNames(void);
306
307   void addNetizen(Netizen *n);
308   void removeNetizen(Window w);
309
310   void addDesktopWindow(Window window);
311   void removeDesktopWindow(Window window);
312
313   void addSystrayWindow(Window window);
314   void removeSystrayWindow(Window window);
315
316   void addIcon(BlackboxWindow *w);
317   void removeIcon(BlackboxWindow *w);
318
319   void updateClientList(void);
320   void updateStackingList(void);
321   void manageWindow(Window w);
322   void unmanageWindow(BlackboxWindow *w, bool remap);
323   void raiseWindows(Window *workspace_stack, unsigned int num);
324   void lowerDesktops(void);
325   void reassociateWindow(BlackboxWindow *w, unsigned int wkspc_id,
326                          bool ignore_sticky);
327   void propagateWindowName(const BlackboxWindow *bw);
328   void prevFocus(void);
329   void nextFocus(void);
330   void raiseFocus(void);
331   void load_rc(void);
332   void save_rc(void);
333   void reconfigure(void);
334   void toggleFocusModel(FocusModel model);
335   void rereadMenu(void);
336   void shutdown(void);
337   void showPosition(int x, int y);
338   void showGeometry(unsigned int gx, unsigned int gy);
339   void hideGeometry(void);
340
341   void buttonPressEvent(const XButtonEvent *xbutton);
342
343   void updateNetizenCurrentWorkspace(void);
344   void updateNetizenWorkspaceCount(void);
345   void updateNetizenWindowFocus(void);
346   void updateNetizenWindowAdd(Window w, unsigned long p);
347   void updateNetizenWindowDel(Window w);
348   void updateNetizenConfigNotify(XEvent *e);
349   void updateNetizenWindowRaise(Window w);
350   void updateNetizenWindowLower(Window w);
351 };
352
353
354 #endif // __Screen_hh