]> Dogcows Code - chaz/openbox/blob - util/epist/screen.cc
implement toggleMaximize(Vert|Horz|Full)
[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_STDIO_H
29 # include <stdio.h>
30 #endif // HAVE_STDIO_H
31
32 #ifdef HAVE_UNISTD_H
33 # include <sys/types.h>
34 # include <unistd.h>
35 #endif // HAVE_UNISTD_H
36 }
37
38 #include <iostream>
39 #include <string>
40
41 using std::cout;
42 using std::endl;
43 using std::hex;
44 using std::dec;
45 using std::string;
46
47 #include "../../src/BaseDisplay.hh"
48 #include "../../src/XAtom.hh"
49 #include "screen.hh"
50 #include "epist.hh"
51
52
53 screen::screen(epist *epist, int number) {
54 _epist = epist;
55 _xatom = _epist->xatom();
56 _number = number;
57 _active = _clients.end();
58 _info = _epist->getScreenInfo(_number);
59 _root = _info->getRootWindow();
60
61 // find a window manager supporting NETWM, waiting for it to load if we must
62 int count = 20; // try for 20 seconds
63 _managed = false;
64 while (! (_epist->doShutdown() || _managed || count <= 0)) {
65 if (! (_managed = findSupportingWM()))
66 usleep(1000);
67 --count;
68 }
69 if (_managed)
70 cout << "Found compatible window manager '" << _wm_name << "' for screen "
71 << _number << ".\n";
72 else {
73 cout << "Unable to find a compatible window manager for screen " <<
74 _number << ".\n";
75 return;
76 }
77
78 XSelectInput(_epist->getXDisplay(), _root, PropertyChangeMask);
79
80 updateNumDesktops();
81 updateActiveDesktop();
82 updateClientList();
83 updateActiveWindow();
84 }
85
86
87 screen::~screen() {
88 if (_managed)
89 XSelectInput(_epist->getXDisplay(), _root, None);
90 }
91
92
93 bool screen::findSupportingWM() {
94 Window support_win;
95 if (! _xatom->getValue(_root, XAtom::net_supporting_wm_check, XAtom::window,
96 support_win) || support_win == None)
97 return false;
98
99 string title;
100 _xatom->getValue(support_win, XAtom::net_wm_name, XAtom::utf8, title);
101 _wm_name = title;
102 return true;
103 }
104
105
106 XWindow *screen::findWindow(const XEvent &e) const {
107 assert(_managed);
108
109 WindowList::const_iterator it, end = _clients.end();
110 for (it = _clients.begin(); it != end; ++it)
111 if (**it == e.xany.window)
112 break;
113 if(it == end)
114 return 0;
115 return *it;
116 }
117
118
119 void screen::processEvent(const XEvent &e) {
120 assert(_managed);
121 assert(e.xany.window == _root);
122
123 XWindow *window = 0;
124 if (e.xany.window != _root) {
125 window = findWindow(e); // find the window
126 assert(window); // we caught an event for a window we don't know about!?
127 }
128
129 switch (e.type) {
130 case PropertyNotify:
131 // root window
132 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_number_of_desktops))
133 updateNumDesktops();
134 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_current_desktop))
135 updateActiveDesktop();
136 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_active_window))
137 updateActiveWindow();
138 if (e.xproperty.atom == _xatom->getAtom(XAtom::net_client_list)) {
139 // catch any window unmaps first
140 XEvent ev;
141 if (XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
142 DestroyNotify, &ev) ||
143 XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
144 UnmapNotify, &ev)) {
145 processEvent(ev);
146 }
147
148 updateClientList();
149 }
150 break;
151 case KeyPress:
152 handleKeypress(e);
153 break;
154 }
155 }
156
157 void screen::handleKeypress(const XEvent &e) {
158 ActionList::const_iterator it = _epist->actions().begin();
159 ActionList::const_iterator end = _epist->actions().end();
160 for (; it != end; ++it) {
161 if (e.xkey.keycode == it->keycode() &&
162 e.xkey.state == it->modifierMask()) {
163 switch (it->type()) {
164 case Action::nextWorkspace:
165 cycleWorkspace(true);
166 return;
167
168 case Action::prevWorkspace:
169 cycleWorkspace(false);
170 return;
171
172 case Action::nextWindow:
173 cycleWindow(true);
174 return;
175
176 case Action::prevWindow:
177 cycleWindow(false);
178 return;
179
180 case Action::nextWindowOnAllWorkspaces:
181 cycleWindow(true, true);
182 return;
183
184 case Action::prevWindowOnAllWorkspaces:
185 cycleWindow(false, true);
186 return;
187
188 case Action::nextWindowOfClass:
189 cycleWindow(true, false, true, it->string());
190 return;
191
192 case Action::prevWindowOfClass:
193 cycleWindow(false, false, true, it->string());
194 return;
195
196 case Action::nextWindowOfClassOnAllWorkspaces:
197 cycleWindow(true, true, true, it->string());
198 return;
199
200 case Action::prevWindowOfClassOnAllWorkspaces:
201 cycleWindow(false, true, true, it->string());
202 return;
203
204 case Action::changeWorkspace:
205 changeWorkspace(it->number());
206 return;
207
208 case Action::execute:
209 execCommand(it->string());
210 return;
211
212 default:
213 break;
214 }
215
216 // these actions require an active window
217 if (_active != _clients.end()) {
218 XWindow *window = *_active;
219
220 switch (it->type()) {
221 case Action::iconify:
222 window->iconify();
223 return;
224
225 case Action::close:
226 window->close();
227 return;
228
229 case Action::raise:
230 window->raise();
231 return;
232
233 case Action::lower:
234 window->lower();
235 return;
236
237 case Action::sendToWorkspace:
238 window->sendTo(it->number());
239 return;
240
241 case Action::toggleomnipresent:
242 if (window->desktop() == 0xffffffff)
243 window->sendTo(_active_desktop);
244 else
245 window->sendTo(0xffffffff);
246 return;
247
248 case Action::moveWindowUp:
249 window->move(0, -it->number());
250 return;
251
252 case Action::moveWindowDown:
253 window->move(0, it->number());
254 return;
255
256 case Action::moveWindowLeft:
257 window->move(-it->number(), 0);
258 return;
259
260 case Action::moveWindowRight:
261 window->move(it->number(), 0);
262 return;
263
264 case Action::toggleshade:
265 window->shade(! window->shaded());
266 return;
267
268 case Action::toggleMaximizeHorizontal:
269 window->toggleMaximize(XWindow::Max_Horz);
270 return;
271
272 case Action::toggleMaximizeVertical:
273 window->toggleMaximize(XWindow::Max_Vert);
274 return;
275
276 case Action::toggleMaximizeFull:
277 window->toggleMaximize(XWindow::Max_Full);
278 return;
279
280 default:
281 assert(false); // unhandled action type!
282 break;
283 }
284 }
285 }
286 }
287 }
288
289 // do we want to add this window to our list?
290 bool screen::doAddWindow(Window window) const {
291 assert(_managed);
292
293 Atom type;
294 if (! _xatom->getValue(window, XAtom::net_wm_window_type, XAtom::atom,
295 type))
296 return True;
297
298 if (type == _xatom->getAtom(XAtom::net_wm_window_type_dock) ||
299 type == _xatom->getAtom(XAtom::net_wm_window_type_menu))
300 return False;
301
302 return True;
303 }
304
305
306 void screen::updateNumDesktops() {
307 assert(_managed);
308
309 if (! _xatom->getValue(_root, XAtom::net_number_of_desktops, XAtom::cardinal,
310 (unsigned long)_num_desktops))
311 _num_desktops = 1; // assume that there is at least 1 desktop!
312 }
313
314
315 void screen::updateActiveDesktop() {
316 assert(_managed);
317
318 if (! _xatom->getValue(_root, XAtom::net_current_desktop, XAtom::cardinal,
319 (unsigned long)_active_desktop))
320 _active_desktop = 0; // there must be at least one desktop, and it must
321 // be the current one
322 }
323
324
325 void screen::updateClientList() {
326 assert(_managed);
327
328 WindowList::iterator insert_point = _active;
329 if (insert_point != _clients.end())
330 ++insert_point; // get to the item client the focused client
331
332 // get the client list from the root window
333 Window *rootclients = 0;
334 unsigned long num = (unsigned) -1;
335 if (! _xatom->getValue(_root, XAtom::net_client_list, XAtom::window, num,
336 &rootclients)) {
337 while (! _clients.empty()) {
338 delete _clients.front();
339 _clients.erase(_clients.begin());
340 }
341 if (rootclients) delete [] rootclients;
342 return;
343 }
344
345 WindowList::iterator it, end = _clients.end();
346 unsigned long i;
347
348 // insert new clients after the active window
349 for (i = 0; i < num; ++i) {
350 for (it = _clients.begin(); it != end; ++it)
351 if (**it == rootclients[i])
352 break;
353 if (it == end) { // didn't already exist
354 if (doAddWindow(rootclients[i])) {
355 cout << "Added window: 0x" << hex << rootclients[i] << dec << endl;
356 _clients.insert(insert_point, new XWindow(_epist, this,
357 rootclients[i]));
358 }
359 }
360 }
361
362 // remove clients that no longer exist
363 for (it = _clients.begin(); it != end;) {
364 WindowList::iterator it2 = it++;
365 for (i = 0; i < num; ++i)
366 if (**it2 == rootclients[i])
367 break;
368 if (i == num) { // no longer exists
369 cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl;
370 delete *it2;
371 _clients.erase(it2);
372 }
373 }
374
375 if (rootclients) delete [] rootclients;
376 }
377
378
379 void screen::updateActiveWindow() {
380 assert(_managed);
381
382 Window a = None;
383 _xatom->getValue(_root, XAtom::net_active_window, XAtom::window, a);
384
385 WindowList::iterator it, end = _clients.end();
386 for (it = _clients.begin(); it != end; ++it) {
387 if (**it == a)
388 break;
389 }
390 _active = it;
391
392 cout << "Active window is now: ";
393 if (_active == _clients.end()) cout << "None\n";
394 else cout << "0x" << hex << (*_active)->window() << dec << endl;
395 }
396
397
398 void screen::execCommand(const std::string &cmd) const {
399 pid_t pid;
400 if ((pid = fork()) == 0) {
401 extern char **environ;
402
403 char *const argv[] = {
404 "sh",
405 "-c",
406 const_cast<char *>(cmd.c_str()),
407 0
408 };
409 // make the command run on the correct screen
410 if (putenv(const_cast<char*>(_info->displayString().c_str()))) {
411 cout << "warning: couldn't set environment variable 'DISPLAY'\n";
412 perror("putenv()");
413 }
414 execve("/bin/sh", argv, environ);
415 exit(127);
416 } else if (pid == -1) {
417 cout << _epist->getApplicationName() <<
418 ": Could not fork a process for executing a command\n";
419 }
420 }
421
422
423 void screen::cycleWindow(const bool forward, const bool alldesktops,
424 const bool sameclass, const string &cn) const {
425 assert(_managed);
426
427 if (_clients.empty()) return;
428
429 WindowList::const_iterator target = _active;
430
431 string classname = cn;
432 if (sameclass && classname.empty() && target != _clients.end())
433 classname = (*target)->appClass();
434
435 if (target == _clients.end())
436 target = _clients.begin();
437
438 do {
439 if (forward) {
440 ++target;
441 if (target == _clients.end())
442 target = _clients.begin();
443 } else {
444 if (target == _clients.begin())
445 target = _clients.end();
446 --target;
447 }
448 } while (target == _clients.end() ||
449 (*target)->iconic() ||
450 (! alldesktops && (*target)->desktop() != _active_desktop) ||
451 (sameclass && ! classname.empty() &&
452 (*target)->appClass() != classname));
453
454 if (target != _clients.end())
455 (*target)->focus();
456 }
457
458
459 void screen::cycleWorkspace(const bool forward, const bool loop) const {
460 assert(_managed);
461
462 unsigned int destination = _active_desktop;
463
464 if (forward) {
465 if (destination < _num_desktops - 1)
466 ++destination;
467 else if (loop)
468 destination = 0;
469 } else {
470 if (destination > 0)
471 --destination;
472 else if (loop)
473 destination = _num_desktops - 1;
474 }
475
476 if (destination != _active_desktop)
477 changeWorkspace(destination);
478 }
479
480
481 void screen::changeWorkspace(const int num) const {
482 assert(_managed);
483
484 _xatom->sendClientMessage(_root, XAtom::net_current_desktop, _root, num);
485 }
This page took 0.05786 seconds and 4 git commands to generate.