all repos — openbox @ 57fb41c8060eaa2f29b25b08e3813b3dc140f165

openbox fork - make it a bit more like ryudo

src/Screen.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
// Screen.h for Openbox
// Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

#ifndef   __Screen_hh
#define   __Screen_hh

#include <X11/Xlib.h>
#include <X11/Xresource.h>

#ifdef    TIME_WITH_SYS_TIME
#  include <sys/time.h>
#  include <time.h>
#else // !TIME_WITH_SYS_TIME
#  ifdef    HAVE_SYS_TIME_H
#    include <sys/time.h>
#  else // !HAVE_SYS_TIME_H
#    include <time.h>
#  endif // HAVE_SYS_TIME_H
#endif // TIME_WITH_SYS_TIME

#include "BaseDisplay.h"
#include "Configmenu.h"
#include "Iconmenu.h"
#include "Netizen.h"
#include "Rootmenu.h"
#include "Timer.h"
#include "Workspace.h"
#include "Workspacemenu.h"
#include "openbox.h"
#ifdef    SLIT
#  include "Slit.h"
#endif // SLIT
#include "Image.h"
#include "Resource.h"
#include "Util.h"

#include <list>
#include <vector>
typedef std::list<Rootmenu *> menuList;
typedef std::list<Netizen *> netList;
typedef std::vector<Workspace *> wkspList;
typedef std::vector<std::string> wkspNameList;

// forward declaration
class BScreen;

struct WindowStyle {
  BColor f_focus, f_unfocus, l_text_focus, l_text_unfocus, b_pic_focus,
    b_pic_unfocus;
  BTexture t_focus, t_unfocus, l_focus, l_unfocus, h_focus, h_unfocus,
    b_focus, b_unfocus, b_pressed, g_focus, g_unfocus;
  GC l_text_focus_gc, l_text_unfocus_gc, b_pic_focus_gc, b_pic_unfocus_gc;

  XFontSet fontset;
  XFontSetExtents *fontset_extents;
  XFontStruct *font;
  
  int justify;
};

struct ToolbarStyle {
  BColor l_text, w_text, c_text, b_pic;
  BTexture toolbar, label, window, button, pressed, clock;
  GC l_text_gc, w_text_gc, c_text_gc, b_pic_gc;

  XFontSet fontset;
  XFontSetExtents *fontset_extents;
  XFontStruct *font;
  
  int justify;
};

struct MenuStyle {
  BColor t_text, f_text, h_text, d_text;
  BTexture title, frame, hilite;
  GC t_text_gc, f_text_gc, h_text_gc, d_text_gc, hilite_gc;

  XFontSet t_fontset, f_fontset;
  XFontSetExtents *t_fontset_extents, *f_fontset_extents;
  XFontStruct *t_font, *f_font;

  int t_justify, f_justify, bullet, bullet_pos;
};


class BScreen : public ScreenInfo {
private:
  Bool root_colormap_installed, managed, geom_visible;
  GC opGC;
  Pixmap geom_pixmap;
  Window geom_window;

  Openbox &openbox;
  Resource &config;
  BImageControl *image_control;
  Configmenu *configmenu;
  Iconmenu *iconmenu;
  Rootmenu *rootmenu;

  menuList rootmenuList;
  netList netizenList;
  winList iconList;     // winList is declared in Workspace.h

#ifdef    SLIT
  Slit *slit;
#endif // SLIT

  Toolbar *toolbar;
  Workspace *current_workspace;
  Workspacemenu *workspacemenu;

  unsigned int geom_w, geom_h;
  unsigned long event_mask;

  wkspNameList workspaceNames;
  wkspList workspacesList;

  struct resource {
    WindowStyle wstyle;
    ToolbarStyle tstyle;
    MenuStyle mstyle;

    bool sloppy_focus, auto_raise, auto_edge_balance, focus_last,
      ordered_dither, opaque_move, hide_toolbar, full_max, focus_new;
    BColor border_color;
    Resource styleconfig;

    int workspaces, placement_policy, edge_snap_threshold, row_direction,
      col_direction;

    unsigned int handle_width, bevel_width, frame_width, border_width;
    int zones; // number of zones to be used when alt-resizing a window

#ifdef    HAVE_STRFTIME
    char *strftime_format;
#else // !HAVE_STRFTIME
    bool clock24hour;
    int date_format;
#endif // HAVE_STRFTIME

    char *root_command;
  } resource;


protected:
  Bool parseMenuFile(FILE *, Rootmenu *);

  void readDatabaseTexture(const char *, const char *, BTexture *,
                           unsigned long);
  void readDatabaseColor(const char *, const char *, BColor *, unsigned long);

  void readDatabaseFontSet(const char *, const char *, XFontSet *);
  XFontSet createFontSet(const char *);
  void readDatabaseFont(const char *, const char *, XFontStruct **);

  void InitMenu();
  void LoadStyle();


public:
  BScreen(Openbox &, int, Resource &);
  ~BScreen();

  inline const Bool &isScreenManaged() const { return managed; }
  inline const GC &getOpGC() const { return opGC; }

  inline Openbox &getOpenbox() { return openbox; }
  inline BColor *getBorderColor() { return &resource.border_color; }
  inline BImageControl *getImageControl() { return image_control; }
  inline Rootmenu *getRootmenu() { return rootmenu; }

#ifdef   SLIT
  inline Slit *getSlit() { return slit; }
#endif // SLIT

