]> Dogcows Code - chaz/openbox/blob - src/screen.cc
fix compile err
[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::Startup, 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 // the area has changed, adjust all the maximized windows
266 Client::List::iterator it, end = clients.end();
267 for (it = clients.begin(); it != end; ++it)
268 (*it)->remaximize();
269 }
270
271 changeWorkArea();
272 }
273
274
275 void Screen::changeSupportedAtoms()
276 {
277 // create the netwm support window
278 _supportwindow = XCreateSimpleWindow(**otk::display,
279 _info->rootWindow(),
280 0, 0, 1, 1, 0, 0, 0);
281
282 // set supporting window
283 otk::Property::set(_info->rootWindow(),
284 otk::Property::atoms.net_supporting_wm_check,
285 otk::Property::atoms.window, _supportwindow);
286
287 //set properties on the supporting window
288 otk::Property::set(_supportwindow, otk::Property::atoms.net_wm_name,
289 otk::Property::utf8, "Openbox");
290 otk::Property::set(_supportwindow,
291 otk::Property::atoms.net_supporting_wm_check,
292 otk::Property::atoms.window, _supportwindow);
293
294
295 Atom supported[] = {
296 otk::Property::atoms.net_current_desktop,
297 otk::Property::atoms.net_number_of_desktops,
298 otk::Property::atoms.net_desktop_geometry,
299 otk::Property::atoms.net_desktop_viewport,
300 otk::Property::atoms.net_active_window,
301 otk::Property::atoms.net_workarea,
302 otk::Property::atoms.net_client_list,
303 otk::Property::atoms.net_client_list_stacking,
304 otk::Property::atoms.net_desktop_names,
305 otk::Property::atoms.net_close_window,
306 otk::Property::atoms.net_wm_name,
307 otk::Property::atoms.net_wm_visible_name,
308 otk::Property::atoms.net_wm_icon_name,
309 otk::Property::atoms.net_wm_visible_icon_name,
310 /*
311 otk::Property::atoms.net_wm_desktop,
312 */
313 otk::Property::atoms.net_wm_strut,
314 otk::Property::atoms.net_wm_window_type,
315 otk::Property::atoms.net_wm_window_type_desktop,
316 otk::Property::atoms.net_wm_window_type_dock,
317 otk::Property::atoms.net_wm_window_type_toolbar,
318 otk::Property::atoms.net_wm_window_type_menu,
319 otk::Property::atoms.net_wm_window_type_utility,
320 otk::Property::atoms.net_wm_window_type_splash,
321 otk::Property::atoms.net_wm_window_type_dialog,
322 otk::Property::atoms.net_wm_window_type_normal,
323 /*
324 otk::Property::atoms.net_wm_moveresize,
325 otk::Property::atoms.net_wm_moveresize_size_topleft,
326 otk::Property::atoms.net_wm_moveresize_size_topright,
327 otk::Property::atoms.net_wm_moveresize_size_bottomleft,
328 otk::Property::atoms.net_wm_moveresize_size_bottomright,
329 otk::Property::atoms.net_wm_moveresize_move,
330 */
331 otk::Property::atoms.net_wm_allowed_actions,
332 otk::Property::atoms.net_wm_action_move,
333 otk::Property::atoms.net_wm_action_resize,
334 otk::Property::atoms.net_wm_action_minimize,
335 otk::Property::atoms.net_wm_action_shade,
336 /* otk::Property::atoms.net_wm_action_stick,*/
337 otk::Property::atoms.net_wm_action_maximize_horz,
338 otk::Property::atoms.net_wm_action_maximize_vert,
339 otk::Property::atoms.net_wm_action_fullscreen,
340 otk::Property::atoms.net_wm_action_change_desktop,
341 otk::Property::atoms.net_wm_action_close,
342
343 otk::Property::atoms.net_wm_state,
344 otk::Property::atoms.net_wm_state_modal,
345 otk::Property::atoms.net_wm_state_maximized_vert,
346 otk::Property::atoms.net_wm_state_maximized_horz,
347 otk::Property::atoms.net_wm_state_shaded,
348 otk::Property::atoms.net_wm_state_skip_taskbar,
349 otk::Property::atoms.net_wm_state_skip_pager,
350 otk::Property::atoms.net_wm_state_hidden,
351 otk::Property::atoms.net_wm_state_fullscreen,
352 otk::Property::atoms.net_wm_state_above,
353 otk::Property::atoms.net_wm_state_below,
354 };
355 const int num_supported = sizeof(supported)/sizeof(Atom);
356
357 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_supported,
358 otk::Property::atoms.atom, supported, num_supported);
359 }
360
361
362 void Screen::changeClientList()
363 {
364 Window *windows;
365 unsigned int size = clients.size();
366
367 // create an array of the window ids
368 if (size > 0) {
369 Window *win_it;
370
371 windows = new Window[size];
372 win_it = windows;
373 Client::List::const_iterator it = clients.begin();
374 const Client::List::const_iterator end = clients.end();
375 for (; it != end; ++it, ++win_it)
376 *win_it = (*it)->window();
377 } else
378 windows = (Window*) 0;
379
380 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_client_list,
381 otk::Property::atoms.window, windows, size);
382
383 if (size)
384 delete [] windows;
385
386 changeStackingList();
387 }
388
389
390 void Screen::changeStackingList()
391 {
392 Window *windows;
393 unsigned int size = _stacking.size();
394
395 assert(size == clients.size()); // just making sure.. :)
396
397
398 // create an array of the window ids (from bottom to top, reverse order!)
399 if (size > 0) {
400 Window *win_it;
401
402 windows = new Window[size];
403 win_it = windows;
404 Client::List::const_reverse_iterator it = _stacking.rbegin();
405 const Client::List::const_reverse_iterator end = _stacking.rend();
406 for (; it != end; ++it, ++win_it)
407 *win_it = (*it)->window();
408 } else
409 windows = (Window*) 0;
410
411 otk::Property::set(_info->rootWindow(),
412 otk::Property::atoms.net_client_list_stacking,
413 otk::Property::atoms.window, windows, size);
414
415 if (size)
416 delete [] windows;
417 }
418
419
420 void Screen::changeWorkArea() {
421 unsigned long *dims = new unsigned long[4 * _num_desktops];
422 for (long i = 0; i < _num_desktops; ++i) {
423 // XXX: this could be different for each workspace
424 dims[(i * 4) + 0] = _area.x();
425 dims[(i * 4) + 1] = _area.y();
426 dims[(i * 4) + 2] = _area.width();
427 dims[(i * 4) + 3] = _area.height();
428 }
429 otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_workarea,
430 otk::Property::atoms.cardinal, dims, 4 * _num_desktops);
431 delete [] dims;
432 }
433
434
435 void Screen::manageWindow(Window window)
436 {
437 Client *client = 0;
438 XWMHints *wmhint;
439 XSetWindowAttributes attrib_set;
440 XEvent e;
441 XWindowAttributes attrib;
442
443 otk::display->grab();
444
445 // check if it has already been unmapped by the time we started mapping
446 // the grab does a sync so we don't have to here
447 if (XCheckTypedWindowEvent(**otk::display, window, DestroyNotify, &e) ||
448 XCheckTypedWindowEvent(**otk::display, window, UnmapNotify, &e)) {
449 XPutBackEvent(**otk::display, &e);
450
451 otk::display->ungrab();
452 return; // don't manage it
453 }
454
455 if (!XGetWindowAttributes(**otk::display, window, &attrib) ||
456 attrib.override_redirect) {
457 otk::display->ungrab();
458 return; // don't manage it
459 }
460
461 // is the window a docking app
462 if ((wmhint = XGetWMHints(**otk::display, window))) {
463 if ((wmhint->flags & StateHint) &&
464 wmhint->initial_state == WithdrawnState) {
465 //slit->addClient(w); // XXX: make dock apps work!
466
467 otk::display->ungrab();
468 XFree(wmhint);
469 return;
470 }
471 XFree(wmhint);
472 }
473
474 // choose the events we want to receive on the CLIENT window
475 attrib_set.event_mask = Client::event_mask;
476 attrib_set.do_not_propagate_mask = Client::no_propagate_mask;
477 XChangeWindowAttributes(**otk::display, window,
478 CWEventMask|CWDontPropagate, &attrib_set);
479
480 // create the Client class, which gets all of the hints on the window
481 client = new Client(_number, window);
482 // register for events
483 openbox->registerHandler(window, client);
484 // add to the wm's map
485 openbox->addClient(window, client);
486
487 // we dont want a border on the client
488 client->toggleClientBorder(false);
489
490 // specify that if we exit, the window should not be destroyed and should be
491 // reparented back to root automatically
492 XChangeSaveSet(**otk::display, window, SetModeInsert);
493
494 // create the decoration frame for the client window
495 client->frame = new Frame(client, &_style);
496 // register the plate for events (map req's)
497 // this involves removing itself from the handler list first, since it is
498 // auto added to the list, being a widget. we won't get any events on the
499 // plate except for events for the client (SubstructureRedirectMask)
500 openbox->clearHandler(client->frame->plate());
501 openbox->registerHandler(client->frame->plate(), client);
502
503 // add to the wm's map
504 openbox->addClient(client->frame->window(), client);
505 openbox->addClient(client->frame->plate(), client);
506 openbox->addClient(client->frame->titlebar(), client);
507 openbox->addClient(client->frame->label(), client);
508 openbox->addClient(client->frame->button_max(), client);
509 openbox->addClient(client->frame->button_iconify(), client);
510 openbox->addClient(client->frame->button_alldesk(), client);
511 openbox->addClient(client->frame->button_close(), client);
512 openbox->addClient(client->frame->handle(), client);
513 openbox->addClient(client->frame->grip_left(), client);
514 openbox->addClient(client->frame->grip_right(), client);
515
516 // reparent the client to the frame
517 client->frame->grabClient();
518
519 if (openbox->state() != Openbox::State_Starting) {
520 // position the window intelligenty .. hopefully :)
521 // call the python PLACEWINDOW binding
522 EventData data(_number, client, EventAction::PlaceWindow, 0);
523 openbox->bindings()->fireEvent(&data);
524 }
525
526 EventData ddata(_number, client, EventAction::DisplayingWindow, 0);
527 openbox->bindings()->fireEvent(&ddata);
528
529 // if on the current desktop.. (or all desktops)
530 if (client->desktop() == _desktop ||
531 client->desktop() == (signed)0xffffffff) {
532 client->frame->show();
533 }
534
535 client->applyStartupState();
536
537 otk::display->ungrab();
538
539 // add to the screen's list
540 clients.push_back(client);
541 // once the client is in the list, update our strut to include the new
542 // client's (it is good that this happens after window placement!)
543 updateStrut();
544 // this puts into the stacking order, then raises it
545 _stacking.push_back(client);
546 raiseWindow(client);
547 // update the root properties
548 changeClientList();
549
550 openbox->bindings()->grabButtons(true, client);
551
552 EventData ndata(_number, client, EventAction::NewWindow, 0);
553 openbox->bindings()->fireEvent(&ndata);
554
555 #ifdef DEBUG
556 printf("Managed window 0x%lx frame 0x%lx\n",
557 window, client->frame->window());
558 #endif
559 }
560
561
562 void Screen::unmanageWindow(Client *client)
563 {
564 Frame *frame = client->frame;
565
566 // call the python CLOSEWINDOW binding
567 EventData data(_number, client, EventAction::CloseWindow, 0);
568 openbox->bindings()->fireEvent(&data);
569
570 openbox->bindings()->grabButtons(false, client);
571
572 // remove from the wm's map
573 openbox->removeClient(client->window());
574 openbox->removeClient(frame->window());
575 openbox->removeClient(frame->plate());
576 openbox->removeClient(frame->titlebar());
577 openbox->removeClient(frame->label());
578 openbox->removeClient(frame->button_max());
579 openbox->removeClient(frame->button_iconify());
580 openbox->removeClient(frame->button_alldesk());
581 openbox->removeClient(frame->button_close());
582 openbox->removeClient(frame->handle());
583 openbox->removeClient(frame->grip_left());
584 openbox->removeClient(frame->grip_right());
585 // unregister for handling events
586 openbox->clearHandler(client->window());
587
588 // remove the window from our save set
589 XChangeSaveSet(**otk::display, client->window(), SetModeDelete);
590
591 // we dont want events no more
592 XSelectInput(**otk::display, client->window(), NoEventMask);
593
594 frame->hide();
595
596 // give the client its border back
597 client->toggleClientBorder(true);
598
599 // reparent the window out of the frame
600 frame->releaseClient();
601
602 #ifdef DEBUG
603 Window framewin = client->frame->window();
604 #endif
605 delete client->frame;
606 client->frame = 0;
607
608 // remove from the stacking order
609 _stacking.remove(client);
610
611 // remove from the screen's list
612 clients.remove(client);
613
614 // once the client is out of the list, update our strut to remove it's
615 // influence
616 updateStrut();
617
618 // unfocus the client (calls the focus callbacks)
619 client->unfocus();
620
621 #ifdef DEBUG
622 printf("Unmanaged window 0x%lx frame 0x%lx\n", client->window(), framewin);
623 #endif
624
625 delete client;
626
627 // update the root properties
628 changeClientList();
629 }
630
631 void Screen::lowerWindow(Client *client)
632 {
633 Window wins[2]; // only ever restack 2 windows.
634
635 assert(!_stacking.empty()); // this would be bad
636
637 Client::List::iterator it = --_stacking.end();
638 const Client::List::iterator end = _stacking.begin();
639
640 for (; it != end && (*it)->layer() < client->layer(); --it);
641 if (*it == client) return; // already the bottom, return
642
643 wins[0] = (*it)->frame->window();
644 wins[1] = client->frame->window();
645
646 _stacking.remove(client);
647 _stacking.insert(++it, client);
648
649 XRestackWindows(**otk::display, wins, 2);
650 changeStackingList();
651 }
652
653 void Screen::raiseWindow(Client *client)
654 {
655 Window wins[2]; // only ever restack 2 windows.
656
657 assert(!_stacking.empty()); // this would be bad
658
659 // remove the client before looking so we can't run into ourselves
660 _stacking.remove(client);
661
662 Client::List::iterator it = _stacking.begin();
663 const Client::List::iterator end = _stacking.end();
664
665 // the stacking list is from highest to lowest
666 for (; it != end && (*it)->layer() > client->layer(); ++it);
667
668 /*
669 if our new position is the top, we want to stack under the _focuswindow
670 otherwise, we want to stack under the previous window in the stack.
671 */
672 wins[0] = (it == _stacking.begin() ? _focuswindow :
673 ((*(--Client::List::const_iterator(it)))->frame->window()));
674 wins[1] = client->frame->window();
675
676 _stacking.insert(it, client);
677
678 XRestackWindows(**otk::display, wins, 2);
679 changeStackingList();
680 }
681
682 void Screen::changeDesktop(long desktop)
683 {
684 if (!(desktop >= 0 && desktop < _num_desktops)) return;
685
686 printf("Moving to desktop %ld\n", desktop);
687
688 long old = _desktop;
689
690 _desktop = desktop;
691 otk::Property::set(_info->rootWindow(),
692 otk::Property::atoms.net_current_desktop,
693 otk::Property::atoms.cardinal, _desktop);
694
695 if (old == _desktop) return;
696
697 Client::List::iterator it, end = clients.end();
698 for (it = clients.begin(); it != end; ++it) {
699 if ((*it)->desktop() == old) {
700 (*it)->frame->hide();
701 } else if ((*it)->desktop() == _desktop) {
702 (*it)->frame->show();
703 }
704 }
705
706 // force the callbacks to fire
707 if (!openbox->focusedClient())
708 openbox->setFocusedClient(0);
709 }
710
711 void Screen::changeNumDesktops(long num)
712 {
713 assert(num > 0);
714
715 if (!(num > 0)) return;
716
717 // XXX: move windows on desktops that will no longer exist!
718
719 _num_desktops = num;
720 otk::Property::set(_info->rootWindow(),
721 otk::Property::atoms.net_number_of_desktops,
722 otk::Property::atoms.cardinal, _num_desktops);
723
724 // set the viewport hint
725 unsigned long *viewport = new unsigned long[_num_desktops * 2];
726 memset(viewport, 0, sizeof(unsigned long) * _num_desktops * 2);
727 otk::Property::set(_info->rootWindow(),
728 otk::Property::atoms.net_desktop_viewport,
729 otk::Property::atoms.cardinal,
730 viewport, _num_desktops * 2);
731 delete [] viewport;
732
733 // update the work area hint
734 changeWorkArea();
735 }
736
737
738 void Screen::updateDesktopNames()
739 {
740 unsigned long num = (unsigned) -1;
741
742 if (!otk::Property::get(_info->rootWindow(),
743 otk::Property::atoms.net_desktop_names,
744 otk::Property::utf8, &num, &_desktop_names))
745 _desktop_names.clear();
746 while ((long)_desktop_names.size() < _num_desktops)
747 _desktop_names.push_back("Unnamed");
748 }
749
750
751 void Screen::setDesktopName(long i, const otk::ustring &name)
752 {
753 assert(i >= 0);
754
755 if (i >= _num_desktops) return;
756
757 otk::Property::StringVect newnames = _desktop_names;
758 newnames[i] = name;
759 otk::Property::set(_info->rootWindow(),
760 otk::Property::atoms.net_desktop_names,
761 otk::Property::utf8, newnames);
762 }
763
764
765 void Screen::propertyHandler(const XPropertyEvent &e)
766 {
767 otk::EventHandler::propertyHandler(e);
768
769 // compress changes to a single property into a single change
770 XEvent ce;
771 while (XCheckTypedEvent(**otk::display, e.type, &ce)) {
772 // XXX: it would be nice to compress ALL changes to a property, not just
773 // changes in a row without other props between.
774 if (ce.xproperty.atom != e.atom) {
775 XPutBackEvent(**otk::display, &ce);
776 break;
777 }
778 }
779
780 if (e.atom == otk::Property::atoms.net_desktop_names)
781 updateDesktopNames();
782 }
783
784
785 void Screen::clientMessageHandler(const XClientMessageEvent &e)
786 {
787 otk::EventHandler::clientMessageHandler(e);
788
789 if (e.format != 32) return;
790
791 if (e.message_type == otk::Property::atoms.net_current_desktop) {
792 changeDesktop(e.data.l[0]);
793 } else if (e.message_type == otk::Property::atoms.net_number_of_desktops) {
794 changeNumDesktops(e.data.l[0]);
795 }
796 // XXX: so many client messages to handle here! ..or not.. they go to clients
797 }
798
799
800 void Screen::mapRequestHandler(const XMapRequestEvent &e)
801 {
802 otk::EventHandler::mapRequestHandler(e);
803
804 #ifdef DEBUG
805 printf("MapRequest for 0x%lx\n", e.window);
806 #endif // DEBUG
807
808 Client *c = openbox->findClient(e.window);
809 if (c) {
810 #ifdef DEBUG
811 printf("DEBUG: MAP REQUEST CAUGHT IN SCREEN. IGNORED.\n");
812 #endif
813 } else
814 manageWindow(e.window);
815 }
816
817 }
This page took 0.076908 seconds and 5 git commands to generate.