]> Dogcows Code - chaz/tint2/blob - src/systray/systraybar.c
merge battery applet from Sebastian Reichel
[chaz/tint2] / src / systray / systraybar.c
1 /**************************************************************************
2 * Tint2 : systraybar
3 *
4 * Copyright (C) 2009 thierry lorthiois (lorthiois@bbsoft.fr)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 **************************************************************************/
18
19 #include <X11/Xlib.h>
20 #include <X11/Xutil.h>
21 #include <X11/Xatom.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <glib.h>
26 #include <Imlib2.h>
27
28 #include "systraybar.h"
29 #include "server.h"
30 #include "panel.h"
31
32 GSList *icons;
33
34 /* defined in the systray spec */
35 #define SYSTEM_TRAY_REQUEST_DOCK 0
36 #define SYSTEM_TRAY_BEGIN_MESSAGE 1
37 #define SYSTEM_TRAY_CANCEL_MESSAGE 2
38
39 // selection window
40 Window net_sel_win = None, hint_win = None;
41
42 // freedesktop specification doesn't allow multi systray
43 Systraybar systray;
44
45
46 void init_systray()
47 {
48 Panel *panel = &panel1[0];
49 systray.area.parent = panel;
50 systray.area.panel = panel;
51 systray.area._draw_foreground = draw_systray;
52 systray.area._resize = resize_systray;
53
54 if (systray.area.on_screen)
55 systray.area.on_screen = init_net();
56
57 if (!systray.area.on_screen)
58 return;
59
60 // configure systray
61 // draw only one systray (even with multi panel)
62 systray.area.posy = panel->area.pix.border.width + panel->area.paddingy;
63 systray.area.height = panel->area.height - (2 * systray.area.posy);
64 systray.area.width = 0;
65
66 systray.area.posx = panel->area.width - panel->area.paddingxlr - panel->area.pix.border.width - systray.area.width;
67 if (panel->clock.area.on_screen)
68 systray.area.posx -= (panel->clock.area.width + panel->area.paddingx);
69 if (panel->battery.area.on_screen)
70 systray.area.posx -= (panel->battery.area.width + panel->area.paddingx);
71
72 systray.area.redraw = 1;
73 }
74
75
76 void cleanup_systray()
77 {
78 if (systray.list_icons) {
79 GSList *it;
80
81 for (it = systray.list_icons; it; it = it->next)
82 remove_icon((TrayWindow*)it->data);
83
84 g_slist_free(systray.list_icons);
85 systray.list_icons = 0;
86 }
87
88 free_area(&systray.area);
89
90 cleanup_net();
91 }
92
93
94 void draw_systray(void *obj, cairo_t *c, int active)
95 {
96 Systraybar *sysbar = obj;
97 Panel *panel = sysbar->area.panel;
98 TrayWindow *traywin;
99 GSList *l;
100 int icon_size;
101
102 printf("draw_systray %d %d\n", systray.area.posx, systray.area.width);
103 icon_size = sysbar->area.height - (2 * sysbar->area.pix.border.width) - (2 * sysbar->area.paddingy);
104 for (l = systray.list_icons; l ; l = l->next) {
105 traywin = (TrayWindow*)l->data;
106
107 // watch for the icon trying to resize itself!
108 XSelectInput(server.dsp, traywin->id, StructureNotifyMask);
109
110 // position and size the icon window
111 XMoveResizeWindow(server.dsp, traywin->id, traywin->x, traywin->y, icon_size, icon_size);
112
113 // resize our window so that the new window can fit in it
114 //fix_geometry();
115
116 // flush before clearing, otherwise the clear isn't effective.
117 XFlush(server.dsp);
118 // make sure the new child will get the right stuff in its background
119 // for ParentRelative.
120 XClearWindow(server.dsp, panel->main_win);
121
122 // show the window
123 XMapRaised(server.dsp, traywin->id);
124 }
125 }
126
127
128 void resize_systray(void *obj)
129 {
130 Systraybar *sysbar = obj;
131 Panel *panel = sysbar->area.panel;
132 TrayWindow *traywin;
133 GSList *l;
134 int count, posx, posy;
135 int icon_size;
136
137 icon_size = sysbar->area.height - (2 * sysbar->area.pix.border.width) - (2 * sysbar->area.paddingy);
138 count = g_slist_length(systray.list_icons);
139
140 if (!count) systray.area.width = 0;
141 else systray.area.width = (2 * systray.area.pix.border.width) + (2 * systray.area.paddingxlr) + (icon_size * count) + ((count-1) * systray.area.paddingx);
142
143 systray.area.posx = panel->area.width - panel->area.pix.border.width - panel->area.paddingxlr - systray.area.width;
144 if (panel->clock.area.on_screen)
145 systray.area.posx -= (panel->clock.area.width + panel->area.paddingx);
146 if (panel->battery.area.on_screen)
147 systray.area.posx -= (panel->battery.area.width + panel->area.paddingx);
148
149 systray.area.redraw = 1;
150
151 posy = panel->area.pix.border.width + panel->area.paddingy + systray.area.pix.border.width + systray.area.paddingy;
152 posx = systray.area.posx + systray.area.pix.border.width + systray.area.paddingxlr;
153 for (l = systray.list_icons; l ; l = l->next) {
154 traywin = (TrayWindow*)l->data;
155
156 traywin->y = posy;
157 traywin->x = posx;
158 posx += (icon_size + systray.area.paddingx);
159 }
160
161 // resize other objects on panel
162 printf("resize_systray %d %d\n", systray.area.posx, systray.area.width);
163 }
164
165 /*
166 void create_hint_win()
167 {
168 XWMHints hints;
169 XClassHint classhints;
170 Panel *panel = systray.area.panel;
171
172 hint_win = XCreateSimpleWindow(server.dsp, server.root_win, 0, 0, 1, 1, 0, 0, 0);
173
174 hints.flags = StateHint | WindowGroupHint | IconWindowHint;
175 hints.initial_state = WithdrawnState;
176 hints.window_group = hint_win;
177 hints.icon_window = panel->main_win;
178
179 classhints.res_name = "docker";
180 classhints.res_class = "Docker";
181
182 XSetWMProperties(server.dsp, hint_win, NULL, NULL, NULL, 0,
183 NULL, &hints, &classhints);
184
185 XMapWindow(server.dsp, hint_win);
186 }
187 */
188
189 int init_net()
190 {
191 if (XGetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN) != None) {
192 fprintf(stderr, "tint2 : another systray is running\n");
193 return 0;
194 }
195
196 //create_hint_win();
197
198 // init systray protocol
199 net_sel_win = XCreateSimpleWindow(server.dsp, server.root_win, -1, -1, 1, 1, 0, 0, 0);
200
201 // v0.2 trayer specification. tint2 always orizontal.
202 int orient = 0;
203 XChangeProperty(server.dsp, net_sel_win, server.atom._NET_SYSTEM_TRAY_ORIENTATION, XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &orient, 1);
204
205 XSetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN, net_sel_win, CurrentTime);
206 if (XGetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN) != net_sel_win) {
207 fprintf(stderr, "tint2 : can't get systray manager\n");
208 return 0;
209 }
210
211 XClientMessageEvent ev;
212 ev.type = ClientMessage;
213 ev.window = server.root_win;
214 ev.message_type = server.atom.MANAGER;
215 ev.format = 32;
216 ev.data.l[0] = CurrentTime;
217 ev.data.l[1] = server.atom._NET_SYSTEM_TRAY_SCREEN;
218 ev.data.l[2] = net_sel_win;
219 ev.data.l[3] = 0;
220 ev.data.l[4] = 0;
221 XSendEvent(server.dsp, server.root_win, False, StructureNotifyMask, (XEvent*)&ev);
222
223 return 1;
224 }
225
226
227 void cleanup_net()
228 {
229 if (net_sel_win != None) {
230 XDestroyWindow(server.dsp, net_sel_win);
231 net_sel_win = None;
232 }
233 }
234
235
236 /*
237 void fix_geometry()
238 {
239 GSList *it;
240 Panel *panel = systray.area.panel;
241
242 // find the proper width and height
243 width = 0;
244 height = icon_size;
245 for (it = icons; it != NULL; it = g_slist_next(it)) {
246 width += icon_size;
247 }
248
249 XResizeWindow(server.dsp, panel->main_win, width + border * 2, height + border * 2);
250 }
251 */
252
253 gboolean error;
254 int window_error_handler(Display *d, XErrorEvent *e)
255 {
256 d=d;e=e;
257 if (e->error_code == BadWindow) {
258 error = TRUE;
259 } else {
260 //g_printerr("X ERROR NOT BAD WINDOW!\n");
261 abort();
262 }
263 return 0;
264 }
265
266
267 gboolean icon_swallow(Window id)
268 {
269 XErrorHandler old;
270 Panel *panel = systray.area.panel;
271
272 error = FALSE;
273 old = XSetErrorHandler(window_error_handler);
274 XReparentWindow(server.dsp, id, panel->main_win, 0, 0);
275 XSync(server.dsp, False);
276 XSetErrorHandler(old);
277
278 return !error;
279 }
280
281
282 // The traywin must have its id and type set.
283 gboolean add_icon(Window id)
284 {
285 TrayWindow *traywin;
286
287 if (!icon_swallow(id)) {
288 fprintf(stderr, "tint2 : not icon_swallow\n");
289 return FALSE;
290 }
291
292 traywin = g_new0(TrayWindow, 1);
293 traywin->id = id;
294
295 systray.list_icons = g_slist_prepend(systray.list_icons, traywin);
296 printf("ajout d'un icone %d (%lx)\n", g_slist_length(systray.list_icons), id);
297 systray.area.resize = 1;
298 systray.area.redraw = 1;
299
300 // changed in systray force resize on panel
301 Panel *panel = systray.area.panel;
302 panel->area.resize = 1;
303 panel_refresh = 1;
304
305 // => calcul x, y, width, height dans resize
306 /*
307 // find the positon for the systray app window
308 int count = g_slist_length(icons);
309 traywin->x = border + ((width % icon_size) / 2) +
310 (count % (width / icon_size)) * icon_size;
311 traywin->y = border + ((height % icon_size) / 2) +
312 (count / (height / icon_size)) * icon_size;
313
314 // add the new icon to the list
315 icons = g_slist_append(icons, traywin);
316 */
317
318 return TRUE;
319 }
320
321
322 void remove_icon(TrayWindow *traywin)
323 {
324 XErrorHandler old;
325
326 XSelectInput(server.dsp, traywin->id, NoEventMask);
327
328 // reparent to root
329 error = FALSE;
330 old = XSetErrorHandler(window_error_handler);
331 XReparentWindow(server.dsp, traywin->id, server.root_win, 0, 0);
332 XSync(server.dsp, False);
333 XSetErrorHandler(old);
334
335 // remove from our list
336 systray.list_icons = g_slist_remove(systray.list_icons, traywin);
337 g_free(traywin);
338 printf("suppression d'un icone %d\n", g_slist_length(systray.list_icons));
339 systray.area.resize = 1;
340
341 // changed in systray force resize on panel
342 Panel *panel = systray.area.panel;
343 panel->area.resize = 1;
344 panel_refresh = 1;
345
346 }
347
348
349 void net_message(XClientMessageEvent *e)
350 {
351 unsigned long opcode;
352 Window id;
353
354 opcode = e->data.l[1];
355
356 switch (opcode) {
357 case SYSTEM_TRAY_REQUEST_DOCK:
358 id = e->data.l[2];
359 if (id) add_icon(id);
360 break;
361
362 case SYSTEM_TRAY_BEGIN_MESSAGE:
363 printf("message from dockapp\n");
364 id = e->window;
365 break;
366
367 case SYSTEM_TRAY_CANCEL_MESSAGE:
368 printf("message cancelled\n");
369 id = e->window;
370 break;
371
372 default:
373 if (opcode == server.atom._NET_SYSTEM_TRAY_MESSAGE_DATA) {
374 printf("message from dockapp:\n %s\n", e->data.b);
375 id = e->window;
376 }
377 // unknown message type. not in the spec
378 break;
379 }
380 }
381
382
383
This page took 0.060768 seconds and 5 git commands to generate.