]> Dogcows Code - chaz/tint2/blob - src/tint.c
fixed issue 98
[chaz/tint2] / src / tint.c
1 /**************************************************************************
2 *
3 * Tint2 panel
4 *
5 * Copyright (C) 2007 Pål Staurland (staura@gmail.com)
6 * Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 **************************************************************************/
20
21 #include <sys/stat.h>
22 #include <sys/time.h>
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <X11/Xutil.h>
28 #include <X11/Xatom.h>
29 #include <X11/Xlocale.h>
30 #include <Imlib2.h>
31 #include <signal.h>
32
33 #include "server.h"
34 #include "window.h"
35 #include "config.h"
36 #include "task.h"
37 #include "taskbar.h"
38 #include "systraybar.h"
39 #include "panel.h"
40
41
42 void signal_handler(int sig)
43 {
44 // signal handler is light as it should be
45 signal_pending = sig;
46 }
47
48
49 void init ()
50 {
51 // Set signal handler
52 signal(SIGUSR1, signal_handler);
53 signal(SIGINT, signal_handler);
54 signal(SIGTERM, signal_handler);
55
56 // set global data
57 memset(&server, 0, sizeof(Server_global));
58 memset(&systray, 0, sizeof(Systraybar));
59
60 server.dsp = XOpenDisplay (NULL);
61 if (!server.dsp) {
62 fprintf(stderr, "tint2 exit : could not open display.\n");
63 exit(0);
64 }
65 server_init_atoms ();
66 server.screen = DefaultScreen (server.dsp);
67 server.root_win = RootWindow(server.dsp, server.screen);
68 server.depth = DefaultDepth (server.dsp, server.screen);
69 server.visual = DefaultVisual (server.dsp, server.screen);
70 server.desktop = server_get_current_desktop ();
71 XGCValues gcv;
72 server.gc = XCreateGC (server.dsp, server.root_win, (unsigned long)0, &gcv) ;
73
74 XSetErrorHandler ((XErrorHandler) server_catch_error);
75
76 imlib_context_set_display (server.dsp);
77 imlib_context_set_visual (server.visual);
78 imlib_context_set_colormap (DefaultColormap (server.dsp, server.screen));
79
80 /* Catch events */
81 XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
82
83 setlocale (LC_ALL, "");
84 }
85
86
87 void cleanup()
88 {
89 cleanup_panel();
90
91 if (time1_font_desc) pango_font_description_free(time1_font_desc);
92 if (time2_font_desc) pango_font_description_free(time2_font_desc);
93 if (time1_format) g_free(time1_format);
94 if (time2_format) g_free(time2_format);
95 if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
96 if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
97 if (battery_low_cmd) g_free(battery_low_cmd);
98 if (path_energy_now) g_free(path_energy_now);
99 if (path_energy_full) g_free(path_energy_full);
100 if (path_current_now) g_free(path_current_now);
101 if (path_status) g_free(path_status);
102 if (clock_lclick_command) g_free(clock_lclick_command);
103 if (clock_rclick_command) g_free(clock_rclick_command);
104
105 if (server.monitor) free(server.monitor);
106 XFreeGC(server.dsp, server.gc);
107 XCloseDisplay(server.dsp);
108 }
109
110
111 void window_action (Task *tsk, int action)
112 {
113 switch (action) {
114 case CLOSE:
115 set_close (tsk->win);
116 break;
117 case TOGGLE:
118 set_active(tsk->win);
119 break;
120 case ICONIFY:
121 XIconifyWindow (server.dsp, tsk->win, server.screen);
122 break;
123 case TOGGLE_ICONIFY:
124 if (tsk == task_active) XIconifyWindow (server.dsp, tsk->win, server.screen);
125 else set_active (tsk->win);
126 break;
127 case SHADE:
128 window_toggle_shade (tsk->win);
129 break;
130 }
131 }
132
133
134 void event_button_press (XEvent *e)
135 {
136 Panel *panel = get_panel(e->xany.window);
137 if (!panel) return;
138
139 if (wm_menu) {
140 if ((e->xbutton.x < panel->area.paddingxlr) || (e->xbutton.x > panel->area.width-panel->area.paddingxlr) || (e->xbutton.y < panel->area.paddingy) || (e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) {
141 // forward the click to the desktop window (thanks conky)
142 XUngrabPointer(server.dsp, e->xbutton.time);
143 e->xbutton.window = server.root_win;
144 XSetInputFocus(server.dsp, e->xbutton.window, RevertToParent, e->xbutton.time);
145 XSendEvent(server.dsp, e->xbutton.window, False, ButtonPressMask, e);
146 return;
147 }
148 }
149
150 if (e->xbutton.button != 1) return;
151
152 if (panel_mode != MULTI_DESKTOP) {
153 // drag and drop disabled
154 XLowerWindow (server.dsp, panel->main_win);
155 return;
156 }
157
158 GSList *l0;
159 Taskbar *tskbar;
160 int x = e->xbutton.x;
161 for (l0 = panel->area.list; l0 ; l0 = l0->next) {
162 tskbar = l0->data;
163 if (!tskbar->area.on_screen) continue;
164 if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
165 break;
166 }
167
168 if (l0) {
169 Task *tsk;
170 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
171 tsk = l0->data;
172 if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
173 task_drag = tsk;
174 break;
175 }
176 }
177 }
178
179 XLowerWindow (server.dsp, panel->main_win);
180 }
181
182
183 void event_button_release (XEvent *e)
184 {
185 Panel *panel = get_panel(e->xany.window);
186 if (!panel) return;
187
188 if (wm_menu) {
189 if ((e->xbutton.x < panel->area.paddingxlr) || (e->xbutton.x > panel->area.width-panel->area.paddingxlr) || (e->xbutton.y < panel->area.paddingy) || (e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) {
190 // forward the click to the desktop window (thanks conky)
191 e->xbutton.window = server.root_win;
192 XSendEvent(server.dsp, e->xbutton.window, False, ButtonReleaseMask, e);
193 return;
194 }
195 }
196
197 int action = TOGGLE_ICONIFY;
198 int x = e->xbutton.x;
199 //int y = e->xbutton.y; // unused
200 switch (e->xbutton.button) {
201 case 2:
202 action = mouse_middle;
203 break;
204 case 3:
205 action = mouse_right;
206 break;
207 case 4:
208 action = mouse_scroll_up;
209 break;
210 case 5:
211 action = mouse_scroll_down;
212 break;
213 }
214
215 // search taskbar
216 Taskbar *tskbar;
217 GSList *l0;
218 Clock clk = panel->clock;
219 if (clk.area.on_screen && x >= clk.area.posx && x <= (clk.area.posx + clk.area.width))
220 clock_action(e->xbutton.button);
221 else {
222 for (l0 = panel->area.list; l0 ; l0 = l0->next) {
223 tskbar = l0->data;
224 if (!tskbar->area.on_screen) continue;
225 if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
226 goto suite;
227 }
228 }
229
230 // TODO: check better solution to keep window below
231 XLowerWindow (server.dsp, panel->main_win);
232 task_drag = 0;
233 return;
234
235 suite:
236 // drag and drop task
237 if (task_drag) {
238 if (tskbar != task_drag->area.parent && action == TOGGLE_ICONIFY) {
239 if (task_drag->desktop != ALLDESKTOP && panel_mode == MULTI_DESKTOP) {
240 windows_set_desktop(task_drag->win, tskbar->desktop);
241 if (tskbar->desktop == server.desktop)
242 set_active(task_drag->win);
243 task_drag = 0;
244 }
245 return;
246 }
247 else task_drag = 0;
248 }
249
250 // switch desktop
251 if (panel_mode == MULTI_DESKTOP)
252 if (tskbar->desktop != server.desktop && action != CLOSE)
253 set_desktop (tskbar->desktop);
254
255 // action on task
256 Task *tsk;
257 GSList *l;
258 for (l = tskbar->area.list ; l ; l = l->next) {
259 tsk = l->data;
260 if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
261 window_action (tsk, action);
262 break;
263 }
264 }
265
266 // to keep window below
267 XLowerWindow (server.dsp, panel->main_win);
268 }
269
270
271 void event_property_notify (XEvent *e)
272 {
273 int i, j;
274 Task *tsk;
275 Window win = e->xproperty.window;
276 Atom at = e->xproperty.atom;
277
278 if (win == server.root_win) {
279 if (!server.got_root_win) {
280 XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
281 server.got_root_win = 1;
282 }
283
284 // Change number of desktops
285 else if (at == server.atom._NET_NUMBER_OF_DESKTOPS) {
286 server.nb_desktop = server_get_number_of_desktop ();
287 cleanup_taskbar();
288 init_taskbar();
289 visible_object();
290 for (i=0 ; i < nb_panel ; i++) {
291 panel1[i].area.resize = 1;
292 }
293 task_refresh_tasklist();
294 panel_refresh = 1;
295 }
296 // Change desktop
297 else if (at == server.atom._NET_CURRENT_DESKTOP) {
298 server.desktop = server_get_current_desktop ();
299 if (panel_mode != MULTI_DESKTOP) {
300 visible_object();
301 }
302 }
303 // Window list
304 else if (at == server.atom._NET_CLIENT_LIST) {
305 task_refresh_tasklist();
306 panel_refresh = 1;
307 }
308 // Change active
309 else if (at == server.atom._NET_ACTIVE_WINDOW) {
310 GSList *l0;
311 if (task_active) {
312 for (i=0 ; i < nb_panel ; i++) {
313 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
314 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
315 tsk = l0->data;
316 tsk->area.is_active = 0;
317 }
318 }
319 }
320 task_active = 0;
321 }
322 Window w1 = window_get_active ();
323 Task *t = task_get_task(w1);
324 if (!t) {
325 Window w2;
326 if (XGetTransientForHint(server.dsp, w1, &w2) != 0)
327 if (w2) t = task_get_task(w2);
328 }
329 if (task_urgent == t) {
330 init_precision();
331 task_urgent = 0;
332 }
333 if (t) {
334 for (i=0 ; i < nb_panel ; i++) {
335 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
336 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
337 tsk = l0->data;
338 if (tsk->win == t->win) {
339 tsk->area.is_active = 1;
340 //printf("active monitor %d, task %s\n", panel1[i].monitor, tsk->title);
341 }
342 }
343 }
344 }
345 task_active = t;
346 }
347 panel_refresh = 1;
348 }
349 // Wallpaper changed
350 else if (at == server.atom._XROOTPMAP_ID) {
351 for (i=0 ; i < nb_panel ; i++) {
352 set_panel_background(&panel1[i]);
353 }
354 panel_refresh = 1;
355 }
356 }
357 else {
358 tsk = task_get_task (win);
359 if (!tsk) return;
360 //printf("atom root_win = %s, %s\n", XGetAtomName(server.dsp, at), tsk->title);
361
362 // Window title changed
363 if (at == server.atom._NET_WM_VISIBLE_NAME || at == server.atom._NET_WM_NAME || at == server.atom.WM_NAME) {
364 Task *tsk2;
365 GSList *l0;
366 get_title(tsk);
367 // changed other tsk->title
368 for (i=0 ; i < nb_panel ; i++) {
369 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
370 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
371 tsk2 = l0->data;
372 if (tsk->win == tsk2->win && tsk != tsk2) {
373 tsk2->title = tsk->title;
374 tsk2->area.redraw = 1;
375 }
376 }
377 }
378 }
379 panel_refresh = 1;
380 }
381 // Demand attention
382 else if (at == server.atom._NET_WM_STATE) {
383 if (window_is_urgent (win)) {
384 task_urgent = tsk;
385 time_precision = 1;
386 }
387 }
388 else if (at == server.atom.WM_STATE) {
389 // Iconic state
390 // TODO : try to delete following code
391 if (window_is_iconified (win)) {
392 if (task_active) {
393 if (task_active->win == tsk->win) {
394 Task *tsk2;
395 GSList *l0;
396 for (i=0 ; i < nb_panel ; i++) {
397 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
398 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
399 tsk2 = l0->data;
400 tsk2->area.is_active = 0;
401 }
402 }
403 }
404 task_active = 0;
405 }
406 }
407 }
408 }
409 // Window icon changed
410 else if (at == server.atom._NET_WM_ICON) {
411 get_icon(tsk);
412 Task *tsk2;
413 GSList *l0;
414 for (i=0 ; i < nb_panel ; i++) {
415 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
416 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
417 tsk2 = l0->data;
418 if (tsk->win == tsk2->win && tsk != tsk2) {
419 tsk2->icon_width = tsk->icon_width;
420 tsk2->icon_height = tsk->icon_height;
421 tsk2->icon_data = tsk->icon_data;
422 tsk2->area.redraw = 1;
423 }
424 }
425 }
426 }
427 panel_refresh = 1;
428 }
429 // Window desktop changed
430 else if (at == server.atom._NET_WM_DESKTOP) {
431 int desktop = window_get_desktop (win);
432 //printf(" Window desktop changed %d, %d\n", tsk->desktop, desktop);
433 // bug in windowmaker : send unecessary 'desktop changed' when focus changed
434 if (desktop != tsk->desktop) {
435 remove_task (tsk);
436 add_task (win);
437 panel_refresh = 1;
438 }
439 }
440
441 if (!server.got_root_win) server.root_win = RootWindow (server.dsp, server.screen);
442 }
443 }
444
445
446 void event_expose (XEvent *e)
447 {
448 Panel *panel;
449
450 panel = get_panel(e->xany.window);
451 if (!panel) return;
452 /*
453 if (systray.area.on_screen) {
454 // force trayer refresh
455 //XClearWindow(tray_data.dpy, ti->mid_parent);
456 //x11_send_visibility(tray_data.dpy, dst, VisibilityFullyObscured);
457 //x11_send_visibility(tray_data.dpy, dst, VisibilityUnobscured);
458
459 GSList *l;
460 TrayWindow *traywin;
461 for (l = systray.list_icons; l ; l = l->next) {
462 traywin = (TrayWindow*)l->data;
463 // send Expose event
464 XClearArea(server.dsp, traywin->id, 0, 0, systray.area.width, systray.area.height, True);
465 //printf("expose %lx\n", traywin->id);
466 }
467
468 //x11_refresh_window(tray_data.dpy, ti->wid, ti->l.wnd_sz.x, ti->l.wnd_sz.y, True);
469 }
470 */
471 panel_refresh = 1;
472 //XCopyArea (server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
473
474 }
475
476
477 void event_configure_notify (Window win)
478 {
479 if (nb_panel == 1) return;
480 if (server.nb_monitor == 1) return;
481
482 Task *tsk = task_get_task (win);
483 if (!tsk) return;
484
485 Panel *p = tsk->area.panel;
486 if (p->monitor != window_get_monitor (win)) {
487 // task on another monitor
488 remove_task (tsk);
489 add_task (win);
490 if (win == window_get_active ()) {
491 Task *tsk = task_get_task (win);
492 tsk->area.is_active = 1;
493 task_active = tsk;
494 }
495 panel_refresh = 1;
496 }
497 }
498
499
500 void event_timer()
501 {
502 struct timeval stv;
503 int i;
504
505 if (gettimeofday(&stv, 0)) return;
506
507 if (abs(stv.tv_sec - time_clock.tv_sec) < time_precision) return;
508 time_clock.tv_sec = stv.tv_sec;
509 time_clock.tv_sec -= time_clock.tv_sec % time_precision;
510 printf("event_timer %d\n", time_precision);
511
512 // urgent task
513 if (task_urgent) {
514 task_urgent->area.is_active = !task_urgent->area.is_active;
515 task_urgent->area.redraw = 1;
516 }
517
518 // update battery
519 if (panel1[0].battery.area.on_screen) {
520 update_battery(&battery_state);
521 for (i=0 ; i < nb_panel ; i++)
522 panel1[i].battery.area.resize = 1;
523 }
524
525 // update clock
526 if (time1_format) {
527 for (i=0 ; i < nb_panel ; i++)
528 panel1[i].clock.area.resize = 1;
529 }
530 panel_refresh = 1;
531 }
532
533
534 int main (int argc, char *argv[])
535 {
536 XEvent e;
537 fd_set fd;
538 int x11_fd, i, c;
539 struct timeval tv;
540 Panel *panel;
541 GSList *it;
542
543 c = getopt (argc, argv, "c:");
544 init ();
545
546 load_config:
547 i = 0;
548 init_config();
549 if (c != -1)
550 i = config_read_file (optarg);
551 if (!i)
552 i = config_read ();
553 if (!i) {
554 fprintf(stderr, "usage: tint2 [-c] <config_file>\n");
555 cleanup();
556 exit(1);
557 }
558 config_finish();
559
560 x11_fd = ConnectionNumber(server.dsp);
561 XSync(server.dsp, False);
562
563 while (1) {
564 // thanks to AngryLlama for the timer
565 // Create a File Description Set containing x11_fd
566 FD_ZERO (&fd);
567 FD_SET (x11_fd, &fd);
568
569 tv.tv_usec = 500000;
570 tv.tv_sec = 0;
571
572 // Wait for X Event or a Timer
573 if (select(x11_fd+1, &fd, 0, 0, &tv)) {
574 while (XPending (server.dsp)) {
575 XNextEvent(server.dsp, &e);
576
577 switch (e.type) {
578 case ButtonPress:
579 event_button_press (&e);
580 break;
581
582 case ButtonRelease:
583 event_button_release(&e);
584 break;
585
586 case Expose:
587 event_expose(&e);
588 break;
589
590 case PropertyNotify:
591 event_property_notify(&e);
592 break;
593
594 case ConfigureNotify:
595 if (e.xconfigure.window == server.root_win)
596 goto load_config;
597 else
598 event_configure_notify (e.xconfigure.window);
599 break;
600
601 case UnmapNotify:
602 case DestroyNotify:
603 if (!systray.area.on_screen) break;
604 for (it = systray.list_icons; it; it = g_slist_next(it)) {
605 if (((TrayWindow*)it->data)->id == e.xany.window) {
606 remove_icon((TrayWindow*)it->data);
607 break;
608 }
609 }
610 break;
611
612 case ClientMessage:
613 if (!systray.area.on_screen) break;
614 //printf("ClientMessage\n");
615 if (e.xclient.message_type == server.atom._NET_SYSTEM_TRAY_OPCODE && e.xclient.format == 32 && e.xclient.window == net_sel_win) {
616 net_message(&e.xclient);
617 }
618 break;
619 }
620 }
621 }
622 event_timer();
623
624 switch (signal_pending) {
625 case SIGUSR1:
626 goto load_config;
627 case SIGINT:
628 case SIGTERM:
629 cleanup ();
630 return 0;
631 }
632
633 if (panel_refresh) {
634 panel_refresh = 0;
635
636 for (i=0 ; i < nb_panel ; i++) {
637 panel = &panel1[i];
638
639 if (panel->temp_pmap) XFreePixmap(server.dsp, panel->temp_pmap);
640 panel->temp_pmap = XCreatePixmap(server.dsp, server.root_win, panel->area.width, panel->area.height, server.depth);
641
642 refresh(&panel->area);
643 XCopyArea(server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
644 }
645 XFlush (server.dsp);
646 }
647 }
648 }
649
650
This page took 0.062967 seconds and 5 git commands to generate.