Some work on imlib2 stuff.
[monky] / src / x11.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Any original torsmo code is licensed under the BSD license
4  *
5  * All code written since the fork of torsmo is licensed under the GPL
6  *
7  * Please see COPYING for details
8  *
9  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
10  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
11  *      (see AUTHORS)
12  * All rights reserved.
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  *
26  */
27
28 #include "config.h"
29 #include "conky.h"
30 #include "logging.h"
31 #include "common.h"
32
33 #include "x11.h"
34 #include <X11/Xlib.h>
35 #include <X11/Xatom.h>
36 #include <X11/Xmd.h>
37 #include <X11/Xutil.h>
38 #ifdef IMLIB2
39 #include "imlib2.h"
40 #endif /* IMLIB2 */
41
42 #ifdef XFT
43 #include <X11/Xft/Xft.h>
44 int use_xft = 0;
45 #endif
46
47 #ifdef HAVE_XDBE
48 int use_xdbe;
49 #endif
50
51 /* some basic X11 stuff */
52 Display *display;
53 int display_width;
54 int display_height;
55 int screen;
56 static int set_transparent;
57 static int background_colour;
58
59 /* workarea from _NET_WORKAREA, this is where window / text is aligned */
60 int workarea[4];
61
62 /* Window stuff */
63 struct conky_window window;
64
65 /* local prototypes */
66 static void update_workarea(void);
67 static Window find_desktop_window(Window *p_root, Window *p_desktop);
68 static Window find_subwindow(Window win, int w, int h);
69
70 /* X11 initializer */
71 void init_X11(const char *disp)
72 {
73         if ((display = XOpenDisplay(disp)) == NULL) {
74                 CRIT_ERR("can't open display: %s", XDisplayName(0));
75         }
76
77         screen = DefaultScreen(display);
78         display_width = DisplayWidth(display, screen);
79         display_height = DisplayHeight(display, screen);
80
81         update_workarea();
82 }
83
84 static void update_workarea(void)
85 {
86         Window root = RootWindow(display, screen);
87         unsigned long nitems, bytes;
88         unsigned char *buf = NULL;
89         Atom type;
90         int format;
91
92         /* default work area is display */
93         workarea[0] = 0;
94         workarea[1] = 0;
95         workarea[2] = display_width;
96         workarea[3] = display_height;
97
98         /* get current desktop */
99         if (XGetWindowProperty(display, root, ATOM(_NET_CURRENT_DESKTOP), 0, 1,
100                         False, XA_CARDINAL, &type, &format, &nitems, &bytes, &buf)
101                         == Success && type == XA_CARDINAL && nitems > 0) {
102
103                 // Currently unused
104                 /* long desktop = *(long *) buf; */
105
106                 XFree(buf);
107                 buf = 0;
108         }
109
110         if (buf) {
111                 XFree(buf);
112                 buf = 0;
113         }
114 }
115
116 /* Find root window and desktop window.
117  * Return desktop window on success,
118  * and set root and desktop byref return values.
119  * Return 0 on failure. */
120 static Window find_desktop_window(Window *p_root, Window *p_desktop)
121 {
122         Atom type;
123         int format, i;
124         unsigned long nitems, bytes;
125         unsigned int n;
126         Window root = RootWindow(display, screen);
127         Window win = root;
128         Window troot, parent, *children;
129         unsigned char *buf = NULL;
130
131         if (!p_root || !p_desktop) {
132                 return 0;
133         }
134
135         /* some window managers set __SWM_VROOT to some child of root window */
136
137         XQueryTree(display, root, &troot, &parent, &children, &n);
138         for (i = 0; i < (int) n; i++) {
139                 if (XGetWindowProperty(display, children[i], ATOM(__SWM_VROOT), 0, 1,
140                                 False, XA_WINDOW, &type, &format, &nitems, &bytes, &buf)
141                                 == Success && type == XA_WINDOW) {
142                         win = *(Window *) buf;
143                         XFree(buf);
144                         XFree(children);
145                         fprintf(stderr,
146                                 PACKAGE_NAME": desktop window (%lx) found from __SWM_VROOT property\n",
147                                 win);
148                         fflush(stderr);
149                         *p_root = win;
150                         *p_desktop = win;
151                         return win;
152                 }
153
154                 if (buf) {
155                         XFree(buf);
156                         buf = 0;
157                 }
158         }
159         XFree(children);
160
161         /* get subwindows from root */
162         win = find_subwindow(root, -1, -1);
163
164         update_workarea();
165
166         win = find_subwindow(win, workarea[2], workarea[3]);
167
168         if (buf) {
169                 XFree(buf);
170                 buf = 0;
171         }
172
173         if (win != root) {
174                 fprintf(stderr,
175                         PACKAGE_NAME": desktop window (%lx) is subwindow of root window (%lx)\n",
176                         win, root);
177         } else {
178                 fprintf(stderr, PACKAGE_NAME": desktop window (%lx) is root window\n", win);
179         }
180
181         fflush(stderr);
182
183         *p_root = root;
184         *p_desktop = win;
185
186         return win;
187 }
188
189 /* sets background to ParentRelative for the Window and all parents */
190 void set_transparent_background(Window win)
191 {
192         static int colour_set = -1;
193
194         if (set_transparent) {
195                 Window parent = win;
196                 unsigned int i;
197
198                 for (i = 0; i < 50 && parent != RootWindow(display, screen); i++) {
199                         Window r, *children;
200                         unsigned int n;
201
202                         XSetWindowBackgroundPixmap(display, parent, ParentRelative);
203
204                         XQueryTree(display, parent, &r, &parent, &children, &n);
205                         XFree(children);
206                 }
207         } else if (colour_set != background_colour) {
208                 XSetWindowBackground(display, win, background_colour);
209                 colour_set = background_colour;
210         }
211         // XClearWindow(display, win); not sure why this was here
212 }
213
214 void init_window(int own_window, int w, int h, int set_trans, int back_colour,
215                 char **argv, int argc)
216 {
217         /* There seems to be some problems with setting transparent background
218          * (on fluxbox this time). It doesn't happen always and I don't know why it
219          * happens but I bet the bug is somewhere here. */
220         set_transparent = set_trans;
221         background_colour = back_colour;
222
223 #ifdef OWN_WINDOW
224         if (own_window) {
225
226                 if (!find_desktop_window(&window.root, &window.desktop)) {
227                         return;
228                 }
229
230                 if (window.type == TYPE_OVERRIDE) {
231
232                         /* An override_redirect True window.
233                          * No WM hints or button processing needed. */
234                         XSetWindowAttributes attrs = { ParentRelative, 0L, 0, 0L, 0, 0,
235                                 Always, 0L, 0L, False, StructureNotifyMask | ExposureMask, 0L,
236                                 True, 0, 0 };
237
238                         /* Parent is desktop window (which might be a child of root) */
239                         window.window = XCreateWindow(display, window.desktop, window.x,
240                                 window.y, w, h, 0, CopyFromParent, InputOutput, CopyFromParent,
241                                 CWBackPixel | CWOverrideRedirect, &attrs);
242
243                         XLowerWindow(display, window.window);
244
245                         fprintf(stderr, PACKAGE_NAME": window type - override\n");
246                         fflush(stderr);
247                 } else { /* window.type != TYPE_OVERRIDE */
248
249                         /* A window managed by the window manager.
250                          * Process hints and buttons. */
251                         XSetWindowAttributes attrs = { ParentRelative, 0L, 0, 0L, 0, 0,
252                                 Always, 0L, 0L, False, StructureNotifyMask | ExposureMask |
253                                 ButtonPressMask | ButtonReleaseMask, 0L, False, 0, 0 };
254
255                         XClassHint classHint;
256                         XWMHints wmHint;
257                         Atom xa;
258
259                         if (window.type == TYPE_DOCK) {
260                                 window.x = window.y = 0;
261                         }
262                         /* Parent is root window so WM can take control */
263                         window.window = XCreateWindow(display, window.root, window.x,
264                                 window.y, w, h, 0, CopyFromParent, InputOutput, CopyFromParent,
265                                 CWBackPixel | CWOverrideRedirect, &attrs);
266
267                         classHint.res_name = window.class_name;
268                         classHint.res_class = classHint.res_name;
269
270                         wmHint.flags = InputHint | StateHint;
271                         /* allow decorated windows to be given input focus by WM */
272                         wmHint.input =
273                                 TEST_HINT(window.hints, HINT_UNDECORATED) ? False : True;
274                         wmHint.initial_state = ((window.type == TYPE_DOCK) ?
275                                                 WithdrawnState : NormalState);
276
277                         XmbSetWMProperties(display, window.window, window.title, NULL, argv,
278                                 argc, NULL, &wmHint, &classHint);
279
280                         /* Sets an empty WM_PROTOCOLS property */
281                         XSetWMProtocols(display, window.window, NULL, 0);
282
283                         /* Set window type */
284                         if ((xa = ATOM(_NET_WM_WINDOW_TYPE)) != None) {
285                                 Atom prop;
286
287                                 switch (window.type) {
288                                         case TYPE_DESKTOP:
289                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_DESKTOP);
290                                                 fprintf(stderr, PACKAGE_NAME": window type - desktop\n");
291                                                 fflush(stderr);
292                                                 break;
293                                         case TYPE_DOCK:
294                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_DOCK);
295                                                 fprintf(stderr, PACKAGE_NAME": window type - dock\n");
296                                                 fflush(stderr);
297                                                 break;
298                                         case TYPE_NORMAL:
299                                         default:
300                                                 prop = ATOM(_NET_WM_WINDOW_TYPE_NORMAL);
301                                                 fprintf(stderr, PACKAGE_NAME": window type - normal\n");
302                                                 fflush(stderr);
303                                                 break;
304                                 }
305                                 XChangeProperty(display, window.window, xa, XA_ATOM, 32,
306                                         PropModeReplace, (unsigned char *) &prop, 1);
307                         }
308
309                         /* Set desired hints */
310
311                         /* Window decorations */
312                         if (TEST_HINT(window.hints, HINT_UNDECORATED)) {
313                                 /* fprintf(stderr, PACKAGE_NAME": hint - undecorated\n");
314                                 fflush(stderr); */
315
316                                 xa = ATOM(_MOTIF_WM_HINTS);
317                                 if (xa != None) {
318                                         long prop[5] = { 2, 0, 0, 0, 0 };
319                                         XChangeProperty(display, window.window, xa, xa, 32,
320                                                 PropModeReplace, (unsigned char *) prop, 5);
321                                 }
322                         }
323
324                         /* Below other windows */
325                         if (TEST_HINT(window.hints, HINT_BELOW)) {
326                                 /* fprintf(stderr, PACKAGE_NAME": hint - below\n");
327                                 fflush(stderr); */
328
329                                 xa = ATOM(_WIN_LAYER);
330                                 if (xa != None) {
331                                         long prop = 0;
332
333                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
334                                                 PropModeAppend, (unsigned char *) &prop, 1);
335                                 }
336
337                                 xa = ATOM(_NET_WM_STATE);
338                                 if (xa != None) {
339                                         Atom xa_prop = ATOM(_NET_WM_STATE_BELOW);
340
341                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
342                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
343                                 }
344                         }
345
346                         /* Above other windows */
347                         if (TEST_HINT(window.hints, HINT_ABOVE)) {
348                                 /* fprintf(stderr, PACKAGE_NAME": hint - above\n");
349                                 fflush(stderr); */
350
351                                 xa = ATOM(_WIN_LAYER);
352                                 if (xa != None) {
353                                         long prop = 6;
354
355                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
356                                                 PropModeAppend, (unsigned char *) &prop, 1);
357                                 }
358
359                                 xa = ATOM(_NET_WM_STATE);
360                                 if (xa != None) {
361                                         Atom xa_prop = ATOM(_NET_WM_STATE_ABOVE);
362
363                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
364                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
365                                 }
366                         }
367
368                         /* Sticky */
369                         if (TEST_HINT(window.hints, HINT_STICKY)) {
370                                 /* fprintf(stderr, PACKAGE_NAME": hint - sticky\n");
371                                 fflush(stderr); */
372
373                                 xa = ATOM(_NET_WM_DESKTOP);
374                                 if (xa != None) {
375                                         CARD32 xa_prop = 0xFFFFFFFF;
376
377                                         XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
378                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
379                                 }
380
381                                 xa = ATOM(_NET_WM_STATE);
382                                 if (xa != None) {
383                                         Atom xa_prop = ATOM(_NET_WM_STATE_STICKY);
384
385                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
386                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
387                                 }
388                         }
389
390                         /* Skip taskbar */
391                         if (TEST_HINT(window.hints, HINT_SKIP_TASKBAR)) {
392                                 /* fprintf(stderr, PACKAGE_NAME": hint - skip_taskbar\n");
393                                 fflush(stderr); */
394
395                                 xa = ATOM(_NET_WM_STATE);
396                                 if (xa != None) {
397                                         Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_TASKBAR);
398
399                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
400                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
401                                 }
402                         }
403
404                         /* Skip pager */
405                         if (TEST_HINT(window.hints, HINT_SKIP_PAGER)) {
406                                 /* fprintf(stderr, PACKAGE_NAME": hint - skip_pager\n");
407                                 fflush(stderr); */
408
409                                 xa = ATOM(_NET_WM_STATE);
410                                 if (xa != None) {
411                                         Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_PAGER);
412
413                                         XChangeProperty(display, window.window, xa, XA_ATOM, 32,
414                                                 PropModeAppend, (unsigned char *) &xa_prop, 1);
415                                 }
416                         }
417                 } /* else { window.type != TYPE_OVERRIDE */
418
419                 fprintf(stderr, PACKAGE_NAME": drawing to created window (0x%lx)\n",
420                         window.window);
421                 fflush(stderr);
422
423                 XMapWindow(display, window.window);
424
425         } else /* if (own_window) { */
426 #endif
427                 /* root / desktop window */
428         {
429                 XWindowAttributes attrs;
430
431                 if (!window.window) {
432                         window.window = find_desktop_window(&window.root, &window.desktop);
433                 }
434
435                 if (XGetWindowAttributes(display, window.window, &attrs)) {
436                         window.width = attrs.width;
437                         window.height = attrs.height;
438                 }
439
440                 fprintf(stderr, PACKAGE_NAME": drawing to desktop window\n");
441         }
442
443         /* Drawable is same as window. This may be changed by double buffering. */
444         window.drawable = window.window;
445
446 #ifdef HAVE_XDBE
447         if (use_xdbe) {
448                 int major, minor;
449
450                 if (!XdbeQueryExtension(display, &major, &minor)) {
451                         use_xdbe = 0;
452                 } else {
453                         window.back_buffer = XdbeAllocateBackBufferName(display,
454                                 window.window, XdbeBackground);
455                         if (window.back_buffer != None) {
456                                 window.drawable = window.back_buffer;
457                                 fprintf(stderr, PACKAGE_NAME": drawing to double buffer\n");
458                         } else {
459                                 use_xdbe = 0;
460                         }
461                 }
462                 if (!use_xdbe) {
463                         ERR("failed to set up double buffer");
464                 }
465         }
466         if (!use_xdbe) {
467                 fprintf(stderr, PACKAGE_NAME": drawing to single buffer\n");
468         }
469 #endif
470 #ifdef IMLIB2
471         {
472                 Visual *visual;
473                 Colormap colourmap;
474                 visual = DefaultVisual(display, DefaultScreen(display));
475                 colourmap = DefaultColormap(display, DefaultScreen(display));
476                 cimlib_init(display, window.drawable, visual, colourmap);
477         }
478 #endif /* IMLIB2 */
479         XFlush(display);
480
481         /* set_transparent_background(window.window);
482          * must be done after double buffer stuff? */
483 #ifdef OWN_WINDOW
484         /* if (own_window) {
485                 set_transparent_background(window.window);
486                 XClearWindow(display, window.window);
487         } */
488 #endif
489
490 #ifdef OWN_WINDOW
491         XSelectInput(display, window.window, ExposureMask |
492                 (own_window ? (StructureNotifyMask | PropertyChangeMask |
493                 ButtonPressMask | ButtonReleaseMask) : 0));
494 #else
495         XSelectInput(display, window.window, ExposureMask);
496 #endif
497 }
498
499 static Window find_subwindow(Window win, int w, int h)
500 {
501         unsigned int i, j;
502         Window troot, parent, *children;
503         unsigned int n;
504
505         /* search subwindows with same size as display or work area */
506
507         for (i = 0; i < 10; i++) {
508                 XQueryTree(display, win, &troot, &parent, &children, &n);
509
510                 for (j = 0; j < n; j++) {
511                         XWindowAttributes attrs;
512
513                         if (XGetWindowAttributes(display, children[j], &attrs)) {
514                                 /* Window must be mapped and same size as display or
515                                  * work space */
516                                 if (attrs.map_state != 0 && ((attrs.width == display_width
517                                                 && attrs.height == display_height)
518                                                 || (attrs.width == w && attrs.height == h))) {
519                                         win = children[j];
520                                         break;
521                                 }
522                         }
523                 }
524
525                 XFree(children);
526                 if (j == n) {
527                         break;
528                 }
529         }
530
531         return win;
532 }
533
534 long get_x11_color(const char *name)
535 {
536         XColor color;
537
538         color.pixel = 0;
539         if (!XParseColor(display, DefaultColormap(display, screen), name, &color)) {
540                 /* lets check if it's a hex colour with the # missing in front
541                  * if yes, then do something about it */
542                 char newname[DEFAULT_TEXT_BUFFER_SIZE];
543
544                 newname[0] = '#';
545                 strncpy(&newname[1], name, DEFAULT_TEXT_BUFFER_SIZE - 1);
546                 /* now lets try again */
547                 if (!XParseColor(display, DefaultColormap(display, screen), &newname[0],
548                                 &color)) {
549                         ERR("can't parse X color '%s'", name);
550                         return 0xFF00FF;
551                 }
552         }
553         if (!XAllocColor(display, DefaultColormap(display, screen), &color)) {
554                 ERR("can't allocate X color '%s'", name);
555         }
556
557         return (long) color.pixel;
558 }
559
560 void create_gc(void)
561 {
562         XGCValues values;
563
564         values.graphics_exposures = 0;
565         values.function = GXcopy;
566         window.gc = XCreateGC(display, window.drawable,
567                 GCFunction | GCGraphicsExposures, &values);
568 }
569
570 void update_x11info(void)
571 {
572         struct information *current_info = &info;
573         current_info->x11.monitor.number = XScreenCount(display);
574         current_info->x11.monitor.current = XDefaultScreen(display);
575 }