]> Dogcows Code - chaz/openbox/blob - src/screen.cc
add comment
[chaz/openbox] / src / screen.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 extern "C" {
8 #ifdef HAVE_STDIO_H
9 # include <stdio.h>
10 #endif // HAVE_STDIO_H
11
12 #ifdef HAVE_STRING_H
13 # include <string.h>
14 #endif // HAVE_STRING_H
15
16 #ifdef HAVE_UNISTD_H
17 # include <sys/types.h>
18 # include <unistd.h>
19 #endif // HAVE_UNISTD_H
20
21 #include "gettext.h"
22 #define _(str) gettext(str)
23 }
24
25 #include "screen.hh"
26 #include "client.hh"
27 #include "openbox.hh"
28 #include "frame.hh"
29 #include "bindings.hh"
30 #include "python.hh"
31 #include "otk/display.hh"
32 #include "otk/property.hh"
33
34 #include <vector>
35 #include <algorithm>
36
37 static bool running;
38 static int anotherWMRunning(Display *display, XErrorEvent *) {
39 printf(_("Another window manager already running on display %s.\n"),
40 DisplayString(display));
41 running = true;
42 return -1;
43 }
44
45
46 namespace ob {
47
48
49 Screen::Screen(int screen)
50 : WidgetBase(WidgetBase::Type_Root),
51 _number(screen),
52 _style(screen, "")
53 {
54 assert(screen >= 0); assert(screen < ScreenCount(**otk::display));
55 _info = otk::display->screenInfo(screen);
56
57 ::running = false;
58 XErrorHandler old = XSetErrorHandler(::anotherWMRunning);
59 XSelectInput(**otk::display, _info->rootWindow(),
60 Screen::event_mask);
61 XSync(**otk::display, false);
62 XSetErrorHandler(old);
63
64 _managed = !::running;
65 if (! _managed) return; // was unable to manage the screen
66
67 printf(_("Managing screen %d: visual 0x%lx, depth %d\n"),
68 _number, XVisualIDFromVisual(_info->visual()), _info->depth());
69
70 otk::Property::set(_info->rootWindow(), otk::Property::atoms.openbox_pid,
71 otk::Property::atoms.cardinal, (unsigned long) getpid());
72
73 // set the mouse cursor for the root window (the default cursor)
74 XDefineCursor(**otk::display, _info->rootWindow(),
75 openbox->cursors().session);
76
77 // XXX: initialize the screen's style
78 /*
79 otk::ustring stylepath;
80 python_get_string("theme", &stylepath);
81 otk::Configuration sconfig(false);
82 sconfig.setFile(otk::expandTilde(stylepath.c_str()));
83 if (!sconfig.load()) {
84 sconfig.setFile(otk::expandTilde(DEFAULTSTYLE));
85 if (!sconfig.load()) {
86 printf(_("Unable to load default style: %s. Aborting.\n"), DEFAULTSTYLE);
87 ::exit(1);
88 }
89 }
90 _style.load(sconfig);
91 */
92 otk::display->renderControl(_number)->drawRoot(*_style.rootColor());
93
94 // set up notification of netwm support
95 changeSupportedAtoms();
96
97 // Set the netwm properties for geometry
98 unsigned long geometry[] = { _info->width(),
99 _info->height() };
100 otk::Property::set(_info->rootWindow(),
101 otk::Property::atoms.net_desktop_geometry,
102 otk::Property::atoms.cardinal, geometry, 2);
103
104 // Set the net_desktop_names property
105 std::vector<otk::ustring> names;
106 python_get_stringlist("desktop_names", &names);
107 otk::Property::set(_info->rootWindow(),
108 otk::Property::atoms.net_desktop_names,
109 otk::Property::utf8, names);
110 // the above set() will cause the updateDesktopNames to fire right away so
111 // we have a list of desktop names
112
113 if (!python_get_long("number_of_desktops", &_num_desktops))
114 _num_desktops = 1;
115 changeNumDesktops(_num_desktops); // set the hint
116
117 _desktop = 0;
118 changeDesktop(0); // set the hint
119
120 // create the window which gets focus when no clients get it
121 XSetWindowAttributes attr;
122 attr.override_redirect = true;
123 _focuswindow = XCreateWindow(**otk::display, _info->rootWindow(),
124 -100, -100, 1, 1, 0, 0, InputOnly,
125 _info->visual(), CWOverrideRedirect, &attr);
126 XMapRaised(**otk::display, _focuswindow);
127
128 // these may be further updated if any pre-existing windows are found in
129 // the manageExising() function
130 changeClientList(); // initialize the client lists, which will be empty
131 calcArea(); // initialize the available working area
132
133 // register this class as the event handler for the root window
134 openbox->registerHandler(_info->rootWindow(), this);
135
136 // call the python Startup callbacks
137 EventData data(_number, 0, EventAction::Shutdown, 0);
138 openbox->bindings()->fireEvent(&data);
139 }
140
141
142 Screen::~Screen()
143 {
144 if (! _managed) return;
145
146 XSelectInput(**otk::display, _info->rootWindow(), NoEventMask);
147
148 // unmanage all windows
149 while (!clients.empty())
150 unmanageWindow(clients.front());
151
152 // call the python Shutdown callbacks
153 EventData data(_number, 0, EventAction::Shutdown, 0);
154 openbox->bindings()->fireEvent(&data);
155
156 XDestroyWindow(**otk::display, _focuswindow);
157 XDestroyWindow(**otk::display, _supportwindow);
158 }
159
160
161 void Screen::manageExisting()
162 {
163 unsigned int i, j, nchild;
164 Window r, p, *children;
165 XQueryTree(**otk::display, _info->rootWindow(), &r, &p,
166 &children, &nchild);
167
168 // preen the window list of all icon windows... for better dockapp support
169 for (i = 0; i < nchild; i++) {
170 if (children[i] == None) continue;
171
172 XWMHints *wmhints = XGetWMHints(**otk::display,
173 children[i]);
174
175 if (wmhints) {
176 if ((wmhints->flags & IconWindowHint) &&
177 (wmhints->icon_window != children[i])) {
178 for (j = 0; j < nchild; j++) {
179 if (children[j] == wmhints->icon_window) {
180 children[j] = None;
181 break;
182 }
183 }
184 }
185
186 XFree(wmhints);
187 }
188 }
189
190 // manage shown windows
191 for (i = 0; i < nchild; ++i) {
192 if (children[i] == None)
193 continue;
194
195 XWindowAttributes attrib;
196 if (XGetWindowAttributes(**otk::display, children[i], &attrib)) {
197 if (attrib.override_redirect) continue;
198
199 if (attrib.map_state != IsUnmapped) {
200 manageWindow(children[i]);
201 }
202 }
203 }
204
205 XFree(children);
206 }
207
208
209 void Screen::updateStrut()
210 {
211 _strut.left = _strut.right = _strut.top = _strut.bottom = 0;
212
213 Client::List::iterator it, end = clients.end();
214 for (it = clients.begin(); it != end; ++it) {
215 const otk::Strut &s = (*it)->strut();
216 _strut.left = std::max(_strut.left, s.left);
217 _strut.right = std::max(_strut.right, s.right);
218 _strut.top = std::max(_strut.top, s.top);
219 _strut.bottom = std::max(_strut.bottom, s.bottom);
220 }
221 calcArea();
222 }
223
224
225 void Screen::calcArea()
226 {
227 // otk::Rect old_area = _area;
228
229 /*
230 #ifdef XINERAMA
231 // reset to the full areas
232 if (isXineramaActive())
233 xineramaUsableArea = getXineramaAreas();
234 #endif // XINERAMA
235 */
236
237 _area.setRect(_strut.left, _strut.top,
238 _info->width() - (_strut.left + _strut.right),
239 _info->height() - (_strut.top + _strut.bottom));
240
241 /*
242 #ifdef XINERAMA
243 if (isXineramaActive()) {
244 // keep each of the ximerama-defined areas inside the strut
245 RectList::iterator xit, xend = xineramaUsableArea.end();
246 for (xit = xineramaUsableArea.begin(); xit != xend; ++xit) {
247 if (xit->x() < usableArea.x()) {
248 xit->setX(usableArea.x());
249 xit->setWidth(xit->width() - usableArea.x());
250 }
251 if (xit->y() < usableArea.y()) {
252 xit->setY(usableArea.y());
253 xit->setHeight(xit->height() - usableArea.y());
254 }
255 if (xit->x() + xit->width() > usableArea.width())
256 xit->setWidth(usableArea.width() - xit->x());
257 if (xit->y() + xit->height() > usableArea.height())
258 xit->setHeight(usableArea.height() - xit->y());
259 }
260 }
261 #endif // XINERAMA
262 */
263
264 //if (old_area != _area)
265 // XXX: re-maximize windows
266
267 changeWorkArea();
268 }
269
270
271 void Screen::changeSupportedAtoms()
272 {
273 // create the netwm support window
274 _supportwindow = XCreateSimpleWindow(**otk::display,
275 _info->rootWindow(),
276 0, 0, 1, 1, 0, 0, 0);
277
278 // set supporting window
279 otk::Property::set(_info->rootWindow(),
280 otk::Property::atoms.net_supporting_wm_check,
281 otk::Property::atoms.window, _supportwindow);
282
283 //set properties on the supporting window
284 otk::Property::set(_supportwindow, otk::Property::atoms.net_wm_name,
285 otk::Property::utf8, "Openbox");
286 otk::Property::set(_supportwindow,
287 otk::Property::atoms.net_supporting_wm_check,
288 otk::Property::atoms.window, _supportwindow);
289
290
291 Atom supported[] = {
292 otk::Property::atoms.net_current_desktop,
293 otk::Property::atoms.net_number_of_desktops,
294 otk::Property::atoms.net_desktop_geometry,
295 otk::Property::atoms.net_desktop_viewport,
296 otk::Property::atoms.net_active_window,
297 otk::Property::atoms.net_workarea,
298 otk::Property::atoms.net_client_list,
299 otk::Property::atoms.net_client_list_stacking,
300 otk::Property::atoms.net_desktop_names,
301 otk::Property::atoms.net_close_window,
302 otk::Property::atoms.net_wm_name,
303 otk::Property::atoms.net_wm_visible_name,
304 otk::Property::atoms.net_wm_icon_name,
305 otk::Property::atoms.net_wm_visible_icon_name,
306 /*
307 otk::Property::atoms.net_wm_desktop,
308 */
309 otk::Property::atoms.net_wm_strut,
310 otk::Property::atoms.net_wm_window_type,
311 otk::Property::atoms.net_wm_window_type_desktop,
312 otk::Property::atoms.net_wm_window_type_dock,
313 otk::Property::atoms.net_wm_window_type_toolbar,
314 otk::Property::atoms.net_wm_window_type_menu,
315 otk::Property::atoms.net_wm_window_type_utility,
316 otk::Property::atoms.net_wm_window_type_splash,
317 otk::Property::atoms.net_wm_window_type_dialog,
318 otk::Property::atoms.net_wm_window_type_normal,
319 /*
320 otk::Property::atoms.net_wm_moveresize,
321 otk::Property::atoms.net_wm_moveresize_size_topleft,
322 otk::Property::atoms.net_wm_moveresize_size_topright,
323 otk::Property::atoms.net_wm_moveresize_size_bottomleft,
324 otk::Property::atoms.net_wm_moveresize_size_bottomright,
325 otk::Property::atoms.net_wm_moveresize_move,
326 */
327 otk::Property::atoms.net_wm_allowed_actions,
328 otk::Property::atoms.net_wm_action_move,
329 otk::Property::atoms.net_wm_action_resize,
330 otk::Property::atoms.net_wm_action_minimize,
331 otk::Property::atoms.net_wm_action_shade,
332 /* otk::Property::atoms.net_wm_action_stick,*/
333 otk::Property::atoms.net_wm_action_maximize_horz,
334 otk::Property::atoms.net_wm_action_maximize_vert,
335 otk::Property::atoms.net_wm_action_fullscreen,
336 otk::Property::atoms.net_wm_action_change_desktop,
337 otk::Property::atoms.net_wm_action_close,
338
339 otk::Property::atoms.net_wm_state,
340 otk::Property::atoms.net_wm_state_modal,
341 otk::Property::atoms.net_wm_state_maximized_vert,
342 otk::Property::atoms.net_wm_state_maximized_horz,
343 otk::Property::atoms.net_wm_state_shaded,
344 otk::Property::atoms.net_wm_state_skip_taskbar,
345 otk::Property::atoms.net_wm_state_skip_pager,
346 otk::Property::atoms.net_wm_state_hidden,
347 otk::Property::atoms.net_wm_state_fullscreen,
348 otk::Property::atoms.net_wm_state_above,
349 otk::Property::atoms.net_wm_state_below,
350 };
351 const int num_supported = sizeof(supported)/sizeof(Atom);
352
353 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_supported,
354 otk::Property::atoms.atom, supported, num_supported);
355 }
356
357
358 void Screen::changeClientList()
359 {
360 Window *windows;
361 unsigned int size = clients.size();
362
363 // create an array of the window ids
364 if (size > 0) {
365 Window *win_it;
366
367 windows = new Window[size];
368 win_it = windows;
369 Client::List::const_iterator it = clients.begin();
370 const Client::List::const_iterator end = clients.end();
371 for (; it != end; ++it, ++win_it)
372 *win_it = (*it)->window();
373 } else
374 windows = (Window*) 0;
375
376 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_client_list,
377 otk::Property::atoms.window, windows, size);
378
379 if (size)
380 delete [] windows;
381
382 changeStackingList();
383 }
384
385
386 void Screen::changeStackingList()
387 {
388 Window *windows;
389 unsigned int size = _stacking.size();
390
391 assert(size == clients.size()); // just making sure.. :)
392
393
394 // create an array of the window ids (from bottom to top, reverse order!)
395 if (size > 0) {
396 Window *win_it;
397
398 windows = new Window[size];
399 win_it = windows;
400 Client::List::const_reverse_iterator it = _stacking.rbegin();
401 const Client::List::const_reverse_iterator end = _stacking.rend();
402 for (; it != end; ++it, ++win_it)
403 *win_it = (*it)->window();
404 } else
405 windows = (Window*) 0;
406
407 otk::Property::set(_info->rootWindow(),
408 otk::Property::atoms.net_client_list_stacking,
409 otk::Property::atoms.window, windows, size);
410
411 if (size)
412 delete [] windows;
413 }
414
415
416 void Screen::changeWorkArea() {
417 unsigned long *dims = new unsigned long[4 * _num_desktops];
418 for (long i = 0; i < _num_desktops; ++i) {
419 // XXX: this could be different for each workspace
420 dims[(i * 4) + 0] = _area.x();
421 dims[(i * 4) + 1] = _area.y();
422 dims[(i * 4) + 2] = _area.width();
423 dims[(i * 4) + 3] = _area.height();
424 }
425 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_workarea,
426 otk::Property::atoms.cardinal, dims, 4 * _num_desktops);
427 delete [] dims;
428 }
429
430
431 void Screen::manageWindow(Window window)
432 {
433 Client *client = 0;
434 XWMHints *wmhint;
435 XSetWindowAttributes attrib_set;
436 XEvent e;
437 XWindowAttributes attrib;
438
439 otk::display->grab();
440
441 // check if it has already been unmapped by the time we started mapping
442 // the grab does a sync so we don't have to here
443 if (XCheckTypedWindowEvent(**otk::display, window, DestroyNotify, &e) ||
444 XCheckTypedWindowEvent(**otk::display, window, UnmapNotify, &e)) {
445 XPutBackEvent(**otk::display, &e);
446
447 otk::display->ungrab();
448 return; // don't manage it
449 }
450
451 if (!XGetWindowAttributes(**otk::display, window, &attrib) ||
452 attrib.override_redirect) {
453 otk::display->ungrab();
454 return; // don't manage it
455 }
456
457 // is the window a docking app
458 if ((wmhint = XGetWMHints(**otk::display, window))) {
459 if ((wmhint->flags & StateHint) &&
460 wmhint->initial_state == WithdrawnState) {
461 //slit->addClient(w); // XXX: make dock apps work!
462
463 otk::display->ungrab();
464 XFree(wmhint);
465 return;
466 }
467 XFree(wmhint);
468 }
469
470 // choose the events we want to receive on the CLIENT window
471 attrib_set.event_mask = Client::event_mask;
472 attrib_set.do_not_propagate_mask = Client::no_propagate_mask;
473 XChangeWindowAttributes(**otk::display, window,
474 CWEventMask|CWDontPropagate, &attrib_set);
475
476 // create the Client class, which gets all of the hints on the window
477 client = new Client(_number, window);
478 // register for events
479 openbox->registerHandler(window, client);
480 // add to the wm's map
481 openbox->addClient(window, client);
482
483 // we dont want a border on the client
484 client->toggleClientBorder(false);
485
486 // specify that if we exit, the window should not be destroyed and should be
487 // reparented back to root automatically
488 XChangeSaveSet(**otk::display, window, SetModeInsert);
489
490 // create the decoration frame for the client window
491 client->frame = new Frame(client, &_style);
492 // register the plate for events (map req's)
493 // this involves removing itself from the handler list first, since it is
494 // auto added to the list, being a widget. we won't get any events on the
495 // plate except for events for the client (SubstructureRedirectMask)
496 openbox->clearHandler(client->frame->plate());
497 openbox->registerHandler(client->frame->plate(), client);
498
499 // add to the wm's map
500 openbox->addClient(client->frame->window(), client);
501 openbox->addClient(client->frame->plate(), client);
502 openbox->addClient(client->frame->titlebar(), client);
503 openbox->addClient(client->frame->label(), client);
504 openbox->addClient(client->frame->button_max(), client);
505 openbox->addClient(client->frame->button_iconify(), client);
506 openbox->addClient(client->frame->button_alldesk(), client);
507 openbox->addClient(client->frame->button_close(), client);
508 openbox->addClient(client->frame->handle(), client);
509 openbox->addClient(client->frame->grip_left(), client);
510 openbox->addClient(client->frame->grip_right(), client);
511
512 // reparent the client to the frame
513 client->frame->grabClient();
514
515 if (!(openbox->state() == Openbox::State_Starting ||
516 client->positionRequested())) {
517 // position the window intelligenty .. hopefully :)
518 // call the python PLACEWINDOW binding
519 EventData data(_number, client, EventAction::PlaceWindow, 0);
520 openbox->bindings()->fireEvent(&data);
521 }
522
523 EventData ddata(_number, client, EventAction::DisplayingWindow, 0);
524 openbox->bindings()->fireEvent(&ddata);
525
526 // if on the current desktop.. (or all desktops)
527 if (client->desktop() == _desktop ||
528 client->desktop() == (signed)0xffffffff) {
529 client->frame->show();
530 }
531
532 client->applyStartupState();
533
534 otk::display->ungrab();
535
536 // add to the screen's list
537 clients.push_back(client);
538 // once the client is in the list, update our strut to include the new
539 // client's (it is good that this happens after window placement!)
540 updateStrut();
541 // this puts into the stacking order, then raises it
542 _stacking.push_back(client);
543 raiseWindow(client);
544 // update the root properties
545 changeClientList();
546
547 openbox->bindings()->grabButtons(true, client);
548
549 EventData ndata(_number, client, EventAction::NewWindow, 0);
550 openbox->bindings()->fireEvent(&ndata);
551
552 #ifdef DEBUG
553 printf("Managed window 0x%lx frame 0x%lx\n",
554 window, client->frame->window());
555 #endif
556 }
557
558
559 void Screen::unmanageWindow(Client *client)
560 {
561 Frame *frame = client->frame;
562
563 // call the python CLOSEWINDOW binding
564 EventData data(_number, client, EventAction::CloseWindow, 0);
565 openbox->bindings()->fireEvent(&data);
566
567 openbox->bindings()->grabButtons(false, client);
568
569 // remove from the wm's map
570 openbox->removeClient(client->window());
571 openbox->removeClient(frame->window());
572 openbox->removeClient(frame->plate());
573 openbox->removeClient(frame->titlebar());
574 openbox->removeClient(frame->label());
575 openbox->removeClient(frame->button_max());
576 openbox->removeClient(frame->button_iconify());
577 openbox->removeClient(frame->button_alldesk());
578 openbox->removeClient(frame->button_close());
579 openbox->removeClient(frame->handle());
580 openbox->removeClient(frame->grip_left());
581 openbox->removeClient(frame->grip_right());
582 // unregister for handling events
583 openbox->clearHandler(client->window());
584
585 // remove the window from our save set
586 XChangeSaveSet(**otk::display, client->window(), SetModeDelete);
587
588 // we dont want events no more
589 XSelectInput(**otk::display, client->window(), NoEventMask);
590
591 frame->hide();
592
593 // give the client its border back
594 client->toggleClientBorder(true);
595
596 // reparent the window out of the frame
597 frame->releaseClient();
598
599 #ifdef DEBUG
600 Window framewin = client->frame->window();
601 #endif
602 delete client->frame;
603 client->frame = 0;
604
605 // remove from the stacking order
606 _stacking.remove(client);
607
608 // remove from the screen's list
609 clients.remove(client);
610
611 // once the client is out of the list, update our strut to remove it's
612 // influence
613 updateStrut();
614
615 // unfocus the client (calls the focus callbacks)
616 client->unfocus();
617
618 #ifdef DEBUG
619 printf("Unmanaged window 0x%lx frame 0x%lx\n", client->window(), framewin);
620 #endif
621
622 delete client;
623
624 // update the root properties
625 changeClientList();
626 }
627
628 void Screen::lowerWindow(Client *client)
629 {
630 Window wins[2]; // only ever restack 2 windows.
631
632 assert(!_stacking.empty()); // this would be bad
633
634 Client::List::iterator it = --_stacking.end();
635 const Client::List::iterator end = _stacking.begin();
636
637 for (; it != end && (*it)->layer() < client->layer(); --it);
638 if (*it == client) return; // already the bottom, return
639
640 wins[0] = (*it)->frame->window();
641 wins[1] = client->frame->window();
642
643 _stacking.remove(client);
644 _stacking.insert(++it, client);
645
646 XRestackWindows(**otk::display, wins, 2);
647 changeStackingList();
648 }
649
650 void Screen::raiseWindow(Client *client)
651 {
652 Window wins[2]; // only ever restack 2 windows.
653
654 assert(!_stacking.empty()); // this would be bad
655
656 // remove the client before looking so we can't run into ourselves
657 _stacking.remove(client);
658
659 Client::List::iterator it = _stacking.begin();
660 const Client::List::iterator end = _stacking.end();
661
662 // the stacking list is from highest to lowest
663 for (; it != end && (*it)->layer() > client->layer(); ++it);
664
665 /*
666 if our new position is the top, we want to stack under the _focuswindow
667 otherwise, we want to stack under the previous window in the stack.
668 */
669 wins[0] = (it == _stacking.begin() ? _focuswindow :
670 ((*(--Client::List::const_iterator(it)))->frame->window()));
671 wins[1] = client->frame->window();
672
673 _stacking.insert(it, client);
674
675 XRestackWindows(**otk::display, wins, 2);
676 changeStackingList();
677 }
678
679 void Screen::changeDesktop(long desktop)
680 {
681 if (!(desktop >= 0 && desktop < _num_desktops)) return;
682
683 printf("Moving to desktop %ld\n", desktop);
684
685 long old = _desktop;
686
687 _desktop = desktop;
688 otk::Property::set(_info->rootWindow(),
689 otk::Property::atoms.net_current_desktop,
690 otk::Property::atoms.cardinal, _desktop);
691
692 if (old == _desktop) return;
693
694 Client::List::iterator it, end = clients.end();
695 for (it = clients.begin(); it != end; ++it) {
696 if ((*it)->desktop() == old) {
697 (*it)->frame->hide();
698 } else if ((*it)->desktop() == _desktop) {
699 (*it)->frame->show();
700 }
701 }
702
703 // force the callbacks to fire
704 if (!openbox->focusedClient())
705 openbox->setFocusedClient(0);
706 }
707
708 void Screen::changeNumDesktops(long num)
709 {
710 assert(num > 0);
711
712 if (!(num > 0)) return;
713
714 // XXX: move windows on desktops that will no longer exist!
715
716 _num_desktops = num;
717 otk::Property::set(_info->rootWindow(),
718 otk::Property::atoms.net_number_of_desktops,
719 otk::Property::atoms.cardinal, _num_desktops);
720
721 // set the viewport hint
722 unsigned long *viewport = new unsigned long[_num_desktops * 2];
723 memset(viewport, 0, sizeof(unsigned long) * _num_desktops * 2);
724 otk::Property::set(_info->rootWindow(),
725 otk::Property::atoms.net_desktop_viewport,
726 otk::Property::atoms.cardinal,
727 viewport, _num_desktops * 2);
728 delete [] viewport;
729
730 // update the work area hint
731 changeWorkArea();
732 }
733
734
735 void Screen::updateDesktopNames()
736 {
737 unsigned long num = (unsigned) -1;
738
739 if (!otk::Property::get(_info->rootWindow(),
740 otk::Property::atoms.net_desktop_names,
741 otk::Property::utf8, &num, &_desktop_names))
742 _desktop_names.clear();
743 while ((long)_desktop_names.size() < _num_desktops)
744 _desktop_names.push_back("Unnamed");
745 }
746
747
748 void Screen::setDesktopName(long i, const otk::ustring &name)
749 {
750 assert(i >= 0);
751
752 if (i >= _num_desktops) return;
753
754 otk::Property::StringVect newnames = _desktop_names;
755 newnames[i] = name;
756 otk::Property::set(_info->rootWindow(),
757 otk::Property::atoms.net_desktop_names,
758 otk::Property::utf8, newnames);
759 }
760
761
762 void Screen::propertyHandler(const XPropertyEvent &e)
763 {
764 otk::EventHandler::propertyHandler(e);
765
766 // compress changes to a single property into a single change
767 XEvent ce;
768 while (XCheckTypedEvent(**otk::display, e.type, &ce)) {
769 // XXX: it would be nice to compress ALL changes to a property, not just
770 // changes in a row without other props between.
771 if (ce.xproperty.atom != e.atom) {
772 XPutBackEvent(**otk::display, &ce);
773 break;
774 }
775 }
776
777 if (e.atom == otk::Property::atoms.net_desktop_names)
778 updateDesktopNames();
779 }
780
781
782 void Screen::clientMessageHandler(const XClientMessageEvent &e)
783 {
784 otk::EventHandler::clientMessageHandler(e);
785
786 if (e.format != 32) return;
787
788 if (e.message_type == otk::Property::atoms.net_current_desktop) {
789 changeDesktop(e.data.l[0]);
790 } else if (e.message_type == otk::Property::atoms.net_number_of_desktops) {
791 changeNumDesktops(e.data.l[0]);
792 }
793 // XXX: so many client messages to handle here! ..or not.. they go to clients
794 }
795
796
797 void Screen::mapRequestHandler(const XMapRequestEvent &e)
798 {
799 otk::EventHandler::mapRequestHandler(e);
800
801 #ifdef DEBUG
802 printf("MapRequest for 0x%lx\n", e.window);
803 #endif // DEBUG
804
805 Client *c = openbox->findClient(e.window);
806 if (c) {
807 #ifdef DEBUG
808 printf("DEBUG: MAP REQUEST CAUGHT IN SCREEN. IGNORED.\n");
809 #endif
810 } else
811 manageWindow(e.window);
812 }
813
814 }
This page took 0.07037 seconds and 5 git commands to generate.