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