  inline Toolbar *getToolbar() { return toolbar; }

  Rect availableArea() const;
  
  inline Workspace *getWorkspace(int w) {
    ASSERT(w < workspacesList.size());
    return workspacesList[w];
  }
  inline Workspace *getCurrentWorkspace() { return current_workspace; }

  inline Workspacemenu *getWorkspacemenu() { return workspacemenu; }
  
  inline void iconUpdate() { iconmenu->update(); }

  inline const unsigned int &getHandleWidth() const
  { return resource.handle_width; }
  inline const unsigned int &getBevelWidth() const
  { return resource.bevel_width; }
  inline const unsigned int &getFrameWidth() const
  { return resource.frame_width; }
  inline const unsigned int &getBorderWidth() const
  { return resource.border_width; }

  inline const int getCurrentWorkspaceID()
  { return current_workspace->getWorkspaceID(); }
  inline const int getWorkspaceCount() { return workspacesList.size(); }
  inline const int getIconCount() { return iconList.size(); }

  inline const Bool &isRootColormapInstalled() const
    { return root_colormap_installed; }
  inline void setRootColormapInstalled(Bool r) { root_colormap_installed = r; }
  
  inline bool sloppyFocus() const { return resource.sloppy_focus; }
  void setSloppyFocus(bool s);
  
  inline bool autoRaise() const { return resource.auto_raise; }
  void setAutoRaise(bool a);
  
  inline bool imageDither() const { return image_control->doDither(); }
  void setImageDither(bool d, bool reconfig = true);
  
  inline bool orderedDither() const { return resource.ordered_dither; }
  
  inline bool opaqueMove() const { return resource.opaque_move; }
  void setOpaqueMove(bool o);
  
  inline bool fullMax() const { return resource.full_max; }
  void setFullMax(bool f);
  
  inline bool focusNew() const { return resource.focus_new; }
  void setFocusNew(bool f);
  
  inline bool focusLast() const { return resource.focus_last; }
  void setFocusLast(bool f);
  
  inline int getWindowZones() const { return resource.zones; }
  void setWindowZones(int z);
  
  inline int workspaceCount() const { return resource.workspaces; }
  void setWorkspaceCount(int w);

  inline int placementPolicy() const { return resource.placement_policy; }
  void setPlacementPolicy(int p);

  inline int edgeSnapThreshold() const { return resource.edge_snap_threshold; }
  void setEdgeSnapThreshold(int t);
  
  inline int rowPlacementDirection() const { return resource.row_direction; }
  void setRowPlacementDirection(int d);
  
  inline int colPlacementDirection() const { return resource.col_direction; }
  void setColPlacementDirection(int d);
  
  inline char *rootCommand() const { return resource.root_command; }
  inline void setRootCommand(const char *cmd);
  
#ifdef    HAVE_STRFTIME
  inline char *strftimeFormat() { return resource.strftime_format; }
  void setStrftimeFormat(const char *);
#else // !HAVE_STRFTIME
  inline int dateFormat() { return resource.date_format; }
  void setDateFormat(int f);
  inline bool clock24Hour() { return resource.clock24hour; }
  void setClock24Hour(Bool c);
#endif // HAVE_STRFTIME

  inline bool hideToolbar() const { return resource.hide_toolbar; }
  void setHideToolbar(bool);

  inline WindowStyle *getWindowStyle() { return &resource.wstyle; }
  inline MenuStyle *getMenuStyle() { return &resource.mstyle; }
  inline ToolbarStyle *getToolbarStyle() { return &resource.tstyle; }

  OpenboxWindow *getIcon(int);

  int addWorkspace();
  int removeLastWorkspace();

  void removeWorkspaceNames();
  void addWorkspaceName(const char *);
  void saveWorkspaceNames();
  void addNetizen(Netizen *);
  void removeNetizen(Window);
  void addIcon(OpenboxWindow *);
  void removeIcon(OpenboxWindow *);
  const char *getNameOfWorkspace(int);
  void changeWorkspaceID(int);
  void raiseWindows(Window *, int);
  void reassociateWindow(OpenboxWindow *, int, Bool);
  void prevFocus();
  void nextFocus();
  void raiseFocus();
  void reconfigure();
  void load();
  void save();
  void rereadMenu();
  void shutdown();
  void showPosition(int, int);
  void showGeometry(unsigned int, unsigned int);
  void hideGeometry();
  void updateNetizenCurrentWorkspace();
  void updateNetizenWorkspaceCount();
  void updateNetizenWindowFocus();
  void updateNetizenWindowAdd(Window, unsigned long);
  void updateNetizenWindowDel(Window);
  void updateNetizenConfigNotify(XEvent *);
  void updateNetizenWindowRaise(Window);
  void updateNetizenWindowLower(Window);

  enum { RowSmartPlacement = 1, ColSmartPlacement, CascadePlacement,
         BestFitPlacement, UnderMousePlacement, ClickMousePlacement,
         LeftRight, RightLeft, TopBottom, BottomTop };
  enum { LeftJustify = 1, RightJustify, CenterJustify };
  enum { RoundBullet = 1, TriangleBullet, SquareBullet, NoBullet };
  enum { Restart = 1, RestartOther, Exit, Shutdown, Execute, Reconfigure,
         WindowShade, WindowIconify, WindowMaximize, WindowClose, WindowRaise,
         WindowLower, WindowStick, WindowKill, SetStyle };
};


#endif // __Screen_hh