ba65fcbbedd3b0f2b2c55cf2754d36c81f2070f5
[monky] / src / x11.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
14  *      (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #include "config.h"
32 #include "conky.h"
33 #include "logging.h"
34 #include "common.h"
35
36 #include "x11.h"
37 #include <X11/Xlib.h>
38 #include <X11/Xatom.h>
39 #include <X11/Xmd.h>
40 #include <X11/Xutil.h>
41 #ifdef IMLIB2
42 #include "imlib2.h"
43 #endif /* IMLIB2 */
44
45 #ifdef XFT
46 #include <X11/Xft/Xft.h>
47 int use_xft;
48 #endif
49
50 #ifdef HAVE_XDBE
51 int use_xdbe;
52 #endif
53
54 #ifdef USE_ARGB
55 int use_argb_visual;
56 int have_argb_visual;
57 #endif /* USE_ARGB */
58 int own_window_argb_value;
59
60 /* some basic X11 stuff */
61 Display *display = NULL;
62 int display_width;
63 int display_height;
64 int screen;
65 static int set_transparent;
66 static int background_colour;
67
68 /* workarea from _NET_WORKAREA, this is where window / text is aligned */
69 int workarea[4];
70
71 /* Window stuff */
72 struct conky_window window;
73 char window_created = 0;
74
75 /* local prototypes */
76 static void update_workarea(void);
77 static Window find_desktop_window(Window *p_root, Window *p_desktop);
78 static Window find_subwindow(Window win, int w, int h);
79
80 /* X11 initializer */
81 void init_X11(const char *disp)
82 {
83         if (!display) {
84                 if ((display = XOpenDisplay(disp)) == NULL) {
85                         CRIT_ERR(NULL, NULL, "can't open display: %s", XDisplayName(disp));
86                 }
87         }
88
89         screen = DefaultScreen(display);
90         display_width = DisplayWidth(display, screen);
91         display_height = DisplayHeight(display, screen);
92
93         get_x11_desktop_info(display, 0);
94
95         update_workarea();
96 }
97
98 static void update_workarea(void)
99 {
100         /* default work area is display */
101         workarea[0] = 0;
102         workarea[1] = 0;
103         workarea[2] = display_width;
104         workarea[3] = display_height;
105 }
106
107 /* Find root window and desktop window.
108  * Return desktop window on success,
109  * and set root and desktop byref return values.
110  * Return 0 on failure. */
111 static Window find_desktop_window(Window *p_root, Window *p_desktop)
112 {
113         Atom type;
114         int format, i;
115         unsigned long nitems, bytes;
116         unsigned int n;
117         Window root = RootWindow(display, screen);
118         Window win = root;
119         Window troot, parent, *children;
120         unsigned char *buf = NULL;
121
122         if (!p_root || !p_desktop) {
123                 return 0;
124         }
125
126         /* some window managers set __SWM_VROOT to some child of root window */
127
128         XQueryTree(display, root, &troot, &parent, &children, &n);
129         for (i = 0; i < (int) n; i++) {
130                 if (XGetWindowProperty(display, children[i], ATOM(__SWM_VROOT), 0, 1,
131                                         False, XA_WINDOW, &type, &format, &nitems, &bytes, &buf)
132                                 == Success && type == XA_WINDOW) {
133                         win = *(Window *) buf;
134                         XFree(buf);
135                         XFree(children);
136                         fprintf(stderr,
137                                         PACKAGE_NAME": desktop window (%lx) found from __SWM_VROOT property\n",
138                                         win);
139                         fflush(stderr);
140                         *p_root = win;
141                         *p_desktop = win;
142                         return win;
143                 }
144
145                 if (buf) {
146                         XFree(buf);
147                         buf = 0;
148                 }
149         }
150         XFree(children);
151
152         /* get subwindows from root */
153         win = find_subwindow(root, -1, -1);
154
155         update_workarea();
156
157         win = find_subwindow(win, workarea[2], workarea[3]);
158
159         if (buf) {
160                 XFree(buf);
161                 buf = 0;
162         }
163
164         if (win != root) {
165                 fprintf(stderr,
166                                 PACKAGE_NAME": desktop window (%lx) is subwindow of root window (%lx)\n",
167                                 win, root);
168         } else {
169                 fprintf(stderr, PACKAGE_NAME": desktop window (%lx) is root window\n", win);
170         }
171
172         fflush(stderr);
173
174         *p_root = root;
175         *p_desktop = win;
176
177         return win;
178 }
179
180 static int colour_set = -1;
181 /* if no argb visual is configured sets background to ParentRelative for the Window and all parents,
182    else real transparency is used */
183 void set_transparent_background(Window win, int alpha)
184 {
185         (void)alpha; /* disable warnings when unused */
186
187 #ifdef USE_ARGB
188         if (have_argb_visual) {
189                 // real transparency
190                 if (set_transparent) {
191                         XSetWindowBackground(display, win, 0x00);
192                 } else if (colour_set != background_colour) {
193                         XSetWindowBackground(display, win,
194                                 background_colour | (alpha << 24));
195                         colour_set = background_colour;
196                 }
197         } else {
198 #endif /* USE_ARGB */
199         // pseudo transparency
200
201         if (set_transparent) {
202                 Window parent = win;
203                 unsigned int i;
204
205                 for (i = 0; i < 50 && parent != RootWindow(display, screen); i++) {
206                         Window r, *children;
207                         unsigned int n;
208
209                         XSetWindowBackgroundPixmap(display, parent, ParentRelative);
210
211                         XQueryTree(display, parent, &r, &parent, &children, &n);
212                         XFree(children);
213                 }
214         } else if (colour_set != background_colour) {
215                 XSetWindowBackground(display, win, background_colour);
216                 colour_set = background_colour;
217         }
218 #ifdef USE_ARGB
219         }
220 #endif /* USE_ARGB */
221 }
222
223 #ifdef USE_ARGB
224 static int get_argb_visual(Visual** visual, int *depth) {
225         /* code from gtk project, gdk_screen_get_rgba_visual */
226         XVisualInfo visual_template;
227         XVisualInfo *visual_list;
228         int nxvisuals = 0, i;
229
230         visual_template.screen = screen;
231         visual_list = XGetVisualInfo (display, VisualScreenMask,
232                                 &visual_template, &nxvisuals);
233         for (i = 0; i < nxvisuals; i++) {
234                 if (visual_list[i].depth == 32 &&
235                          (visual_list[i].red_mask   == 0xff0000 &&
236                           visual_list[i].green_mask == 0x00ff00 &&
237                           visual_list[i].blue_mask  == 0x0000ff)) {
238                         *visual = visual_list[i].visual;
239                         *depth = visual_list[i].depth;
240                         DBGP("Found ARGB Visual");
241                         XFree(visual_list);
242                         return 1;
243                 }
244         }
245         // no argb visual available
246         DBGP("No ARGB Visual found");
247         XFree(visual_list);
248         return 0;
249 }
250 #endif /* USE_ARGB */
251
252 void destroy_window(void)
253 {
254 #ifdef XFT
255         if(window.xftdraw) {
256                 XftDrawDestroy(window.xftdraw);
257         }
258 #endif
259         if(window.gc) {
260                 XFreeGC(display, window.gc);
261         }
262         memset(&window, 0, sizeof(struct conky_window));
263         colour_set = -1;
264 }
265
266 void init_window(int own_window, int w, int h, int set_trans, int back_colour,
267                 char **argv, int argc)
268 {
269         /* There seems to be some problems with setting transparent background
270          * (on fluxbox this time). It doesn't happen always and I don't know why it
271          * happens but I bet the bug is somewhere here. */
272         set_transparent = set_trans;
273         background_colour = back_colour;
274         window_created = 1;
275
276 #ifdef OWN_WINDOW
277         if (own_window) {
278                 int depth = 0, flags;
279                 Visual *visual = NULL;
280
281                 if (!find_desktop_window(&window.root, &window.desktop)) {
282                         return;
283                 }
284
285 #ifdef USE_ARGB
286                 if (use_argb_visual && get_argb_visual(&visual, &depth)) {
287                         have_argb_visual = 1;
288                         window.visual = visual;
289                         window.colourmap = XCreateColormap(display,
290                                 DefaultRootWindow(display), window.visual, AllocNone);
291                 } else {
292 #endif /* USE_ARGB */
293                         window.visual = DefaultVisual(display, screen);
294                         window.colourmap = DefaultColormap(display, screen);
295                         depth = CopyFromParent;
296                         visual = CopyFromParent;
297 #ifdef USE_ARGB
298                 }
299 #endif /* USE_ARGB */
300
301                 if (window.type == TYPE_OVERRIDE) {
302
303                         /* An override_redirect True window.
304                          * No WM hints or button processing needed. */
305                         XSetWindowAttributes attrs = { ParentRelative, 0L, 0, 0L, 0, 0,
306                                 Always, 0L, 0L, False, StructureNotifyMask | ExposureMask, 0L,
307                                 True, 0, 0 };
308 #ifdef USE_ARGB
309                         if (have_argb_visual) {
310                                 attrs.colormap = window.colourmap;
311                                 flags = CWBorderPixel | CWColormap | CWOverrideRedirect;
312                         } else {
313 #endif /* USE_ARGB */
314                                 flags = CWBackPixel | CWOverrideRedirect;
315 #ifdef USE_ARGB
316                         }
317 #endif /* USE_ARGB */
318
319                         /* Parent is desktop window (which might be a child of root) */
320                         window.window = XCreateWindow(display, window.desktop, window.x,
321                                         window.y, w, h, 0, depth, InputOutput, visual,
322                                         flags, &attrs);
323
324                         XLowerWindow(display, window.window);
325
326                         fprintf(stderr, PACKAGE_NAME": window type - override\n");
327                         fflush(stderr);
328                 } else { /* window.type != TYPE_OVERRIDE */
329
330                         /* A window managed by the window manager.
331                          * Process hints and buttons. */
332                         XSetWindowAttributes attrs = { ParentRelative, 0L, 0, 0L, 0, 0,
333                                 Always, 0L, 0L, False, StructureNotifyMask | ExposureMask |
334                                         ButtonPressMask | ButtonReleaseMask, 0L, False, 0, 0 };
335
336                         XClassHint classHint;
337                         XWMHints wmHint;
338                         Atom xa;
339
340 #ifdef USE_ARGB
341                         if (have_argb_visual) {
342                                 attrs.colormap = window.colourmap;
343                                 flags = CWBorderPixel | CWColormap | CWOverrideRedirect;
344                         } else {
345 #endif /* USE_ARGB */
346                                 flags = CWBackPixel | CWOverrideRedirect;
347 #ifdef USE_ARGB
348                         }
349 #endif /* USE_ARGB */
350
351                         if (window.type == TYPE_DOCK) {
352                                 window.x = window.y = 0;
353                         }
354                         /* Parent is root window so WM can take control */
355                         window.window = XCreateWindow(display, window.root, window.x,
356                                         window.y, w, h, 0, depth, InputOutput, visual,
357                                         flags, &attrs);
358
359                         classHint.res_name = window.class_name;
360                         classHint.res_class = classHint.res_name;
361
362                         wmHint.flags = InputHint | StateHint;
363                         /* allow decorated windows to be given input focus by WM */
364                         wmHint.input =
365                                 TEST_HINT(window.hints, HINT_UNDECORATED) ? False : True;
366                         if (window.type == TYPE_DOCK || window.type == TYPE_PANEL) {
367                                 wmHint.initial_state = WithdrawnState;
368                         } else {
369                                 wmHint.initial_state = NormalState;
370                         }
371
372                         XmbSetWMProperties(display, window.window, NULL, NULL, argv,
373                                         argc, NULL, &wmHint, &classHint);
374                         XStoreName(display, window.window, window.title);
375
376                         /* Sets an empty WM_PROTOCOLS property */
377                         XSetWMProtocols(display, window.window, NULL, 0);
378
379                         /* Set window type */
380                         if ((xa = ATOM(_NET_WM_WINDOW_TYPE)) != None) {
381                                 Atom prop;
382
383                                 switch (window.type) {
384                                         case TYPE_DESKTOP:
385                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_DESKTOP);
386                                                 fprintf(stderr, PACKAGE_NAME": window type - desktop\n");
387                                                 fflush(stderr);
388                                                 break;
389                                         case TYPE_DOCK:
390                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_DOCK);
391                                                 fprintf(stderr, PACKAGE_NAME": window type - dock\n");
392                                                 fflush(stderr);
393                                                 break;
394                                         case TYPE_PANEL:
395                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_DOCK);
396                                                 fprintf(stderr, PACKAGE_NAME": window type - panel\n");
397                                                 fflush(stderr);
398                                                 break;
399                                         case TYPE_NORMAL:
400                                         default:
401                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_NORMAL);
402                                                 fprintf(stderr, PACKAGE_NAME": window type - normal\n");
403                                                 fflush(stderr);
404                                                 break;
405                                 }
406                                 XChangeProperty(display, window.window, xa, XA_ATOM, 32,
407                                                 PropModeReplace, (unsigned char *) &prop, 1);
408                         }
409
410                         /* Set desired hints */
411
412                         /* Window decorations */
413                         if (TEST_HINT(window.hints, HINT_UNDECORATED)) {
414                                 /* fprintf(stderr, PACKAGE_NAME": hint - undecorated\n");
415                                    fflush(stderr); */
416
417                                 xa = ATOM(_MOTIF_WM_HINTS);
418                                 if (xa != None) {
419                                         long prop[5] = { 2, 0, 0, 0, 0 };
420                                         XChangeProperty(display, window.window, xa, xa, 32,
421                                                         PropModeReplace, (unsigned char *) prop, 5);
422                                 }
423                         }
424
425                         /* Below other windows */
426                         if (TEST_HINT(window.hints, HINT_BELOW)) {
427                                 /* fprintf(stderr, PACKAGE_NAME": hint - below\n");
428                                    fflush(stderr); */
429
430                                 xa = ATOM(_WIN_LAYER);
431                                 if (xa != None) {
432                                         long prop = 0;
433
434                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
435                                                         PropModeAppend, (unsigned char *) &prop, 1);
436                                 }
437
438                                 xa = ATOM(_NET_WM_STATE);
439                                 if (xa != None) {
440                                         Atom xa_prop = ATOM(_NET_WM_STATE_BELOW);
441
442                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
443                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
444                                 }
445                         }
446
447                         /* Above other windows */
448                         if (TEST_HINT(window.hints, HINT_ABOVE)) {
449                                 /* fprintf(stderr, PACKAGE_NAME": hint - above\n");
450                                    fflush(stderr); */
451
452                                 xa = ATOM(_WIN_LAYER);
453                                 if (xa != None) {
454                                         long prop = 6;
455
456                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
457                                                         PropModeAppend, (unsigned char *) &prop, 1);
458                                 }
459
460                                 xa = ATOM(_NET_WM_STATE);
461                                 if (xa != None) {
462                                         Atom xa_prop = ATOM(_NET_WM_STATE_ABOVE);
463
464                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
465                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
466                                 }
467                         }
468
469                         /* Sticky */
470                         if (TEST_HINT(window.hints, HINT_STICKY)) {
471                                 /* fprintf(stderr, PACKAGE_NAME": hint - sticky\n");
472                                    fflush(stderr); */
473
474                                 xa = ATOM(_NET_WM_DESKTOP);
475                                 if (xa != None) {
476                                         CARD32 xa_prop = 0xFFFFFFFF;
477
478                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
479                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
480                                 }
481
482                                 xa = ATOM(_NET_WM_STATE);
483                                 if (xa != None) {
484                                         Atom xa_prop = ATOM(_NET_WM_STATE_STICKY);
485
486                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
487                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
488                                 }
489                         }
490
491                         /* Skip taskbar */
492                         if (TEST_HINT(window.hints, HINT_SKIP_TASKBAR)) {
493                                 /* fprintf(stderr, PACKAGE_NAME": hint - skip_taskbar\n");
494                                    fflush(stderr); */
495
496                                 xa = ATOM(_NET_WM_STATE);
497                                 if (xa != None) {
498                                         Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_TASKBAR);
499
500                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
501                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
502                                 }
503                         }
504
505                         /* Skip pager */
506                         if (TEST_HINT(window.hints, HINT_FULLSCREEN)) {
507                                 /* fprintf(stderr, PACKAGE_NAME": hint - skip_pager\n");
508                                    fflush(stderr); */
509
510                                 xa = ATOM(_NET_WM_STATE);
511                                 if (xa != None) {
512                                         Atom xa_prop = ATOM(_NET_WM_STATE_FULLSCREEN);
513
514                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
515                                                         PropModeAppend, (unsigned char *) &xa_prop, 1);
516                                 }
517                         }
518                 }
519
520                 fprintf(stderr, PACKAGE_NAME": drawing to created window (0x%lx)\n",
521                                 window.window);
522                 fflush(stderr);
523
524                 XMapWindow(display, window.window);
525
526         } else
527 #endif /* OWN_WINDOW */
528         {
529                 XWindowAttributes attrs;
530
531                 if (!window.window) {
532                         window.window = find_desktop_window(&window.root, &window.desktop);
533                 }
534                 window.visual = DefaultVisual(display, screen);
535                 window.colourmap = DefaultColormap(display, screen);
536
537                 if (XGetWindowAttributes(display, window.window, &attrs)) {
538                         window.width = attrs.width;
539                         window.height = attrs.height;
540                 }
541
542                 fprintf(stderr, PACKAGE_NAME": drawing to desktop window\n");
543         }
544
545         /* Drawable is same as window. This may be changed by double buffering. */
546         window.drawable = window.window;
547
548 #ifdef HAVE_XDBE
549         if (use_xdbe) {
550                 int major, minor;
551
552                 if (!XdbeQueryExtension(display, &major, &minor)) {
553                         use_xdbe = 0;
554                 } else {
555                         window.back_buffer = XdbeAllocateBackBufferName(display,
556                                         window.window, XdbeBackground);
557                         if (window.back_buffer != None) {
558                                 window.drawable = window.back_buffer;
559                                 fprintf(stderr, PACKAGE_NAME": drawing to double buffer\n");
560                         } else {
561                                 use_xdbe = 0;
562                         }
563                 }
564                 if (!use_xdbe) {
565                         NORM_ERR("failed to set up double buffer");
566                 }
567         }
568         if (!use_xdbe) {
569                 fprintf(stderr, PACKAGE_NAME": drawing to single buffer\n");
570         }
571 #endif
572 #ifdef IMLIB2
573         {
574                 cimlib_init(display, window.drawable, window.visual, window.colourmap);
575         }
576 #endif /* IMLIB2 */
577         XFlush(display);
578
579         XSelectInput(display, window.window, ExposureMask | PropertyChangeMask
580 #ifdef OWN_WINDOW
581                         | (own_window ? (StructureNotifyMask |
582                                         ButtonPressMask | ButtonReleaseMask) : 0)
583 #endif
584                         );
585 }
586
587 static Window find_subwindow(Window win, int w, int h)
588 {
589         unsigned int i, j;
590         Window troot, parent, *children;
591         unsigned int n;
592
593         /* search subwindows with same size as display or work area */
594
595         for (i = 0; i < 10; i++) {
596                 XQueryTree(display, win, &troot, &parent, &children, &n);
597
598                 for (j = 0; j < n; j++) {
599                         XWindowAttributes attrs;
600
601                         if (XGetWindowAttributes(display, children[j], &attrs)) {
602                                 /* Window must be mapped and same size as display or
603                                  * work space */
604                                 if (attrs.map_state != 0 && ((attrs.width == display_width
605                                                                 && attrs.height == display_height)
606                                                         || (attrs.width == w && attrs.height == h))) {
607                                         win = children[j];
608                                         break;
609                                 }
610                         }
611                 }
612
613                 XFree(children);
614                 if (j == n) {
615                         break;
616                 }
617         }
618
619         return win;
620 }
621
622 void create_gc(void)
623 {
624         XGCValues values;
625
626         values.graphics_exposures = 0;
627         values.function = GXcopy;
628         window.gc = XCreateGC(display, window.drawable,
629                         GCFunction | GCGraphicsExposures, &values);
630 }
631
632 //Get current desktop number
633 static inline void get_x11_desktop_current(Display *current_display, Window root, Atom atom)
634 {
635         Atom actual_type;
636         int actual_format;
637         unsigned long nitems;
638         unsigned long bytes_after;
639         unsigned char *prop = NULL;
640         struct information *current_info = &info;
641
642         if (atom == None) return;
643
644         if ( (XGetWindowProperty( current_display, root, atom,
645                                         0, 1L, False, XA_CARDINAL,
646                                         &actual_type, &actual_format, &nitems,
647                                         &bytes_after, &prop ) == Success ) &&
648                         (actual_type == XA_CARDINAL) &&
649                         (nitems == 1L) && (actual_format == 32) ) {
650                 current_info->x11.desktop.current = prop[0]+1;
651         }
652         if(prop) {
653                 XFree(prop);
654         }
655 }
656
657 //Get total number of available desktops
658 static inline void get_x11_desktop_number(Display *current_display, Window root, Atom atom)
659 {
660         Atom actual_type;
661         int actual_format;
662         unsigned long nitems;
663         unsigned long bytes_after;
664         unsigned char *prop = NULL;
665         struct information *current_info = &info;
666
667         if (atom == None) return;
668
669         if ( (XGetWindowProperty( current_display, root, atom,
670                                         0, 1L, False, XA_CARDINAL,
671                                         &actual_type, &actual_format, &nitems,
672                                         &bytes_after, &prop ) == Success ) &&
673                         (actual_type == XA_CARDINAL) &&
674                         (nitems == 1L) && (actual_format == 32) ) {
675                 current_info->x11.desktop.number = prop[0];
676         }
677         if(prop) {
678                 XFree(prop);
679         }
680 }
681
682 //Get all desktop names
683 static inline void get_x11_desktop_names(Display *current_display, Window root, Atom atom)
684 {
685         Atom actual_type;
686         int actual_format;
687         unsigned long nitems;
688         unsigned long bytes_after;
689         unsigned char *prop = NULL;
690         struct information *current_info = &info;
691
692         if (atom == None) return;
693
694         if ( (XGetWindowProperty( current_display, root, atom,
695                                         0, (~0L), False, ATOM(UTF8_STRING),
696                                         &actual_type, &actual_format, &nitems,
697                                         &bytes_after, &prop ) == Success ) &&
698                         (actual_type == ATOM(UTF8_STRING)) &&
699                         (nitems > 0L) && (actual_format == 8) ) {
700
701                 if(current_info->x11.desktop.all_names) {
702                         free(current_info->x11.desktop.all_names);
703                         current_info->x11.desktop.all_names = NULL;
704                 }
705                 current_info->x11.desktop.all_names = malloc(nitems*sizeof(char));
706                 memcpy(current_info->x11.desktop.all_names, prop, nitems);
707                 current_info->x11.desktop.nitems = nitems;
708         }
709         if(prop) {
710                 XFree(prop);
711         }
712 }
713
714 //Get current desktop name
715 static inline void get_x11_desktop_current_name(char *names)
716 {
717         struct information *current_info = &info;
718         unsigned int i = 0, j = 0;
719         int k = 0;
720
721         while ( i < current_info->x11.desktop.nitems ) {
722                 if ( names[i++] == '\0' ) {
723                         if ( ++k == current_info->x11.desktop.current ) {
724                                 if (current_info->x11.desktop.name) {
725                                         free(current_info->x11.desktop.name);
726                                         current_info->x11.desktop.name = NULL;
727                                 }
728                                 current_info->x11.desktop.name = malloc((i-j)*sizeof(char));
729                                 //desktop names can be empty but should always be not null
730                                 strcpy( current_info->x11.desktop.name, (char *)&names[j] );
731                                 break;
732                         }
733                         j = i;
734                 }
735         }
736 }
737
738 void get_x11_desktop_info(Display *current_display, Atom atom)
739 {
740         Window root;
741         static Atom atom_current, atom_number, atom_names;
742         struct information *current_info = &info;
743         XWindowAttributes window_attributes;
744
745         root = RootWindow(current_display, current_info->x11.monitor.current);
746
747         /* Check if we initialise else retrieve changed property */
748         if (atom == 0) {
749                 atom_current = XInternAtom(current_display, "_NET_CURRENT_DESKTOP", True);
750                 atom_number  = XInternAtom(current_display, "_NET_NUMBER_OF_DESKTOPS", True);
751                 atom_names   = XInternAtom(current_display, "_NET_DESKTOP_NAMES", True);
752                 get_x11_desktop_current(current_display, root, atom_current);
753                 get_x11_desktop_number(current_display, root, atom_number);
754                 get_x11_desktop_names(current_display, root, atom_names);
755                 get_x11_desktop_current_name(current_info->x11.desktop.all_names);
756
757                 /* Set the PropertyChangeMask on the root window, if not set */
758                 XGetWindowAttributes(display, root, &window_attributes);
759                 if (!(window_attributes.your_event_mask & PropertyChangeMask)) {
760                         XSetWindowAttributes attributes;
761                         attributes.event_mask = window_attributes.your_event_mask | PropertyChangeMask;
762                         XChangeWindowAttributes(display, root, CWEventMask, &attributes);
763                         XGetWindowAttributes(display, root, &window_attributes);
764                 }
765         } else {
766                 if (atom == atom_current) {
767                         get_x11_desktop_current(current_display, root, atom_current);
768                         get_x11_desktop_current_name(current_info->x11.desktop.all_names);
769                 } else if (atom == atom_number) {
770                         get_x11_desktop_number(current_display, root, atom_number);
771                 } else if (atom == atom_names) {
772                         get_x11_desktop_names(current_display, root, atom_names);
773                         get_x11_desktop_current_name(current_info->x11.desktop.all_names);
774                 }
775         }
776 }
777
778 int update_x11info(void)
779 {
780         struct information *current_info = &info;
781         if (x_initialised != YES)
782                 return 0;
783         current_info->x11.monitor.number = XScreenCount(display);
784         current_info->x11.monitor.current = XDefaultScreen(display);
785         return 0;
786 }
787
788 #ifdef OWN_WINDOW
789 /* reserve window manager space */
790 void set_struts(int sidenum)
791 {
792         Atom strut;
793         if ((strut = ATOM(_NET_WM_STRUT)) != None) {
794                 /* reserve space at left, right, top, bottom */
795                 signed long sizes[12] = {0};
796                 int i;
797
798                 /* define strut depth */
799                 switch (sidenum) {
800                         case 0:
801                                 /* left side */
802                                 sizes[0] = window.x + window.width;
803                                 break;
804                         case 1:
805                                 /* right side */
806                                 sizes[1] = display_width - window.x;
807                                 break;
808                         case 2:
809                                 /* top side */
810                                 sizes[2] = window.y + window.height;
811                                 break;
812                         case 3:
813                                 /* bottom side */
814                                 sizes[3] = display_height - window.y;
815                                 break;
816                 }
817
818                 /* define partial strut length */
819                 if (sidenum <= 1) {
820                         sizes[4 + (sidenum*2)] = window.y;
821                         sizes[5 + (sidenum*2)] = window.y + window.height;
822                 } else if (sidenum <= 3) {
823                         sizes[4 + (sidenum*2)] = window.x;
824                         sizes[5 + (sidenum*2)] = window.x + window.width;
825                 }
826
827                 /* check constraints */
828                 for (i = 0; i < 12; i++) {
829                         if (sizes[i] < 0) {
830                                 sizes[i] = 0;
831                         } else {
832                                 if (i <= 1 || i >= 8) {
833                                         if (sizes[i] > display_width) {
834                                                 sizes[i] = display_width;
835                                         }
836                                 } else {
837                                         if (sizes[i] > display_height) {
838                                                 sizes[i] = display_height;
839                                         }
840                                 }
841                         }
842                 }
843
844                 XChangeProperty(display, window.window, strut, XA_CARDINAL, 32,
845                                 PropModeReplace, (unsigned char *) &sizes, 4);
846
847                 if ((strut = ATOM(_NET_WM_STRUT_PARTIAL)) != None) {
848                         XChangeProperty(display, window.window, strut, XA_CARDINAL, 32,
849                                         PropModeReplace, (unsigned char *) &sizes, 12);
850                 }
851         }
852 }
853 #endif /* OWN_WINDOW */
854
855 #ifdef HAVE_XDBE
856 void xdbe_swap_buffers(void)
857 {
858         if (use_xdbe) {
859                 XdbeSwapInfo swap;
860
861                 swap.swap_window = window.window;
862                 swap.swap_action = XdbeBackground;
863                 XdbeSwapBuffers(display, &swap, 1);
864         }
865 }
866 #endif /* HAVE_XDBE */
867