]> Dogcows Code - chaz/tint2/blob - src/tint.c
new solution for omnipresent task
[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 #include "tooltip.h"
41
42
43 void signal_handler(int sig)
44 {
45 // signal handler is light as it should be
46 signal_pending = sig;
47 }
48
49
50 void init (int argc, char *argv[])
51 {
52 int c;
53
54 // read options
55 while ((c = getopt(argc , argv, "c:j:v")) != -1) {
56 switch (c) {
57 case 'c':
58 config_path = strdup (optarg);
59 break;
60 case 'j':
61 thumbnail_path = strdup (optarg);
62 break;
63 case 'v':
64 printf("tint2 version 0.7-svn\n");
65 exit(0);
66 break;
67 }
68 }
69
70 // Set signal handler
71 signal(SIGUSR1, signal_handler);
72 signal(SIGINT, signal_handler);
73 signal(SIGTERM, signal_handler);
74 signal(SIGHUP, signal_handler);
75 signal(SIGCHLD, SIG_IGN); // don't have to wait() after fork()
76 signal(SIGALRM, tooltip_sighandler);
77
78 // set global data
79 memset(&server, 0, sizeof(Server_global));
80 memset(&systray, 0, sizeof(Systraybar));
81
82 server.dsp = XOpenDisplay (NULL);
83 if (!server.dsp) {
84 fprintf(stderr, "tint2 exit : could not open display.\n");
85 exit(0);
86 }
87 server_init_atoms ();
88 server.screen = DefaultScreen (server.dsp);
89 server.root_win = RootWindow(server.dsp, server.screen);
90 server.depth = DefaultDepth (server.dsp, server.screen);
91 server.visual = DefaultVisual (server.dsp, server.screen);
92 server.desktop = server_get_current_desktop ();
93 XGCValues gcv;
94 server.gc = XCreateGC (server.dsp, server.root_win, (unsigned long)0, &gcv) ;
95
96 XSetErrorHandler ((XErrorHandler) server_catch_error);
97
98 imlib_context_set_display (server.dsp);
99 imlib_context_set_visual (server.visual);
100 imlib_context_set_colormap (DefaultColormap (server.dsp, server.screen));
101
102 /* Catch events */
103 XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
104
105 setlocale (LC_ALL, "");
106 }
107
108
109 void cleanup()
110 {
111 cleanup_panel();
112
113 if (time1_font_desc) pango_font_description_free(time1_font_desc);
114 if (time2_font_desc) pango_font_description_free(time2_font_desc);
115 if (time1_format) g_free(time1_format);
116 if (time2_format) g_free(time2_format);
117 #ifdef ENABLE_BATTERY
118 if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
119 if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
120 if (battery_low_cmd) g_free(battery_low_cmd);
121 if (path_energy_now) g_free(path_energy_now);
122 if (path_energy_full) g_free(path_energy_full);
123 if (path_current_now) g_free(path_current_now);
124 if (path_status) g_free(path_status);
125 #endif
126 if (clock_lclick_command) g_free(clock_lclick_command);
127 if (clock_rclick_command) g_free(clock_rclick_command);
128 if (config_path) g_free(config_path);
129 if (thumbnail_path) g_free(thumbnail_path);
130
131 if (server.monitor) free(server.monitor);
132 XFreeGC(server.dsp, server.gc);
133 XCloseDisplay(server.dsp);
134 }
135
136
137 Taskbar *click_taskbar (Panel *panel, int x, int y)
138 {
139 Taskbar *tskbar;
140 int i;
141
142 if (panel_horizontal) {
143 for (i=0; i < panel->nb_desktop ; i++) {
144 tskbar = &panel->taskbar[i];
145 if (!tskbar->area.on_screen) continue;
146 if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
147 return tskbar;
148 }
149 }
150 else {
151 for (i=0; i < panel->nb_desktop ; i++) {
152 tskbar = &panel->taskbar[i];
153 if (!tskbar->area.on_screen) continue;
154 if (y >= tskbar->area.posy && y <= (tskbar->area.posy + tskbar->area.height))
155 return tskbar;
156 }
157 }
158 return NULL;
159 }
160
161
162 Task *click_task (Panel *panel, int x, int y)
163 {
164 GSList *l0;
165 Taskbar *tskbar;
166
167 if ( (tskbar = click_taskbar(panel, x, y)) ) {
168 if (panel_horizontal) {
169 Task *tsk;
170 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
171 tsk = l0->data;
172 if (tsk->area.on_screen && x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
173 return tsk;
174 }
175 }
176 }
177 else {
178 Task *tsk;
179 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
180 tsk = l0->data;
181 if (tsk->area.on_screen && y >= tsk->area.posy && y <= (tsk->area.posy + tsk->area.height)) {
182 return tsk;
183 }
184 }
185 }
186 }
187 return NULL;
188 }
189
190
191 int click_padding(Panel *panel, int x, int y)
192 {
193 if (panel_horizontal) {
194 if (x < panel->area.paddingxlr || x > panel->area.width-panel->area.paddingxlr)
195 return 1;
196 }
197 else {
198 if (y < panel->area.paddingxlr || y > panel->area.height-panel->area.paddingxlr)
199 return 1;
200 }
201 return 0;
202 }
203
204
205 int click_clock(Panel *panel, int x, int y)
206 {
207 Clock clk = panel->clock;
208 if (panel_horizontal) {
209 if (clk.area.on_screen && x >= clk.area.posx && x <= (clk.area.posx + clk.area.width))
210 return TRUE;
211 } else {
212 if (clk.area.on_screen && y >= clk.area.posy && y <= (clk.area.posy + clk.area.height))
213 return TRUE;
214 }
215 return FALSE;
216 }
217
218
219 void window_action (Task *tsk, int action)
220 {
221 if (!tsk) return;
222 int desk;
223 switch (action) {
224 case CLOSE:
225 set_close (tsk->win);
226 break;
227 case TOGGLE:
228 set_active(tsk->win);
229 break;
230 case ICONIFY:
231 XIconifyWindow (server.dsp, tsk->win, server.screen);
232 break;
233 case TOGGLE_ICONIFY:
234 if (tsk == task_active) XIconifyWindow (server.dsp, tsk->win, server.screen);
235 else set_active (tsk->win);
236 break;
237 case SHADE:
238 window_toggle_shade (tsk->win);
239 break;
240 case MAXIMIZE_RESTORE:
241 window_maximize_restore (tsk->win);
242 break;
243 case MAXIMIZE:
244 window_maximize_restore (tsk->win);
245 break;
246 case RESTORE:
247 window_maximize_restore (tsk->win);
248 break;
249 case DESKTOP_LEFT:
250 if ( tsk->desktop == 0 ) break;
251 desk = tsk->desktop - 1;
252 windows_set_desktop(tsk->win, desk);
253 if (desk == server.desktop)
254 set_active(tsk->win);
255 break;
256 case DESKTOP_RIGHT:
257 if (tsk->desktop == server.nb_desktop ) break;
258 desk = tsk->desktop + 1;
259 windows_set_desktop(tsk->win, desk);
260 if (desk == server.desktop)
261 set_active(tsk->win);
262 }
263 }
264
265
266 void event_button_press (XEvent *e)
267 {
268 Panel *panel = get_panel(e->xany.window);
269 if (!panel) return;
270
271 if (panel_mode == MULTI_DESKTOP)
272 task_drag = click_task(panel, e->xbutton.x, e->xbutton.y);
273
274 if (wm_menu && !task_drag && !click_clock(panel, e->xbutton.x, e->xbutton.y) && (e->xbutton.button != 1) ) {
275 // forward the click to the desktop window (thanks conky)
276 XUngrabPointer(server.dsp, e->xbutton.time);
277 e->xbutton.window = server.root_win;
278 // icewm doesn't open under the mouse.
279 // and xfce doesn't open at all.
280 //e->xbutton.x = e->xbutton.x_root;
281 //e->xbutton.y = e->xbutton.y_root;
282 //printf("**** %d, %d\n", e->xbutton.x, e->xbutton.y);
283 XSetInputFocus(server.dsp, e->xbutton.window, RevertToParent, e->xbutton.time);
284 XSendEvent(server.dsp, e->xbutton.window, False, ButtonPressMask, e);
285 return;
286 }
287
288 XLowerWindow (server.dsp, panel->main_win);
289 }
290
291
292 void event_button_release (XEvent *e)
293 {
294 Panel *panel = get_panel(e->xany.window);
295 if (!panel) return;
296
297 if (wm_menu && click_padding(panel, e->xbutton.x, e->xbutton.y)) {
298 // forward the click to the desktop window (thanks conky)
299 e->xbutton.window = server.root_win;
300 XSendEvent(server.dsp, e->xbutton.window, False, ButtonReleaseMask, e);
301 return;
302 }
303
304 int action = TOGGLE_ICONIFY;
305 switch (e->xbutton.button) {
306 case 2:
307 action = mouse_middle;
308 break;
309 case 3:
310 action = mouse_right;
311 break;
312 case 4:
313 action = mouse_scroll_up;
314 break;
315 case 5:
316 action = mouse_scroll_down;
317 break;
318 case 6:
319 action = mouse_tilt_left;
320 break;
321 case 7:
322 action = mouse_tilt_right;
323 break;
324 }
325
326 if ( click_clock(panel, e->xbutton.x, e->xbutton.y)) {
327 clock_action(e->xbutton.button);
328 XLowerWindow (server.dsp, panel->main_win);
329 task_drag = 0;
330 return;
331 }
332
333 Taskbar *tskbar;
334 if ( !(tskbar = click_taskbar(panel, e->xbutton.x, e->xbutton.y)) ) {
335 // TODO: check better solution to keep window below
336 XLowerWindow (server.dsp, panel->main_win);
337 task_drag = 0;
338 return;
339 }
340
341 // drag and drop task
342 if (task_drag) {
343 if (tskbar != task_drag->area.parent && action == TOGGLE_ICONIFY) {
344 if (task_drag->desktop != ALLDESKTOP && panel_mode == MULTI_DESKTOP) {
345 windows_set_desktop(task_drag->win, tskbar->desktop);
346 if (tskbar->desktop == server.desktop)
347 set_active(task_drag->win);
348 task_drag = 0;
349 }
350 return;
351 }
352 else task_drag = 0;
353 }
354
355 // switch desktop
356 if (panel_mode == MULTI_DESKTOP) {
357 if (tskbar->desktop != server.desktop && action != CLOSE && action != DESKTOP_LEFT && action != DESKTOP_RIGHT)
358 set_desktop (tskbar->desktop);
359 }
360
361 // action on task
362 window_action( click_task(panel, e->xbutton.x, e->xbutton.y), action);
363
364 // to keep window below
365 XLowerWindow (server.dsp, panel->main_win);
366 }
367
368
369 void event_property_notify (XEvent *e)
370 {
371 int i, j;
372 Task *tsk;
373 Window win = e->xproperty.window;
374 Atom at = e->xproperty.atom;
375
376 if (win == server.root_win) {
377 if (!server.got_root_win) {
378 XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
379 server.got_root_win = 1;
380 }
381
382 // Change number of desktops
383 else if (at == server.atom._NET_NUMBER_OF_DESKTOPS) {
384 server.nb_desktop = server_get_number_of_desktop ();
385 cleanup_taskbar();
386 init_taskbar();
387 visible_object();
388 for (i=0 ; i < nb_panel ; i++) {
389 panel1[i].area.resize = 1;
390 }
391 task_refresh_tasklist();
392 panel_refresh = 1;
393 }
394 // Change desktop
395 else if (at == server.atom._NET_CURRENT_DESKTOP) {
396 int old_desktop = server.desktop;
397 server.desktop = server_get_current_desktop ();
398 for (i=0 ; i < nb_panel ; i++) {
399 Panel *panel = &panel1[i];
400 if (panel_mode == MULTI_DESKTOP && panel->g_taskbar.use_active) {
401 // redraw both taskbar
402 panel->taskbar[old_desktop].area.is_active = 0;
403 panel->taskbar[old_desktop].area.redraw = 1;
404 panel->taskbar[server.desktop].area.is_active = 1;
405 panel->taskbar[server.desktop].area.redraw = 1;
406 panel_refresh = 1;
407 }
408 // check ALLDESKTOP task => resize taskbar
409 Taskbar *tskbar;
410 Task *tsk;
411 GSList *l;
412 tskbar = &panel->taskbar[old_desktop];
413 for (l = tskbar->area.list; l ; l = l->next) {
414 tsk = l->data;
415 if (tsk->desktop == ALLDESKTOP) {
416 tsk->area.on_screen = 0;
417 tskbar->area.resize = 1;
418 panel_refresh = 1;
419 }
420 }
421 tskbar = &panel->taskbar[server.desktop];
422 for (l = tskbar->area.list; l ; l = l->next) {
423 tsk = l->data;
424 if (tsk->desktop == ALLDESKTOP) {
425 tsk->area.on_screen = 1;
426 tskbar->area.resize = 1;
427 }
428 }
429 }
430 if (panel_mode != MULTI_DESKTOP) {
431 visible_object();
432 }
433 }
434 // Window list
435 else if (at == server.atom._NET_CLIENT_LIST) {
436 task_refresh_tasklist();
437 panel_refresh = 1;
438 }
439 // Change active
440 else if (at == server.atom._NET_ACTIVE_WINDOW) {
441 GSList *l0;
442 if (task_active) {
443 for (i=0 ; i < nb_panel ; i++) {
444 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
445 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
446 tsk = l0->data;
447 tsk->area.is_active = 0;
448 }
449 }
450 }
451 task_active = 0;
452 }
453 Window w1 = window_get_active ();
454 Task *t = task_get_task(w1);
455 if (!t) {
456 Window w2;
457 if (XGetTransientForHint(server.dsp, w1, &w2) != 0)
458 if (w2) t = task_get_task(w2);
459 }
460 if (task_urgent == t) {
461 init_precision();
462 task_urgent = 0;
463 }
464 // put active state on all task (multi_desktop)
465 if (t) {
466 for (i=0 ; i < nb_panel ; i++) {
467 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
468 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
469 tsk = l0->data;
470 if (tsk->win == t->win) {
471 tsk->area.is_active = 1;
472 //printf("active monitor %d, task %s\n", panel1[i].monitor, tsk->title);
473 }
474 }
475 }
476 }
477 task_active = t;
478 }
479 panel_refresh = 1;
480 }
481 else if (at == server.atom._XROOTPMAP_ID) {
482 // change Wallpaper
483 for (i=0 ; i < nb_panel ; i++) {
484 set_panel_background(&panel1[i]);
485 }
486 panel_refresh = 1;
487 }
488 }
489 else {
490 tsk = task_get_task (win);
491 if (!tsk) {
492 if ( at != server.atom._NET_WM_STATE)
493 return;
494 else if ( !(tsk = add_task(win)) )
495 return;
496 }
497 //printf("atom root_win = %s, %s\n", XGetAtomName(server.dsp, at), tsk->title);
498
499 // Window title changed
500 if (at == server.atom._NET_WM_VISIBLE_NAME || at == server.atom._NET_WM_NAME || at == server.atom.WM_NAME) {
501 Task *tsk2;
502 GSList *l0;
503 get_title(tsk);
504 // changed other tsk->title
505 for (i=0 ; i < nb_panel ; i++) {
506 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
507 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
508 tsk2 = l0->data;
509 if (tsk->win == tsk2->win && tsk != tsk2) {
510 tsk2->title = tsk->title;
511 tsk2->area.redraw = 1;
512 }
513 }
514 }
515 }
516 panel_refresh = 1;
517 }
518 // Demand attention
519 else if (at == server.atom._NET_WM_STATE) {
520 if (window_is_urgent (win)) {
521 task_urgent = tsk;
522 tick_urgent = 0;
523 time_precision = 1;
524 }
525 if (window_is_skip_taskbar(win)) {
526 remove_task( tsk );
527 panel_refresh = 1;
528 }
529 }
530 else if (at == server.atom.WM_STATE) {
531 // Iconic state
532 // TODO : try to delete following code
533 if (window_is_iconified (win)) {
534 if (task_active) {
535 if (task_active->win == tsk->win) {
536 Task *tsk2;
537 GSList *l0;
538 for (i=0 ; i < nb_panel ; i++) {
539 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
540 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
541 tsk2 = l0->data;
542 tsk2->area.is_active = 0;
543 }
544 }
545 }
546 task_active = 0;
547 }
548 }
549 }
550 }
551 // Window icon changed
552 else if (at == server.atom._NET_WM_ICON) {
553 get_icon(tsk);
554 Task *tsk2;
555 GSList *l0;
556 for (i=0 ; i < nb_panel ; i++) {
557 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
558 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
559 tsk2 = l0->data;
560 if (tsk->win == tsk2->win && tsk != tsk2) {
561 tsk2->icon_width = tsk->icon_width;
562 tsk2->icon_height = tsk->icon_height;
563 tsk2->icon = tsk->icon;
564 tsk2->icon_active = tsk->icon_active;
565 tsk2->area.redraw = 1;
566 }
567 }
568 }
569 }
570 panel_refresh = 1;
571 }
572 // Window desktop changed
573 else if (at == server.atom._NET_WM_DESKTOP) {
574 int desktop = window_get_desktop (win);
575 int active = tsk->area.is_active;
576 //printf(" Window desktop changed %d, %d\n", tsk->desktop, desktop);
577 // bug in windowmaker : send unecessary 'desktop changed' when focus changed
578 if (desktop != tsk->desktop) {
579 remove_task (tsk);
580 tsk = add_task (win);
581 if (tsk && active) {
582 tsk->area.is_active = 1;
583 task_active = tsk;
584 }
585 panel_refresh = 1;
586 }
587 }
588 else if (at == server.atom.WM_HINTS) {
589 XWMHints* wmhints = XGetWMHints(server.dsp, win);
590 if (wmhints && wmhints->flags & XUrgencyHint) {
591 task_urgent = tsk;
592 tick_urgent = 0;
593 time_precision = 1;
594 }
595 XFree(wmhints);
596 }
597
598 if (!server.got_root_win) server.root_win = RootWindow (server.dsp, server.screen);
599 }
600 }
601
602
603 void event_expose (XEvent *e)
604 {
605 if (e->xany.window == g_tooltip.window)
606 tooltip_update();
607 else {
608 Panel *panel;
609 panel = get_panel(e->xany.window);
610 if (!panel) return;
611 // TODO : one panel_refresh per panel ?
612 panel_refresh = 1;
613 }
614 }
615
616
617 void event_configure_notify (Window win)
618 {
619 // check 'win' move in systray
620 TrayWindow *traywin;
621 GSList *l;
622 for (l = systray.list_icons; l ; l = l->next) {
623 traywin = (TrayWindow*)l->data;
624 if (traywin->id == win) {
625 //printf("move tray %d\n", traywin->x);
626 XMoveResizeWindow(server.dsp, traywin->id, traywin->x, traywin->y, traywin->width, traywin->height);
627 panel_refresh = 1;
628 return;
629 }
630 }
631
632 // check 'win' move in another monitor
633 if (nb_panel == 1) return;
634 if (server.nb_monitor == 1) return;
635 Task *tsk = task_get_task (win);
636 if (!tsk) return;
637
638 Panel *p = tsk->area.panel;
639 if (p->monitor != window_get_monitor (win)) {
640 remove_task (tsk);
641 add_task (win);
642 if (win == window_get_active ()) {
643 Task *tsk = task_get_task (win);
644 tsk->area.is_active = 1;
645 task_active = tsk;
646 }
647 panel_refresh = 1;
648 }
649 }
650
651
652 void event_timer()
653 {
654 struct timeval stv;
655 int i;
656
657 if (gettimeofday(&stv, 0)) return;
658
659 if (abs(stv.tv_sec - time_clock.tv_sec) < time_precision) return;
660 time_clock.tv_sec = stv.tv_sec;
661 time_clock.tv_sec -= time_clock.tv_sec % time_precision;
662
663 // urgent task
664 if (task_urgent) {
665 if (tick_urgent < max_tick_urgent) {
666 task_urgent->area.is_active = !task_urgent->area.is_active;
667 task_urgent->area.redraw = 1;
668 tick_urgent++;
669 }
670 }
671
672 // update battery
673 #ifdef ENABLE_BATTERY
674 if (panel1[0].battery.area.on_screen) {
675 update_battery();
676 for (i=0 ; i < nb_panel ; i++)
677 panel1[i].battery.area.resize = 1;
678 }
679 #endif
680
681 // update clock
682 if (time1_format) {
683 for (i=0 ; i < nb_panel ; i++)
684 panel1[i].clock.area.resize = 1;
685 }
686 panel_refresh = 1;
687 }
688
689
690 void dnd_message(XClientMessageEvent *e)
691 {
692 Panel *panel = get_panel(e->window);
693 int x, y, mapX, mapY;
694 Window child;
695 x = (e->data.l[2] >> 16) & 0xFFFF;
696 y = e->data.l[2] & 0xFFFF;
697 XTranslateCoordinates(server.dsp, server.root_win, e->window, x, y, &mapX, &mapY, &child);
698 Task* task = click_task(panel, mapX, mapY);
699 if (task) {
700 if (task->desktop != server.desktop )
701 set_desktop (task->desktop);
702 window_action(task, TOGGLE);
703 }
704
705 // send XdndStatus event to get more XdndPosition events
706 XClientMessageEvent se;
707 se.type = ClientMessage;
708 se.window = e->data.l[0];
709 se.message_type = server.atom.XdndStatus;
710 se.format = 32;
711 se.data.l[0] = e->window; // XID of the target window
712 se.data.l[1] = 0; // bit 0: accept drop bit 1: send XdndPosition events if inside rectangle
713 se.data.l[2] = 0; // Rectangle x,y for which no more XdndPosition events
714 se.data.l[3] = (1 << 16) | 1; // Rectangle w,h for which no more XdndPosition events
715 se.data.l[4] = None; // None = drop will not be accepted
716 XSendEvent(server.dsp, e->data.l[0], False, NoEventMask, (XEvent*)&se);
717 }
718
719
720 int main (int argc, char *argv[])
721 {
722 XEvent e;
723 fd_set fd;
724 int x11_fd, i;
725 struct timeval tv;
726 Panel *panel;
727 GSList *it;
728
729 init (argc, argv);
730 load_config:
731 i = 0;
732 init_config();
733 if (config_path)
734 i = config_read_file (config_path);
735 else
736 i = config_read ();
737 if (!i) {
738 fprintf(stderr, "usage: tint2 [-c] <config_file>\n");
739 cleanup();
740 exit(1);
741 }
742 config_finish();
743 if (thumbnail_path) {
744 // usage: tint2 -j <file> for internal use
745 printf("file %s\n", thumbnail_path);
746 cleanup();
747 exit(0);
748 }
749
750 x11_fd = ConnectionNumber(server.dsp);
751 XSync(server.dsp, False);
752
753 while (1) {
754 // thanks to AngryLlama for the timer
755 // Create a File Description Set containing x11_fd
756 FD_ZERO (&fd);
757 FD_SET (x11_fd, &fd);
758
759 tv.tv_usec = 500000;
760 tv.tv_sec = 0;
761
762 // Wait for X Event or a Timer
763 if (select(x11_fd+1, &fd, 0, 0, &tv)) {
764 while (XPending (server.dsp)) {
765 XNextEvent(server.dsp, &e);
766
767 switch (e.type) {
768 case ButtonPress:
769 tooltip_hide();
770 event_button_press (&e);
771 break;
772
773 case ButtonRelease:
774 event_button_release(&e);
775 break;
776
777 case MotionNotify: {
778 Panel* panel = get_panel(e.xmotion.window);
779 Task* task = click_task(panel, e.xmotion.x, e.xmotion.y);
780 if (task)
781 tooltip_trigger_show(task, e.xmotion.x_root, e.xmotion.y_root);
782 else
783 tooltip_trigger_hide();
784 break;
785 }
786
787 case LeaveNotify:
788 tooltip_trigger_hide();
789 break;
790
791 case Expose:
792 event_expose(&e);
793 break;
794
795 case PropertyNotify:
796 event_property_notify(&e);
797 break;
798
799 case ConfigureNotify:
800 //XMoveWindow(dpy, fen, pos_x, pos_y);
801 //XResizeWindow(dpy, fen, largeur, hauteur);
802 if (e.xconfigure.window == server.root_win)
803 goto load_config;
804 else
805 event_configure_notify (e.xconfigure.window);
806 break;
807
808 case ReparentNotify:
809 if (!systray.area.on_screen)
810 break;
811 panel = (Panel*)systray.area.panel;
812 if (e.xany.window == panel->main_win) // reparented to us
813 break;
814 // FIXME: 'reparent to us' badly detected => disabled
815 break;
816 case UnmapNotify:
817 case DestroyNotify:
818 if (!systray.area.on_screen)
819 break;
820 for (it = systray.list_icons; it; it = g_slist_next(it)) {
821 if (((TrayWindow*)it->data)->id == e.xany.window) {
822 remove_icon((TrayWindow*)it->data);
823 break;
824 }
825 }
826 break;
827
828 case ClientMessage:
829 if (!systray.area.on_screen) break;
830 if (e.xclient.message_type == server.atom._NET_SYSTEM_TRAY_OPCODE && e.xclient.format == 32 && e.xclient.window == net_sel_win) {
831 net_message(&e.xclient);
832 }
833 else if (e.xclient.message_type == server.atom.XdndPosition) {
834 dnd_message(&e.xclient);
835 }
836 break;
837 }
838 }
839 }
840 event_timer();
841
842 switch (signal_pending) {
843 case SIGUSR1:
844 signal_pending = 0;
845 goto load_config;
846 case SIGINT:
847 case SIGTERM:
848 case SIGHUP:
849 cleanup ();
850 return 0;
851 }
852
853 if (panel_refresh) {
854 panel_refresh = 0;
855
856 if (refresh_systray) {
857 panel = (Panel*)systray.area.panel;
858 XSetWindowBackgroundPixmap (server.dsp, panel->main_win, None);
859 }
860 for (i=0 ; i < nb_panel ; i++) {
861 panel = &panel1[i];
862
863 if (panel->temp_pmap) XFreePixmap(server.dsp, panel->temp_pmap);
864 panel->temp_pmap = XCreatePixmap(server.dsp, server.root_win, panel->area.width, panel->area.height, server.depth);
865
866 refresh(&panel->area);
867 XCopyArea(server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
868 }
869 XFlush (server.dsp);
870
871 if (refresh_systray) {
872 refresh_systray = 0;
873 panel = (Panel*)systray.area.panel;
874 // tint2 doen't draw systray icons. it just redraw background.
875 XSetWindowBackgroundPixmap (server.dsp, panel->main_win, panel->temp_pmap);
876 // force icon's refresh
877 refresh_systray_icon();
878 }
879 }
880 }
881 }
882
883
This page took 0.074998 seconds and 5 git commands to generate.