drastic simplifications for own_window=yes
[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/Xutil.h>
16 #ifdef XFT
17 #include <X11/Xft/Xft.h>
18 #endif
19
20 #include <stdio.h>
21
22 #ifdef XDBE
23 int use_xdbe;
24 #endif
25
26 #ifdef XFT
27 int use_xft = 0;
28 #endif
29
30 #define WINDOW_NAME_FMT "%s - conky" 
31
32 /* some basic X11 stuff */
33 Display *display;
34 int display_width;
35 int display_height;
36 int screen;
37 static int set_transparent;
38 static int background_colour;
39
40 /* workarea from _NET_WORKAREA, this is where window / text is aligned */
41 int workarea[4];
42
43 /* Window stuff */
44 struct conky_window window;
45
46 /* local prototypes */
47 static void update_workarea();
48 static Window find_desktop_window();
49 static Window find_subwindow(Window win, int w, int h);
50
51 /* X11 initializer */
52 void init_X11()
53 {
54         if ((display = XOpenDisplay(0)) == NULL)
55                 CRIT_ERR("can't open display: %s", XDisplayName(0));
56
57         screen = DefaultScreen(display);
58         display_width = DisplayWidth(display, screen);
59         display_height = DisplayHeight(display, screen);
60
61         update_workarea();
62 }
63
64 static void update_workarea()
65 {
66         Window root = RootWindow(display, screen);
67         unsigned long nitems, bytes;
68         unsigned char *buf = NULL;
69         Atom type;
70         int format;
71
72         /* default work area is display */
73         workarea[0] = 0;
74         workarea[1] = 0;
75         workarea[2] = display_width;
76         workarea[3] = display_height;
77
78         /* get current desktop */
79         if (XGetWindowProperty(display, root, ATOM(_NET_CURRENT_DESKTOP),
80                                0, 1, False, XA_CARDINAL, &type, &format,
81                                &nitems, &bytes, &buf) == Success
82             && type == XA_CARDINAL && nitems > 0) {
83
84                 //Currently unused 
85                 /*  long desktop = * (long *) buf; */
86
87                 XFree(buf);
88                 buf = 0;
89
90         }
91
92         if (buf) {
93                 XFree(buf);
94                 buf = 0;
95         }
96 }
97
98 static Window find_desktop_window()
99 {
100         Atom type;
101         int format, i;
102         unsigned long nitems, bytes;
103         unsigned int n;
104         Window root = RootWindow(display, screen);
105         Window win = root;
106         Window troot, parent, *children;
107         unsigned char *buf = NULL;
108
109         /* some window managers set __SWM_VROOT to some child of root window */
110
111         XQueryTree(display, root, &troot, &parent, &children, &n);
112         for (i = 0; i < (int) n; i++) {
113                 if (XGetWindowProperty
114                     (display, children[i], ATOM(__SWM_VROOT), 0, 1, False,
115                      XA_WINDOW, &type, &format, &nitems, &bytes,
116                      &buf) == Success && type == XA_WINDOW) {
117                         win = *(Window *) buf;
118                         XFree(buf);
119                         XFree(children);
120                         fprintf(stderr,
121                                 "Conky: desktop window (%lx) found from __SWM_VROOT property\n", win);
122                         return win;
123                 }
124
125                 if (buf) {
126                         XFree(buf);
127                         buf = 0;
128                 }
129         }
130         XFree(children);
131
132         /* get subwindows from root */
133         win = find_subwindow(root, -1, -1);
134
135         update_workarea();
136
137         win = find_subwindow(win, workarea[2], workarea[3]);
138
139         if (buf) {
140                 XFree(buf);
141                 buf = 0;
142         }
143
144         if (win != root)
145                 fprintf(stderr,
146                         "Conky: desktop window (%lx) is subwindow of root window (%lx)\n",win,root);
147         else
148                 fprintf(stderr, "Conky: desktop window (%lx) is root window\n",win);
149
150         return win;
151 }
152
153 /* sets background to ParentRelative for the Window and all parents */
154 inline void set_transparent_background(Window win)
155 {
156         static int colour_set = -1;
157         if (set_transparent) {
158                 Window parent = win;
159                 unsigned int i;
160                 for (i = 0; i < 50 && parent != RootWindow(display, screen); i++) {
161                         Window r, *children;
162                         unsigned int n;
163                         
164                         XSetWindowBackgroundPixmap(display, parent, ParentRelative);
165         
166                         XQueryTree(display, parent, &r, &parent, &children, &n);
167                         XFree(children);
168                         }
169         } else if (colour_set != background_colour) {
170                 XSetWindowBackground(display, win, background_colour);
171                 colour_set = background_colour;
172 }
173         //XClearWindow(display, win); not sure why this was here
174 }
175
176 #if defined OWN_WINDOW
177 void init_window(int own_window, char* wm_class_name, int w, int h, int l, int fixed_pos, int set_trans, int back_colour, char * nodename)
178 #else
179 void init_window(int own_window, int w, int h, int l, int set_trans, int back_colour, char * nodename)
180 #endif
181 {
182         /* There seems to be some problems with setting transparent background (on
183          * fluxbox this time). It doesn't happen always and I don't know why it
184          * happens but I bet the bug is somewhere here. */
185         set_transparent = set_trans;
186         background_colour = back_colour;
187
188         wm_class_name = (char *)wm_class_name;
189         l = (int)l;
190         fixed_pos = (int)fixed_pos;
191         nodename = (char *)nodename;
192
193 #ifdef OWN_WINDOW
194         if (own_window) {
195                 {
196                         /* DRASTICALLY SIMPLIFIED - 
197                          * override_redirect=True impedes the WM from manipulating
198                          * the window, adding decorations, etc.  we do not register
199                          * for button events so you should have menu clicking over
200                          * the conky window now too.  PHK. */
201                         XSetWindowAttributes attrs = {
202                                 ParentRelative,0L,0,0L,0,0,Always,0L,0L,False,
203                                 StructureNotifyMask|ExposureMask,
204                                 0L,True,0,0 };
205
206                         window.root = find_desktop_window();
207
208                         window.window = XCreateWindow(display, window.root, 
209                                                       window.x, window.y, w, h, 0, 
210                                                       CopyFromParent,
211                                                       InputOutput,
212                                                       CopyFromParent,
213                                                       CWBackPixel|CWOverrideRedirect, &attrs);
214
215                         fprintf(stderr, "Conky: drawing to created window (%lx)\n", window.window);
216
217                         XLowerWindow(display, window.window);
218
219                         XMapWindow(display, window.window);
220
221                 }
222         } else
223 #endif
224                 /* root / desktop window */
225         {
226                 XWindowAttributes attrs;
227
228                 if (!window.window)
229                         window.window = find_desktop_window();
230
231                 if (XGetWindowAttributes(display, window.window, &attrs)) {
232                         window.width = attrs.width;
233                         window.height = attrs.height;
234                 }
235
236                 fprintf(stderr, "Conky: drawing to desktop window\n");
237         }
238
239         /* Drawable is same as window. This may be changed by double buffering. */
240         window.drawable = window.window;
241
242 #ifdef XDBE
243         if (use_xdbe) {
244                 int major, minor;
245                 if (!XdbeQueryExtension(display, &major, &minor)) {
246                         use_xdbe = 0;
247                 } else {
248                         window.back_buffer =
249                             XdbeAllocateBackBufferName(display,
250                                                        window.window,
251                                                        XdbeBackground);
252                         if (window.back_buffer != None) {
253                                 window.drawable = window.back_buffer;
254                                 fprintf(stderr,
255                                         "Conky: drawing to double buffer\n");
256                         } else
257                                 use_xdbe = 0;
258                 }
259                 if (!use_xdbe)
260                         ERR("failed to set up double buffer");
261         }
262         if (!use_xdbe)
263                 fprintf(stderr, "Conky: drawing to single buffer\n");
264 #endif
265
266         XFlush(display);
267
268         /*set_transparent_background(window.window); must be done after double buffer stuff? */
269 #ifdef OWN_WINDOW
270         /*if (own_window) {
271         set_transparent_background(window.window);
272                 XClearWindow(display, window.window);
273 }*/
274 #endif
275
276         XSelectInput(display, window.window, ExposureMask
277 #ifdef OWN_WINDOW
278                      | (own_window
279                         ? (StructureNotifyMask | PropertyChangeMask) : 0)
280 #endif
281             );
282 }
283
284 static Window find_subwindow(Window win, int w, int h)
285 {
286         unsigned int i, j;
287         Window troot, parent, *children;
288         unsigned int n;
289
290         /* search subwindows with same size as display or work area */
291
292         for (i = 0; i < 10; i++) {
293                 XQueryTree(display, win, &troot, &parent, &children, &n);
294
295                 for (j = 0; j < n; j++) {
296                         XWindowAttributes attrs;
297
298                         if (XGetWindowAttributes
299                             (display, children[j], &attrs)) {
300                                 /* Window must be mapped and same size as display or work space */
301                                 if (attrs.map_state != 0 &&
302                                     ((attrs.width == display_width
303                                       && attrs.height == display_height)
304                                      || (attrs.width == w
305                                          && attrs.height == h))) {
306                                         win = children[j];
307                                         break;
308                                 }
309                         }
310                 }
311
312                 XFree(children);
313                 if (j == n)
314                         break;
315         }
316
317         return win;
318 }
319
320 long get_x11_color(const char *name)
321 {
322         XColor color;
323         color.pixel = 0;
324         if (!XParseColor
325             (display, DefaultColormap(display, screen), name, &color)) {
326                 /* lets check if it's a hex colour with the # missing in front
327                  * if yes, then do something about it
328                  */
329                 char newname[64];
330                 newname[0] = '#';
331                 strncpy(&newname[1], name, 62);
332                 /* now lets try again */
333                 if (!XParseColor(display, DefaultColormap(display, screen), &newname[0], &color)) {
334                         ERR("can't parse X color '%s'", name);
335                         return 0xFF00FF;
336                 }
337         }
338         if (!XAllocColor
339             (display, DefaultColormap(display, screen), &color))
340                 ERR("can't allocate X color '%s'", name);
341
342         return (long) color.pixel;
343 }
344
345 void create_gc()
346 {
347         XGCValues values;
348         values.graphics_exposures = 0;
349         values.function = GXcopy;
350         window.gc = XCreateGC(display, window.drawable,
351                               GCFunction | GCGraphicsExposures, &values);
352 }
353
354 #endif /* X11 */