]> Dogcows Code - chaz/tint2/blob - src/tint.c
718668f160e43d33604edbfd57074ba9eeba7715
[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 // icewm doesn't open under the mouse.
145 // and xfce doesn't open at all.
146 //e->xbutton.x = e->xbutton.x_root;
147 //e->xbutton.y = e->xbutton.y_root;
148 //printf("**** %d, %d\n", e->xbutton.x, e->xbutton.y);
149 XSetInputFocus(server.dsp, e->xbutton.window, RevertToParent, e->xbutton.time);
150 XSendEvent(server.dsp, e->xbutton.window, False, ButtonPressMask, e);
151 return;
152 }
153 }
154
155 if (e->xbutton.button != 1) return;
156
157 if (panel_mode != MULTI_DESKTOP) {
158 // drag and drop disabled
159 XLowerWindow (server.dsp, panel->main_win);
160 return;
161 }
162
163 GSList *l0;
164 Taskbar *tskbar;
165 int x = e->xbutton.x;
166 for (l0 = panel->area.list; l0 ; l0 = l0->next) {
167 tskbar = l0->data;
168 if (!tskbar->area.on_screen) continue;
169 if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
170 break;
171 }
172
173 if (l0) {
174 Task *tsk;
175 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
176 tsk = l0->data;
177 if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
178 task_drag = tsk;
179 break;
180 }
181 }
182 }
183
184 XLowerWindow (server.dsp, panel->main_win);
185 }
186
187
188 void event_button_release (XEvent *e)
189 {
190 Panel *panel = get_panel(e->xany.window);
191 if (!panel) return;
192
193 if (wm_menu) {
194 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)) {
195 // forward the click to the desktop window (thanks conky)
196 e->xbutton.window = server.root_win;
197 XSendEvent(server.dsp, e->xbutton.window, False, ButtonReleaseMask, e);
198 return;
199 }
200 }
201
202 int action = TOGGLE_ICONIFY;
203 int x = e->xbutton.x;
204 //int y = e->xbutton.y; // unused
205 switch (e->xbutton.button) {
206 case 2:
207 action = mouse_middle;
208 break;
209 case 3:
210 action = mouse_right;
211 break;
212 case 4:
213 action = mouse_scroll_up;
214 break;
215 case 5:
216 action = mouse_scroll_down;
217 break;
218 }
219
220 // search taskbar
221 Taskbar *tskbar;
222 GSList *l0;
223 Clock clk = panel->clock;
224 if (clk.area.on_screen && x >= clk.area.posx && x <= (clk.area.posx + clk.area.width))
225 clock_action(e->xbutton.button);
226 else {
227 for (l0 = panel->area.list; l0 ; l0 = l0->next) {
228 tskbar = l0->data;
229 if (!tskbar->area.on_screen) continue;
230 if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
231 goto suite;
232 }
233 }
234
235 // TODO: check better solution to keep window below
236 XLowerWindow (server.dsp, panel->main_win);
237 task_drag = 0;
238 return;
239
240 suite:
241 // drag and drop task
242 if (task_drag) {
243 if (tskbar != task_drag->area.parent && action == TOGGLE_ICONIFY) {
244 if (task_drag->desktop != ALLDESKTOP && panel_mode == MULTI_DESKTOP) {
245 windows_set_desktop(task_drag->win, tskbar->desktop);
246 if (tskbar->desktop == server.desktop)
247 set_active(task_drag->win);
248 task_drag = 0;
249 }
250 return;
251 }
252 else task_drag = 0;
253 }
254
255 // switch desktop
256 if (panel_mode == MULTI_DESKTOP)
257 if (tskbar->desktop != server.desktop && action != CLOSE)
258 set_desktop (tskbar->desktop);
259
260 // action on task
261 Task *tsk;
262 GSList *l;
263 for (l = tskbar->area.list ; l ; l = l->next) {
264 tsk = l->data;
265 if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
266 window_action (tsk, action);
267 break;
268 }
269 }
270
271 // to keep window below
272 XLowerWindow (server.dsp, panel->main_win);
273 }
274
275
276 void event_property_notify (XEvent *e)
277 {
278 int i, j;
279 Task *tsk;
280 Window win = e->xproperty.window;
281 Atom at = e->xproperty.atom;
282
283 if (win == server.root_win) {
284 if (!server.got_root_win) {
285 XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
286 server.got_root_win = 1;
287 }
288
289 // Change number of desktops
290 else if (at == server.atom._NET_NUMBER_OF_DESKTOPS) {
291 server.nb_desktop = server_get_number_of_desktop ();
292 cleanup_taskbar();
293 init_taskbar();
294 visible_object();
295 for (i=0 ; i < nb_panel ; i++) {
296 panel1[i].area.resize = 1;
297 }
298 task_refresh_tasklist();
299 panel_refresh = 1;
300 }
301 // Change desktop
302 else if (at == server.atom._NET_CURRENT_DESKTOP) {
303 server.desktop = server_get_current_desktop ();
304 if (panel_mode != MULTI_DESKTOP) {
305 visible_object();
306 }
307 }
308 // Window list
309 else if (at == server.atom._NET_CLIENT_LIST) {
310 task_refresh_tasklist();
311 panel_refresh = 1;
312 }
313 // Change active
314 else if (at == server.atom._NET_ACTIVE_WINDOW) {
315 GSList *l0;
316 if (task_active) {
317 for (i=0 ; i < nb_panel ; i++) {
318 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
319 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
320 tsk = l0->data;
321 tsk->area.is_active = 0;
322 }
323 }
324 }
325 task_active = 0;
326 }
327 Window w1 = window_get_active ();
328 Task *t = task_get_task(w1);
329 if (!t) {
330 Window w2;
331 if (XGetTransientForHint(server.dsp, w1, &w2) != 0)
332 if (w2) t = task_get_task(w2);
333 }
334 if (task_urgent == t) {
335 init_precision();
336 task_urgent = 0;
337 }
338 if (t) {
339 for (i=0 ; i < nb_panel ; i++) {
340 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
341 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
342 tsk = l0->data;
343 if (tsk->win == t->win) {
344 tsk->area.is_active = 1;
345 //printf("active monitor %d, task %s\n", panel1[i].monitor, tsk->title);
346 }
347 }
348 }
349 }
350 task_active = t;
351 }
352 panel_refresh = 1;
353 }
354 // Wallpaper changed
355 else if (at == server.atom._XROOTPMAP_ID) {
356 for (i=0 ; i < nb_panel ; i++) {
357 set_panel_background(&panel1[i]);
358 }
359 panel_refresh = 1;
360 }
361 }
362 else {
363 tsk = task_get_task (win);
364 if (!tsk) return;
365 //printf("atom root_win = %s, %s\n", XGetAtomName(server.dsp, at), tsk->title);
366
367 // Window title changed
368 if (at == server.atom._NET_WM_VISIBLE_NAME || at == server.atom._NET_WM_NAME || at == server.atom.WM_NAME) {
369 Task *tsk2;
370 GSList *l0;
371 get_title(tsk);
372 // changed other tsk->title
373 for (i=0 ; i < nb_panel ; i++) {
374 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
375 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
376 tsk2 = l0->data;
377 if (tsk->win == tsk2->win && tsk != tsk2) {
378 tsk2->title = tsk->title;
379 tsk2->area.redraw = 1;
380 }
381 }
382 }
383 }
384 panel_refresh = 1;
385 }
386 // Demand attention
387 else if (at == server.atom._NET_WM_STATE) {
388 if (window_is_urgent (win)) {
389 task_urgent = tsk;
390 time_precision = 1;
391 }
392 }
393 else if (at == server.atom.WM_STATE) {
394 // Iconic state
395 // TODO : try to delete following code
396 if (window_is_iconified (win)) {
397 if (task_active) {
398 if (task_active->win == tsk->win) {
399 Task *tsk2;
400 GSList *l0;
401 for (i=0 ; i < nb_panel ; i++) {
402 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
403 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
404 tsk2 = l0->data;
405 tsk2->area.is_active = 0;
406 }
407 }
408 }
409 task_active = 0;
410 }
411 }
412 }
413 }
414 // Window icon changed
415 else if (at == server.atom._NET_WM_ICON) {
416 get_icon(tsk);
417 Task *tsk2;
418 GSList *l0;
419 for (i=0 ; i < nb_panel ; i++) {
420 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
421 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
422 tsk2 = l0->data;
423 if (tsk->win == tsk2->win && tsk != tsk2) {
424 tsk2->icon_width = tsk->icon_width;
425 tsk2->icon_height = tsk->icon_height;
426 tsk2->icon_data = tsk->icon_data;
427 tsk2->area.redraw = 1;
428 }
429 }
430 }
431 }
432 panel_refresh = 1;
433 }
434 // Window desktop changed
435 else if (at == server.atom._NET_WM_DESKTOP) {
436 int desktop = window_get_desktop (win);
437 //printf(" Window desktop changed %d, %d\n", tsk->desktop, desktop);
438 // bug in windowmaker : send unecessary 'desktop changed' when focus changed
439 if (desktop != tsk->desktop) {
440 remove_task (tsk);
441 add_task (win);
442 panel_refresh = 1;
443 }
444 }
445
446 if (!server.got_root_win) server.root_win = RootWindow (server.dsp, server.screen);
447 }
448 }
449
450
451 void event_expose (XEvent *e)
452 {
453 Panel *panel;
454
455 panel = get_panel(e->xany.window);
456 if (!panel) return;
457 /*
458 if (systray.area.on_screen) {
459 // force trayer refresh
460 //XClearWindow(tray_data.dpy, ti->mid_parent);
461 //x11_send_visibility(tray_data.dpy, dst, VisibilityFullyObscured);
462 //x11_send_visibility(tray_data.dpy, dst, VisibilityUnobscured);
463
464 GSList *l;
465 TrayWindow *traywin;
466 for (l = systray.list_icons; l ; l = l->next) {
467 traywin = (TrayWindow*)l->data;
468 // send Expose event
469 XClearArea(server.dsp, traywin->id, 0, 0, systray.area.width, systray.area.height, True);
470 //printf("expose %lx\n", traywin->id);
471 }
472
473 //x11_refresh_window(tray_data.dpy, ti->wid, ti->l.wnd_sz.x, ti->l.wnd_sz.y, True);
474 }
475 */
476 panel_refresh = 1;
477 //XCopyArea (server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
478
479 }
480
481
482 void event_configure_notify (Window win)
483 {
484 if (nb_panel == 1) return;
485 if (server.nb_monitor == 1) return;
486
487 Task *tsk = task_get_task (win);
488 if (!tsk) return;
489
490 Panel *p = tsk->area.panel;
491 if (p->monitor != window_get_monitor (win)) {
492 // task on another monitor
493 remove_task (tsk);
494 add_task (win);
495 if (win == window_get_active ()) {
496 Task *tsk = task_get_task (win);
497 tsk->area.is_active = 1;
498 task_active = tsk;
499 }
500 panel_refresh = 1;
501 }
502 }
503
504
505 void event_timer()
506 {
507 struct timeval stv;
508 int i;
509
510 if (gettimeofday(&stv, 0)) return;
511
512 if (abs(stv.tv_sec - time_clock.tv_sec) < time_precision) return;
513 time_clock.tv_sec = stv.tv_sec;
514 time_clock.tv_sec -= time_clock.tv_sec % time_precision;
515
516 // urgent task
517 if (task_urgent) {
518 task_urgent->area.is_active = !task_urgent->area.is_active;
519 task_urgent->area.redraw = 1;
520 }
521
522 // update battery
523 if (panel1[0].battery.area.on_screen) {
524 update_battery(&battery_state);
525 for (i=0 ; i < nb_panel ; i++)
526 panel1[i].battery.area.resize = 1;
527 }
528
529 // update clock
530 if (time1_format) {
531 for (i=0 ; i < nb_panel ; i++)
532 panel1[i].clock.area.resize = 1;
533 }
534 panel_refresh = 1;
535 }
536
537
538 int main (int argc, char *argv[])
539 {
540 XEvent e;
541 fd_set fd;
542 int x11_fd, i, c;
543 struct timeval tv;
544 Panel *panel;
545 GSList *it;
546
547 c = getopt (argc, argv, "c:");
548 init ();
549
550 load_config:
551 i = 0;
552 init_config();
553 if (c != -1)
554 i = config_read_file (optarg);
555 if (!i)
556 i = config_read ();
557 if (!i) {
558 fprintf(stderr, "usage: tint2 [-c] <config_file>\n");
559 cleanup();
560 exit(1);
561 }
562 config_finish();
563
564 x11_fd = ConnectionNumber(server.dsp);
565 XSync(server.dsp, False);
566
567 while (1) {
568 // thanks to AngryLlama for the timer
569 // Create a File Description Set containing x11_fd
570 FD_ZERO (&fd);
571 FD_SET (x11_fd, &fd);
572
573 tv.tv_usec = 500000;
574 tv.tv_sec = 0;
575
576 // Wait for X Event or a Timer
577 if (select(x11_fd+1, &fd, 0, 0, &tv)) {
578 while (XPending (server.dsp)) {
579 XNextEvent(server.dsp, &e);
580
581 switch (e.type) {
582 case ButtonPress:
583 event_button_press (&e);
584 break;
585
586 case ButtonRelease:
587 event_button_release(&e);
588 break;
589
590 case Expose:
591 event_expose(&e);
592 break;
593
594 case PropertyNotify:
595 event_property_notify(&e);
596 break;
597
598 case ConfigureNotify:
599 if (e.xconfigure.window == server.root_win)
600 goto load_config;
601 else
602 event_configure_notify (e.xconfigure.window);
603 break;
604
605 case UnmapNotify:
606 case DestroyNotify:
607 if (!systray.area.on_screen) break;
608 for (it = systray.list_icons; it; it = g_slist_next(it)) {
609 if (((TrayWindow*)it->data)->id == e.xany.window) {
610 remove_icon((TrayWindow*)it->data);
611 break;
612 }
613 }
614 break;
615
616 case ClientMessage:
617 if (!systray.area.on_screen) break;
618 //printf("ClientMessage\n");
619 if (e.xclient.message_type == server.atom._NET_SYSTEM_TRAY_OPCODE && e.xclient.format == 32 && e.xclient.window == net_sel_win) {
620 net_message(&e.xclient);
621 }
622 break;
623 }
624 }
625 }
626 event_timer();
627
628 switch (signal_pending) {
629 case SIGUSR1:
630 goto load_config;
631 case SIGINT:
632 case SIGTERM:
633 cleanup ();
634 return 0;
635 }
636
637 if (panel_refresh) {
638 panel_refresh = 0;
639
640 for (i=0 ; i < nb_panel ; i++) {
641 panel = &panel1[i];
642
643 if (panel->temp_pmap) XFreePixmap(server.dsp, panel->temp_pmap);
644 panel->temp_pmap = XCreatePixmap(server.dsp, server.root_win, panel->area.width, panel->area.height, server.depth);
645
646 refresh(&panel->area);
647 XCopyArea(server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
648 }
649 XFlush (server.dsp);
650 }
651 }
652 }
653
654
This page took 0.05842 seconds and 3 git commands to generate.