]> Dogcows Code - chaz/openbox/blob - util/epist/screen.cc
422ec056b0c97a1946bab5ea5fc4e30e2799206d
[chaz/openbox] / util / epist / screen.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // screen.cc for Epistophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.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 #ifdef HAVE_CONFIG_H
24 # include "../../config.h"
25 #endif // HAVE_CONFIG_H
26
27 extern "C" {
28 #ifdef HAVE_UNISTD_H
29 # include <sys/types.h>
30 # include <unistd.h>
31 #endif // HAVE_UNISTD_H
32 }
33
34 #include <iostream>
35 #include <string>
36
37 using std::cout;
38 using std::endl;
39 using std::hex;
40 using std::dec;
41 using std::string;
42
43 #include "../../src/XAtom.hh"
44 #include "screen.hh"
45 #include "epist.hh"
46
47
48 screen::screen(epist *epist, int number) {
49 _epist = epist;
50 _xatom = _epist->xatom();
51 _number = number;
52 _active = _clients.end();
53 _root = RootWindow(_epist->getXDisplay(), _number);
54
55 // find a window manager supporting NETWM, waiting for it to load if we must
56 int count = 20; // try for 20 seconds
57 _managed = false;
58 while (! (_epist->doShutdown() || _managed || count <= 0)) {
59 if (! (_managed = findSupportingWM()))
60 usleep(1000);
61 --count;
62 }
63 if (_managed)
64 cout << "Found compatible window manager '" << _wm_name << "' for screen "
65 << _number << ".\n";
66 else {
67 cout << "Unable to find a compatible window manager for screen " <<
68 _number << ".\n";
69 return;
70 }
71
72 XSelectInput(_epist->getXDisplay(), _root, PropertyChangeMask);
73
74 updateNumDesktops();
75 updateActiveDesktop();
76 updateClientList();
77 updateActiveWindow();
78 }
79
80
81 screen::~screen() {
82 if (_managed)
83 XSelectInput(_epist->getXDisplay(), _root, None);
84 }
85
86
87 bool screen::findSupportingWM() {
88 Window support_win;
89 if (! _xatom->getValue(_root, XAtom::net_supporting_wm_check, XAtom::window,
90 support_win) || support_win == None)
91 return false;
92
93 string title;
94 _xatom->getValue(support_win, XAtom::net_wm_name, XAtom::utf8, title);
95 _wm_name = title;
96 return true;
97 }
98
99
100 XWindow *screen::findWindow(const XEvent &e) const {
101 assert(_managed);
102
103 WindowList::const_iterator it, end = _clients.end();
104 for (it = _clients.begin(); it != end; ++it)
105 if (**it == e.xany.window)
106 break;
107 if(it == end)
108 return 0;
109 return *it;
110 }
111
112
113 void screen::processEvent(const XEvent &e) {
114 assert(_managed);
115 assert(e.xany.window == _root);
116
117 XWindow *window = 0;
118 if (e.xany.window != _root) {
119 window = findWindow(e); // find the window
120 assert(window); // we caught an event for a window we don't know about!?
121 }
122
123 switch (e.type) {
124 case PropertyNotify:
125 // root window
126 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_number_of_desktops))
127 updateNumDesktops();
128 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_current_desktop))
129 updateActiveDesktop();
130 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_active_window))
131 updateActiveWindow();
132 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_client_list)) {
133 // catch any window unmaps first
134 XEvent ev;
135 if (XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
136 DestroyNotify, &ev) ||
137 XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
138 UnmapNotify, &ev)) {
139 processEvent(ev);
140 }
141
142 updateClientList();
143 }
144 break;
145 case KeyPress:
146 handleKeypress(e);
147 break;
148 }
149 }
150
151 void screen::handleKeypress(const XEvent &e) {
152 ActionList::const_iterator it = _epist->actions().begin();
153 ActionList::const_iterator end = _epist->actions().end();
154 for (; it != end; ++it) {
155 if (e.xkey.keycode == it->keycode() &&
156 e.xkey.state == it->modifierMask()) {
157 switch (it->type()) {
158 case Action::nextWorkspace:
159 cycleWorkspace(true);
160 return;
161
162 case Action::prevWorkspace:
163 cycleWorkspace(false);
164 return;
165
166 case Action::nextWindow:
167 cycleWindow(true);
168 return;
169
170 case Action::prevWindow:
171 cycleWindow(false);
172 return;
173
174 case Action::nextWindowOnAllWorkspaces:
175 cycleWindow(true, true);
176 return;
177
178 case Action::prevWindowOnAllWorkspaces:
179 cycleWindow(false, true);
180 return;
181
182 case Action::nextWindowOfClass:
183 cycleWindow(true, false, true);
184 return;
185
186 case Action::prevWindowOfClass:
187 cycleWindow(false, false, true);
188 return;
189
190 case Action::changeWorkspace:
191 changeWorkspace(it->number());
192 return;
193 }
194
195 // these actions require an active window
196 if (_active != _clients.end()) {
197 XWindow *window = *_active;
198
199 switch (it->type()) {
200 case Action::iconify:
201 window->iconify();
202 return;
203
204 case Action::close:
205 window->close();
206 return;
207
208 case Action::raise:
209 window->raise();
210 return;
211
212 case Action::lower:
213 window->lower();
214 return;
215
216 case Action::toggleshade:
217 window->shade(! window->shaded());
218 return;
219 }
220 }
221 }
222 }
223 }
224
225 // do we want to add this window to our list?
226 bool screen::doAddWindow(Window window) const {
227 assert(_managed);
228
229 Atom type;
230 if (! _xatom->getValue(window, XAtom::net_wm_window_type, XAtom::atom,
231 type))
232 return True;
233
234 if (type == _xatom->getAtom(XAtom::net_wm_window_type_dock) ||
235 type == _xatom->getAtom(XAtom::net_wm_window_type_menu))
236 return False;
237
238 return True;
239 }
240
241
242 void screen::updateNumDesktops() {
243 assert(_managed);
244
245 if (! _xatom->getValue(_root, XAtom::net_number_of_desktops, XAtom::cardinal,
246 (unsigned long)_num_desktops))
247 _num_desktops = 1; // assume that there is at least 1 desktop!
248 }
249
250
251 void screen::updateActiveDesktop() {
252 assert(_managed);
253
254 if (! _xatom->getValue(_root, XAtom::net_current_desktop, XAtom::cardinal,
255 (unsigned long)_active_desktop))
256 _active_desktop = 0; // there must be at least one desktop, and it must
257 // be the current one
258 }
259
260
261 void screen::updateClientList() {
262 assert(_managed);
263
264 WindowList::iterator insert_point = _active;
265 if (insert_point != _clients.end())
266 ++insert_point; // get to the item client the focused client
267
268 // get the client list from the root window
269 Window *rootclients = 0;
270 unsigned long num = (unsigned) -1;
271 if (! _xatom->getValue(_root, XAtom::net_client_list, XAtom::window, num,
272 &rootclients)) {
273 while (! _clients.empty()) {
274 delete _clients.front();
275 _clients.erase(_clients.begin());
276 }
277 if (rootclients) delete [] rootclients;
278 return;
279 }
280
281 WindowList::iterator it, end = _clients.end();
282 unsigned long i;
283
284 // insert new clients after the active window
285 for (i = 0; i < num; ++i) {
286 for (it = _clients.begin(); it != end; ++it)
287 if (**it == rootclients[i])
288 break;
289 if (it == end) { // didn't already exist
290 if (doAddWindow(rootclients[i])) {
291 cout << "Added window: 0x" << hex << rootclients[i] << dec << endl;
292 _clients.insert(insert_point, new XWindow(_epist, this,
293 rootclients[i]));
294 }
295 }
296 }
297
298 // remove clients that no longer exist
299 for (it = _clients.begin(); it != end;) {
300 WindowList::iterator it2 = it++;
301 for (i = 0; i < num; ++i)
302 if (**it2 == rootclients[i])
303 break;
304 if (i == num) { // no longer exists
305 cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl;
306 delete *it2;
307 _clients.erase(it2);
308 }
309 }
310
311 if (rootclients) delete [] rootclients;
312 }
313
314
315 void screen::updateActiveWindow() {
316 assert(_managed);
317
318 Window a = None;
319 _xatom->getValue(_root, XAtom::net_active_window, XAtom::window, a);
320
321 WindowList::iterator it, end = _clients.end();
322 for (it = _clients.begin(); it != end; ++it) {
323 if (**it == a)
324 break;
325 }
326 _active = it;
327
328 cout << "Active window is now: ";
329 if (_active == _clients.end()) cout << "None\n";
330 else cout << "0x" << hex << (*_active)->window() << dec << endl;
331 }
332
333 /*
334 * use this when execing a command to have it on the right screen
335 string dtmp = (string)"DISPLAY=" + display_name;
336 if (putenv(const_cast<char*>(dtmp.c_str()))) {
337 cout << "warning: couldn't set environment variable 'DISPLAY'\n";
338 perror("putenv()");
339 }
340 */
341
342
343 void screen::cycleWindow(const bool forward, const bool alldesktops,
344 const bool sameclass) const {
345 assert(_managed);
346
347 if (_clients.empty()) return;
348
349 WindowList::const_iterator target = _active;
350
351 if (target == _clients.end())
352 target = _clients.begin();
353
354 do {
355 if (forward) {
356 ++target;
357 if (target == _clients.end())
358 target = _clients.begin();
359 } else {
360 if (target == _clients.begin())
361 target = _clients.end();
362 --target;
363 }
364 } while (target == _clients.end() ||
365 (*target)->iconic() ||
366 (! alldesktops && (*target)->desktop() != _active_desktop) ||
367 (sameclass && _active != _clients.end() &&
368 (*target)->appClass() != (*_active)->appClass()));
369
370 if (target != _clients.end())
371 (*target)->focus();
372 }
373
374
375 void screen::cycleWorkspace(const bool forward, const bool loop) const {
376 assert(_managed);
377
378 unsigned int destination = _active_desktop;
379
380 if (forward) {
381 if (destination < _num_desktops - 1)
382 ++destination;
383 else if (loop)
384 destination = 0;
385 } else {
386 if (destination > 0)
387 --destination;
388 else if (loop)
389 destination = _num_desktops - 1;
390 }
391
392 if (destination != _active_desktop)
393 changeWorkspace(destination);
394 }
395
396
397 void screen::changeWorkspace(const int num) const {
398 assert(_managed);
399
400 _xatom->sendClientMessage(_root, XAtom::net_current_desktop, _root, num);
401 }
This page took 0.065488 seconds and 4 git commands to generate.