]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/screen.cc
properly track the active workspace and the number of workspaces.
[mikachu/openbox.git] / 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, false);
168         return;
169
170       case Action::prevWindow:
171         cycleWindow(false, 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::changeWorkspace:
183         changeWorkspace(it->number());
184         return;
185       }
186
187       // these actions require an active window
188       if (_active != _clients.end()) {
189         XWindow *window = *_active;
190
191         switch (it->type()) {
192         case Action::iconify:
193           window->iconify();
194           return;
195
196         case Action::close:
197           window->close();
198           return;
199
200         case Action::raise:
201           window->raise();
202           return;
203
204         case Action::lower:
205           window->lower();
206           return;
207
208         case Action::toggleshade:
209           window->shade(! window->shaded());
210           return;
211         }
212       }
213     }
214   }
215 }
216
217 // do we want to add this window to our list?
218 bool screen::doAddWindow(Window window) const {
219   assert(_managed);
220
221   Atom type;
222   if (! _xatom->getValue(window, XAtom::net_wm_window_type, XAtom::atom,
223                          type))
224     return True;
225
226   if (type == _xatom->getAtom(XAtom::net_wm_window_type_dock) ||
227       type == _xatom->getAtom(XAtom::net_wm_window_type_menu))
228     return False;
229
230   return True;
231 }
232
233
234 void screen::updateNumDesktops() {
235   assert(_managed);
236
237   if (! _xatom->getValue(_root, XAtom::net_number_of_desktops, XAtom::cardinal,
238                          (unsigned long)_num_desktops))
239     _num_desktops = 1;  // assume that there is at least 1 desktop!
240 }
241
242
243 void screen::updateActiveDesktop() {
244   assert(_managed);
245
246   if (! _xatom->getValue(_root, XAtom::net_current_desktop, XAtom::cardinal,
247                          (unsigned long)_active_desktop))
248     _active_desktop = 0;  // there must be at least one desktop, and it must
249                           // be the current one
250 }
251
252
253 void screen::updateClientList() {
254   assert(_managed);
255
256   WindowList::iterator insert_point = _active;
257   if (insert_point != _clients.end())
258     ++insert_point; // get to the item client the focused client
259   
260   // get the client list from the root window
261   Window *rootclients = 0;
262   unsigned long num = (unsigned) -1;
263   if (! _xatom->getValue(_root, XAtom::net_client_list, XAtom::window, num,
264                          &rootclients)) {
265     while (! _clients.empty()) {
266       delete _clients.front();
267       _clients.erase(_clients.begin());
268     }
269     if (rootclients) delete [] rootclients;
270     return;
271   }
272   
273   WindowList::iterator it, end = _clients.end();
274   unsigned long i;
275   
276   // insert new clients after the active window
277   for (i = 0; i < num; ++i) {
278     for (it = _clients.begin(); it != end; ++it)
279       if (**it == rootclients[i])
280         break;
281     if (it == end) {  // didn't already exist
282       if (doAddWindow(rootclients[i])) {
283         cout << "Added window: 0x" << hex << rootclients[i] << dec << endl;
284         _clients.insert(insert_point, new XWindow(_epist, this,
285                                                   rootclients[i]));
286       }
287     }
288   }
289
290   // remove clients that no longer exist
291   for (it = _clients.begin(); it != end;) {
292     WindowList::iterator it2 = it++;
293     for (i = 0; i < num; ++i)
294       if (**it2 == rootclients[i])
295         break;
296     if (i == num)  { // no longer exists
297       cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl;
298       delete *it2;
299       _clients.erase(it2);
300     }
301   }
302
303   if (rootclients) delete [] rootclients;
304 }
305
306
307 void screen::updateActiveWindow() {
308   assert(_managed);
309
310   Window a = None;
311   _xatom->getValue(_root, XAtom::net_active_window, XAtom::window, a);
312   
313   WindowList::iterator it, end = _clients.end();
314   for (it = _clients.begin(); it != end; ++it) {
315     if (**it == a)
316       break;
317   }
318   _active = it;
319
320   cout << "Active window is now: ";
321   if (_active == _clients.end()) cout << "None\n";
322   else cout << "0x" << hex << (*_active)->window() << dec << endl;
323 }
324
325 /*
326  * use this when execing a command to have it on the right screen
327       string dtmp = (string)"DISPLAY=" + display_name;
328       if (putenv(const_cast<char*>(dtmp.c_str()))) {
329         cout << "warning: couldn't set environment variable 'DISPLAY'\n";
330         perror("putenv()");
331       }
332  */
333
334
335 void screen::cycleWindow(const bool forward, const bool alldesktops) const {
336   assert(_managed);
337
338   if (_clients.empty()) return;
339     
340   WindowList::const_iterator target = _active;
341
342   if (target == _clients.end())
343     target = _clients.begin();
344  
345   do {
346     if (forward) {
347       ++target;
348       if (target == _clients.end())
349         target = _clients.begin();
350     } else {
351       if (target == _clients.begin())
352         target = _clients.end();
353       --target;
354     }
355   } while (target == _clients.end() ||
356            (*target)->iconic() ||
357            (! alldesktops && (*target)->desktop() != _active_desktop));
358   
359   if (target != _clients.end()) {
360     if ((*target)->desktop() != _active_desktop)
361       changeWorkspace((*target)->desktop());
362
363     // we dont send an ACTIVE_WINDOW client message because that would also
364     // unshade the window if it was shaded
365     XSetInputFocus(_epist->getXDisplay(), (*target)->window(), RevertToNone,
366                    CurrentTime);
367     XRaiseWindow(_epist->getXDisplay(), (*target)->window());
368   }
369 }
370
371
372 void screen::cycleWorkspace(const bool forward, const bool loop) const {
373   assert(_managed);
374
375   unsigned int destination = _active_desktop;
376
377   if (forward) {
378     if (destination < _num_desktops - 1)
379       ++destination;
380     else if (loop)
381       destination = 0;
382   } else {
383     if (destination > 0)
384       --destination;
385     else if (loop)
386       destination = _num_desktops - 1;
387   }
388
389   if (destination != _active_desktop) 
390     changeWorkspace(destination);
391 }
392
393
394 void screen::changeWorkspace(const int num) const {
395   assert(_managed);
396
397   _xatom->sendClientMessage(_root, XAtom::net_current_desktop, _root, num);
398 }