all repos — openbox @ ad80ef0f667e3b72d9e35d7a93451a1e2dfa0ab6

openbox fork - make it a bit more like ryudo

src/blackbox.hh (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
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef   __blackbox_hh
#define   __blackbox_hh

extern "C" {
#include <X11/Xlib.h>

#ifdef    HAVE_STDIO_H
# include <stdio.h>
#endif // HAVE_STDIO_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 <list>
#include <map>
#include <string>

#include "openbox.hh"
#include "configuration.hh"
#include "timer.hh"
#include "xatom.hh"

#define AttribShaded      (1l << 0)
#define AttribMaxHoriz    (1l << 1)
#define AttribMaxVert     (1l << 2)
#define AttribOmnipresent (1l << 3)
#define AttribWorkspace   (1l << 4)
#define AttribStack       (1l << 5)
#define AttribDecoration  (1l << 6)

#define StackTop          (0)
#define StackNormal       (1)
#define StackBottom       (2)

#define DecorNone         (0)
#define DecorNormal       (1)
#define DecorTiny         (2)
#define DecorTool         (3)

namespace ob {

struct BlackboxHints {
  unsigned long flags, attrib, workspace, stack, decoration;
};

struct BlackboxAttributes {
  unsigned long flags, attrib, workspace, stack, decoration;
  int premax_x, premax_y;
  unsigned int premax_w, premax_h;
};

#define PropBlackboxHintsElements      (5)
#define PropBlackboxAttributesElements (9)


//forward declaration
class BScreen;
class Blackbox;
class BlackboxWindow;
class BWindowGroup;

class Blackbox : public Openbox, public TimeoutHandler {
private:
  struct BCursor {
    Cursor session, move, ll_angle, lr_angle, ul_angle, ur_angle;
  };
  BCursor cursor;

  struct BResource {
    Time double_click_interval;

    std::string style_file;
    int colors_per_channel;
    timeval auto_raise_delay;
    unsigned long cache_life, cache_max;
    std::string titlebar_layout;
    unsigned int mod_mask;  // modifier mask used for window-mouse interaction


#ifdef    XINERAMA
    bool xinerama_placement, xinerama_maximize, xinerama_snap;
#endif // XINERAMA
  } resource;

  typedef std::map<Window, BlackboxWindow*> WindowLookup;
  typedef WindowLookup::value_type WindowLookupPair;
  WindowLookup windowSearchList;

  typedef std::map<Window, BScreen*> WindowScreenLookup;
  typedef WindowScreenLookup::value_type WindowScreenLookupPair;
  WindowScreenLookup systraySearchList;

  typedef std::map<Window, BWindowGroup*> GroupLookup;
  typedef GroupLookup::value_type GroupLookupPair;
  GroupLookup groupSearchList;

  typedef std::list<BScreen*> ScreenList;
  ScreenList screenList;

  BScreen *active_screen;
  BlackboxWindow *focused_window, *changing_window;
  OBTimer *timer;
  Configuration config;
  XAtom *xatom;

  bool no_focus, reconfigure_wait;
  Time last_time;
  char **argv;
  std::string rc_file;

  Blackbox(const Blackbox&);
  Blackbox& operator=(const Blackbox&);

  void load_rc(void);
  void save_rc(void);
  void real_reconfigure(void);

  virtual void process_event(XEvent *);


public:
  Blackbox(int argc, char **m_argv, char *rc = 0);
  virtual ~Blackbox(void);

  BWindowGroup *searchGroup(Window window);
  BScreen *searchSystrayWindow(Window window);
  BlackboxWindow *searchWindow(Window window);
  BScreen *searchScreen(Window window);

#ifdef    XINERAMA
  inline bool doXineramaPlacement(void) const
    { return resource.xinerama_placement; }
  inline bool doXineramaMaximizing(void) const
    { return resource.xinerama_maximize; }
  inline bool doXineramaSnapping(void) const
    { return resource.xinerama_snap; }

  void saveXineramaPlacement(bool x);
  void saveXineramaMaximizing(bool x);
  void saveXineramaSnapping(bool x);
#endif // XINERAMA
  
  void saveSystrayWindowSearch(Window window, BScreen *screen);
  void saveWindowSearch(Window window, BlackboxWindow *data);
  void saveGroupSearch(Window window, BWindowGroup *data);
  void removeSystrayWindowSearch(Window window);
  void removeWindowSearch(Window window);
  void removeGroupSearch(Window window);

  inline XAtom *getXAtom(void) { return xatom; }

  inline BlackboxWindow *getFocusedWindow(void) { return focused_window; }
  inline BlackboxWindow *getChangingWindow(void) { return changing_window; }

  inline Configuration *getConfig() { return &config; }
  inline const Time &getDoubleClickInterval(void) const
  { return resource.double_click_interval; }
  inline const Time &getLastTime(void) const { return last_time; }

  inline const char *getStyleFilename(void) const
    { return resource.style_file.c_str(); }

  inline int getColorsPerChannel(void) const
    { return resource.colors_per_channel; }

  inline std::string getTitlebarLayout(void) const
    { return resource.titlebar_layout; }

  inline const timeval &getAutoRaiseDelay(void) const
    { return resource.auto_raise_delay; }

  inline unsigned long getCacheLife(void) const
    { return resource.cache_life; }
  inline unsigned long getCacheMax(void) const
    { return resource.cache_max; }

  inline void setNoFocus(bool f) { no_focus = f; }

  inline Cursor getSessionCursor(void) const
    { return cursor.session; }
  inline Cursor getMoveCursor(void) const
    { return cursor.move; }
  inline Cursor getLowerLeftAngleCursor(void) const
    { return cursor.ll_angle; }
  inline Cursor getLowerRightAngleCursor(void) const
    { return cursor.lr_angle; }
  inline Cursor getUpperLeftAngleCursor(void) const
    { return cursor.ul_angle; }
  inline Cursor getUpperRightAngleCursor(void) const
    { return cursor.ur_angle; }
  
  inline unsigned int getMouseModMask(void) const
    { return resource.mod_mask; }

  void setFocusedWindow(BlackboxWindow *win);
  void setChangingWindow(BlackboxWindow *win);
  void shutdown(void);
  void saveStyleFilename(const std::string& filename);
  void restart(const char *prog = 0);
  void reconfigure(void);

  bool validateWindow(Window window);

  virtual bool handleSignal(int sig);

  virtual void timeout(void);

  enum { B_AmericanDate = 1, B_EuropeanDate };
};

}

#endif // __blackbox_hh