]> Dogcows Code - chaz/tint2/blob - src/panel.c
cleanup code
[chaz/tint2] / src / panel.c
1 /**************************************************************************
2 *
3 * Copyright (C) 2008 Pål Staurland (staura@gmail.com)
4 * Modified (C) 2008 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 <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <X11/Xlib.h>
23 #include <X11/Xutil.h>
24 #include <X11/Xatom.h>
25 #include <cairo.h>
26 #include <cairo-xlib.h>
27 #include <pango/pangocairo.h>
28
29 #include "server.h"
30 #include "config.h"
31 #include "window.h"
32 #include "task.h"
33 #include "panel.h"
34 #include "tooltip.h"
35
36
37 int signal_pending;
38 // --------------------------------------------------
39 // mouse events
40 int mouse_middle;
41 int mouse_right;
42 int mouse_scroll_up;
43 int mouse_scroll_down;
44 int mouse_tilt_left;
45 int mouse_tilt_right;
46
47 int panel_mode;
48 int wm_menu;
49 int panel_dock;
50 int panel_layer;
51 int panel_position;
52 int panel_horizontal;
53 int panel_refresh;
54 int task_dragged;
55
56 int panel_autohide;
57 int panel_autohide_show_timeout;
58 int panel_autohide_hide_timeout;
59 int panel_autohide_height;
60 int panel_strut_policy;
61 char *panel_items_order;
62
63 int max_tick_urgent;
64
65 // panel's initial config
66 Panel panel_config;
67 // panels (one panel per monitor)
68 Panel *panel1;
69 int nb_panel;
70
71 GArray* backgrounds;
72
73 Imlib_Image default_icon;
74
75 void default_panel()
76 {
77 panel1 = 0;
78 nb_panel = 0;
79 default_icon = NULL;
80 task_dragged = 0;
81 panel_horizontal = 1;
82 panel_position = CENTER;
83 panel_items_order = 0;
84 panel_autohide = 0;
85 panel_autohide_show_timeout = 0;
86 panel_autohide_hide_timeout = 0;
87 panel_autohide_height = 5; // for vertical panels this is of course the width
88 panel_strut_policy = STRUT_FOLLOW_SIZE;
89 panel_dock = 0; // default not in the dock
90 panel_layer = BOTTOM_LAYER; // default is bottom layer
91 wm_menu = 0;
92 max_tick_urgent = 14;
93 backgrounds = g_array_new(0, 0, sizeof(Background));
94
95 memset(&panel_config, 0, sizeof(Panel));
96
97 // append full transparency background
98 Background transparent_bg;
99 memset(&transparent_bg, 0, sizeof(Background));
100 g_array_append_val(backgrounds, transparent_bg);
101 }
102
103 void cleanup_panel()
104 {
105 if (!panel1) return;
106
107 cleanup_taskbar();
108
109 int i;
110 Panel *p;
111 for (i=0 ; i < nb_panel ; i++) {
112 p = &panel1[i];
113
114 free_area(&p->area);
115 if (p->temp_pmap) XFreePixmap(server.dsp, p->temp_pmap);
116 if (p->hidden_pixmap) XFreePixmap(server.dsp, p->hidden_pixmap);
117 if (p->main_win) XDestroyWindow(server.dsp, p->main_win);
118 }
119
120 if (panel_items_order) g_free(panel_items_order);
121 if (panel1) free(panel1);
122 if (backgrounds)
123 g_array_free(backgrounds, 1);
124 if (panel_config.g_task.font_desc) pango_font_description_free(panel_config.g_task.font_desc);
125 }
126
127 void init_panel()
128 {
129 int i, k;
130 Panel *p;
131
132 if (panel_config.monitor > (server.nb_monitor-1)) {
133 // server.nb_monitor minimum value is 1 (see get_monitors())
134 fprintf(stderr, "warning : monitor not found. tint2 default to all monitors.\n");
135 panel_config.monitor = 0;
136 }
137
138 init_tooltip();
139 init_systray();
140 init_launcher();
141 init_clock();
142 #ifdef ENABLE_BATTERY
143 init_battery();
144 #endif
145 init_taskbar();
146
147 // number of panels (one monitor or 'all' monitors)
148 if (panel_config.monitor >= 0)
149 nb_panel = 1;
150 else
151 nb_panel = server.nb_monitor;
152
153 panel1 = malloc(nb_panel * sizeof(Panel));
154 for (i=0 ; i < nb_panel ; i++) {
155 memcpy(&panel1[i], &panel_config, sizeof(Panel));
156 }
157
158 fprintf(stderr, "tint2 : nb monitor %d, nb monitor used %d, nb desktop %d\n", server.nb_monitor, nb_panel, server.nb_desktop);
159 for (i=0 ; i < nb_panel ; i++) {
160 p = &panel1[i];
161
162 if (panel_config.monitor < 0)
163 p->monitor = i;
164 if ( p->area.bg == 0 )
165 p->area.bg = &g_array_index(backgrounds, Background, 0);
166 p->area.parent = p;
167 p->area.panel = p;
168 p->area.on_screen = 1;
169 p->area.resize = 1;
170 p->area.size_mode = SIZE_BY_LAYOUT;
171 p->area._resize = resize_by_layout;
172 p->g_taskbar.area.parent = p;
173 p->g_taskbar.area.panel = p;
174 p->g_task.area.panel = p;
175 init_panel_size_and_position(p);
176 // add childs according to panel_items
177 for (k=0 ; k < strlen(panel_items_order) ; k++) {
178 if (panel_items_order[k] == 'L')
179 init_launcher_panel(p);
180 if (panel_items_order[k] == 'T')
181 init_taskbar_panel(p);
182 #ifdef ENABLE_BATTERY
183 if (panel_items_order[k] == 'B')
184 init_battery_panel(p);
185 #endif
186 if (panel_items_order[k] == 'S') {
187 // TODO : check systray is only on 1 panel
188 init_systray_panel(p);
189 refresh_systray = 1;
190 }
191 if (panel_items_order[k] == 'C')
192 init_clock_panel(p);
193 }
194 set_panel_items_order(p);
195
196 // catch some events
197 XSetWindowAttributes att = { .colormap=server.colormap, .background_pixel=0, .border_pixel=0 };
198 unsigned long mask = CWEventMask|CWColormap|CWBackPixel|CWBorderPixel;
199 p->main_win = XCreateWindow(server.dsp, server.root_win, p->posx, p->posy, p->area.width, p->area.height, 0, server.depth, InputOutput, server.visual, mask, &att);
200
201 long event_mask = ExposureMask|ButtonPressMask|ButtonReleaseMask|ButtonMotionMask;
202 if (g_tooltip.enabled)
203 event_mask |= PointerMotionMask|LeaveWindowMask;
204 if (panel_autohide)
205 event_mask |= LeaveWindowMask|EnterWindowMask;
206 XChangeWindowAttributes(server.dsp, p->main_win, CWEventMask, &(XSetWindowAttributes){.event_mask=event_mask});
207
208 if (!server.gc) {
209 XGCValues gcv;
210 server.gc = XCreateGC(server.dsp, p->main_win, 0, &gcv);
211 }
212 //printf("panel %d : %d, %d, %d, %d\n", i, p->posx, p->posy, p->area.width, p->area.height);
213 set_panel_properties(p);
214 set_panel_background(p);
215 if (snapshot_path == 0) {
216 // if we are not in 'snapshot' mode then map new panel
217 XMapWindow (server.dsp, p->main_win);
218 }
219
220 if (panel_autohide)
221 add_timeout(panel_autohide_hide_timeout, 0, autohide_hide, p);
222
223 visible_taskbar(p);
224 }
225
226 task_refresh_tasklist();
227 active_task();
228 }
229
230
231 void init_panel_size_and_position(Panel *panel)
232 {
233 // detect panel size
234 if (panel_horizontal) {
235 if (panel->pourcentx)
236 panel->area.width = (float)server.monitor[panel->monitor].width * panel->area.width / 100;
237 if (panel->pourcenty)
238 panel->area.height = (float)server.monitor[panel->monitor].height * panel->area.height / 100;
239 if (panel->area.bg->border.rounded > panel->area.height/2) {
240 printf("panel_background_id rounded is too big... please fix your tint2rc\n");
241 g_array_append_val(backgrounds, *panel->area.bg);
242 panel->area.bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
243 panel->area.bg->border.rounded = panel->area.height/2;
244 }
245 }
246 else {
247 int old_panel_height = panel->area.height;
248 if (panel->pourcentx)
249 panel->area.height = (float)server.monitor[panel->monitor].height * panel->area.width / 100;
250 else
251 panel->area.height = panel->area.width;
252 if (panel->pourcenty)
253 panel->area.width = (float)server.monitor[panel->monitor].width * old_panel_height / 100;
254 else
255 panel->area.width = old_panel_height;
256 if (panel->area.bg->border.rounded > panel->area.width/2) {
257 printf("panel_background_id rounded is too big... please fix your tint2rc\n");
258 g_array_append_val(backgrounds, *panel->area.bg);
259 panel->area.bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
260 panel->area.bg->border.rounded = panel->area.width/2;
261 }
262 }
263
264 // panel position determined here
265 if (panel_position & LEFT) {
266 panel->posx = server.monitor[panel->monitor].x + panel->marginx;
267 }
268 else {
269 if (panel_position & RIGHT) {
270 panel->posx = server.monitor[panel->monitor].x + server.monitor[panel->monitor].width - panel->area.width - panel->marginx;
271 }
272 else {
273 if (panel_horizontal)
274 panel->posx = server.monitor[panel->monitor].x + ((server.monitor[panel->monitor].width - panel->area.width) / 2);
275 else
276 panel->posx = server.monitor[panel->monitor].x + panel->marginx;
277 }
278 }
279 if (panel_position & TOP) {
280 panel->posy = server.monitor[panel->monitor].y + panel->marginy;
281 }
282 else {
283 if (panel_position & BOTTOM) {
284 panel->posy = server.monitor[panel->monitor].y + server.monitor[panel->monitor].height - panel->area.height - panel->marginy;
285 }
286 else {
287 panel->posy = server.monitor[panel->monitor].y + ((server.monitor[panel->monitor].height - panel->area.height) / 2);
288 }
289 }
290
291 // autohide or strut_policy=minimum
292 int diff = (panel_horizontal ? panel->area.height : panel->area.width) - panel_autohide_height;
293 if (panel_horizontal) {
294 panel->hidden_width = panel->area.width;
295 panel->hidden_height = panel->area.height - diff;
296 }
297 else {
298 panel->hidden_width = panel->area.width - diff;
299 panel->hidden_height = panel->area.height;
300 }
301 // printf("panel : posx %d, posy %d, width %d, height %d\n", panel->posx, panel->posy, panel->area.width, panel->area.height);
302 }
303
304
305 void update_strut(Panel* p)
306 {
307 if (panel_strut_policy == STRUT_NONE) {
308 XDeleteProperty(server.dsp, p->main_win, server.atom._NET_WM_STRUT);
309 XDeleteProperty(server.dsp, p->main_win, server.atom._NET_WM_STRUT_PARTIAL);
310 return;
311 }
312
313 // Reserved space
314 unsigned int d1, screen_width, screen_height;
315 Window d2;
316 int d3;
317 XGetGeometry(server.dsp, server.root_win, &d2, &d3, &d3, &screen_width, &screen_height, &d1, &d1);
318 Monitor monitor = server.monitor[p->monitor];
319 long struts [12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
320 if (panel_horizontal) {
321 int height = p->area.height + p->marginy;
322 if (panel_strut_policy == STRUT_MINIMUM || (panel_strut_policy == STRUT_FOLLOW_SIZE && p->is_hidden))
323 height = p->hidden_height;
324 if (panel_position & TOP) {
325 struts[2] = height + monitor.y;
326 struts[8] = p->posx;
327 // p->area.width - 1 allowed full screen on monitor 2
328 struts[9] = p->posx + p->area.width - 1;
329 }
330 else {
331 struts[3] = height + screen_height - monitor.y - monitor.height;
332 struts[10] = p->posx;
333 // p->area.width - 1 allowed full screen on monitor 2
334 struts[11] = p->posx + p->area.width - 1;
335 }
336 }
337 else {
338 int width = p->area.width + p->marginx;
339 if (panel_strut_policy == STRUT_MINIMUM || (panel_strut_policy == STRUT_FOLLOW_SIZE && p->is_hidden))
340 width = p->hidden_width;
341 if (panel_position & LEFT) {
342 struts[0] = width + monitor.x;
343 struts[4] = p->posy;
344 // p->area.width - 1 allowed full screen on monitor 2
345 struts[5] = p->posy + p->area.height - 1;
346 }
347 else {
348 struts[1] = width + screen_width - monitor.x - monitor.width;
349 struts[6] = p->posy;
350 // p->area.width - 1 allowed full screen on monitor 2
351 struts[7] = p->posy + p->area.height - 1;
352 }
353 }
354 // Old specification : fluxbox need _NET_WM_STRUT.
355 XChangeProperty (server.dsp, p->main_win, server.atom._NET_WM_STRUT, XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &struts, 4);
356 XChangeProperty (server.dsp, p->main_win, server.atom._NET_WM_STRUT_PARTIAL, XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &struts, 12);
357 }
358
359
360 void set_panel_items_order(Panel *p)
361 {
362 int k, j;
363
364 if (p->area.list) {
365 g_slist_free(p->area.list);
366 p->area.list = 0;
367 }
368
369 for (k=0 ; k < strlen(panel_items_order) ; k++) {
370 if (panel_items_order[k] == 'L')
371 p->area.list = g_slist_append(p->area.list, &p->launcher);
372 if (panel_items_order[k] == 'T') {
373 for (j=0 ; j < p->nb_desktop ; j++)
374 p->area.list = g_slist_append(p->area.list, &p->taskbar[j]);
375 }
376 #ifdef ENABLE_BATTERY
377 if (panel_items_order[k] == 'B')
378 p->area.list = g_slist_append(p->area.list, &p->battery);
379 #endif
380 if (panel_items_order[k] == 'S') {
381 // TODO : check systray is only on 1 panel
382 p->area.list = g_slist_append(p->area.list, &systray);
383 }
384 if (panel_items_order[k] == 'C')
385 p->area.list = g_slist_append(p->area.list, &p->clock);
386 }
387 init_rendering(&p->area, 0);
388 }
389
390
391 void set_panel_properties(Panel *p)
392 {
393 XStoreName (server.dsp, p->main_win, "tint2");
394
395 gsize len;
396 gchar *name = g_locale_to_utf8("tint2", -1, NULL, &len, NULL);
397 if (name != NULL) {
398 XChangeProperty(server.dsp, p->main_win, server.atom._NET_WM_NAME, server.atom.UTF8_STRING, 8, PropModeReplace, (unsigned char *) name, (int) len);
399 g_free(name);
400 }
401
402 // Dock
403 long val = server.atom._NET_WM_WINDOW_TYPE_DOCK;
404 XChangeProperty (server.dsp, p->main_win, server.atom._NET_WM_WINDOW_TYPE, XA_ATOM, 32, PropModeReplace, (unsigned char *) &val, 1);
405
406 // Sticky and below other window
407 val = ALLDESKTOP;
408 XChangeProperty (server.dsp, p->main_win, server.atom._NET_WM_DESKTOP, XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &val, 1);
409 Atom state[4];
410 state[0] = server.atom._NET_WM_STATE_SKIP_PAGER;
411 state[1] = server.atom._NET_WM_STATE_SKIP_TASKBAR;
412 state[2] = server.atom._NET_WM_STATE_STICKY;
413 state[3] = panel_layer == BOTTOM_LAYER ? server.atom._NET_WM_STATE_BELOW : server.atom._NET_WM_STATE_ABOVE;
414 int nb_atoms = panel_layer == NORMAL_LAYER ? 3 : 4;
415 XChangeProperty (server.dsp, p->main_win, server.atom._NET_WM_STATE, XA_ATOM, 32, PropModeReplace, (unsigned char *) state, nb_atoms);
416
417 // Unfocusable
418 XWMHints wmhints;
419 if (panel_dock) {
420 wmhints.icon_window = wmhints.window_group = p->main_win;
421 wmhints.flags = StateHint | IconWindowHint;
422 wmhints.initial_state = WithdrawnState;
423 }
424 else {
425 wmhints.flags = InputHint;
426 wmhints.input = False;
427 }
428 XSetWMHints(server.dsp, p->main_win, &wmhints);
429
430 // Undecorated
431 long prop[5] = { 2, 0, 0, 0, 0 };
432 XChangeProperty(server.dsp, p->main_win, server.atom._MOTIF_WM_HINTS, server.atom._MOTIF_WM_HINTS, 32, PropModeReplace, (unsigned char *) prop, 5);
433
434 // XdndAware - Register for Xdnd events
435 Atom version=4;
436 XChangeProperty(server.dsp, p->main_win, server.atom.XdndAware, XA_ATOM, 32, PropModeReplace, (unsigned char*)&version, 1);
437
438 update_strut(p);
439
440 // Fixed position and non-resizable window
441 // Allow panel move and resize when tint2 reload config file
442 int minwidth = panel_autohide ? p->hidden_width : p->area.width;
443 int minheight = panel_autohide ? p->hidden_height : p->area.height;
444 XSizeHints size_hints;
445 size_hints.flags = PPosition|PMinSize|PMaxSize;
446 size_hints.min_width = minwidth;
447 size_hints.max_width = p->area.width;
448 size_hints.min_height = minheight;
449 size_hints.max_height = p->area.height;
450 XSetWMNormalHints(server.dsp, p->main_win, &size_hints);
451
452 // Set WM_CLASS
453 XClassHint* classhint = XAllocClassHint();
454 classhint->res_name = "tint2";
455 classhint->res_class = "Tint2";
456 XSetClassHint(server.dsp, p->main_win, classhint);
457 XFree(classhint);
458 }
459
460
461 void set_panel_background(Panel *p)
462 {
463 if (p->area.pix) XFreePixmap (server.dsp, p->area.pix);
464 p->area.pix = XCreatePixmap (server.dsp, server.root_win, p->area.width, p->area.height, server.depth);
465
466 int xoff=0, yoff=0;
467 if (panel_horizontal && panel_position & BOTTOM)
468 yoff = p->area.height-p->hidden_height;
469 else if (!panel_horizontal && panel_position & RIGHT)
470 xoff = p->area.width-p->hidden_width;
471
472 if (server.real_transparency) {
473 clear_pixmap(p->area.pix, 0, 0, p->area.width, p->area.height);
474 }
475 else {
476 get_root_pixmap();
477 // copy background (server.root_pmap) in panel.area.pix
478 Window dummy;
479 int x, y;
480 XTranslateCoordinates(server.dsp, p->main_win, server.root_win, 0, 0, &x, &y, &dummy);
481 if (panel_autohide && p->is_hidden) {
482 x -= xoff;
483 y -= yoff;
484 }
485 XSetTSOrigin(server.dsp, server.gc, -x, -y);
486 XFillRectangle(server.dsp, p->area.pix, server.gc, 0, 0, p->area.width, p->area.height);
487 }
488
489 // draw background panel
490 cairo_surface_t *cs;
491 cairo_t *c;
492 cs = cairo_xlib_surface_create (server.dsp, p->area.pix, server.visual, p->area.width, p->area.height);
493 c = cairo_create (cs);
494 draw_background(&p->area, c);
495 cairo_destroy (c);
496 cairo_surface_destroy (cs);
497
498 if (panel_autohide) {
499 if (p->hidden_pixmap) XFreePixmap(server.dsp, p->hidden_pixmap);
500 p->hidden_pixmap = XCreatePixmap(server.dsp, server.root_win, p->hidden_width, p->hidden_height, server.depth);
501 XCopyArea(server.dsp, p->area.pix, p->hidden_pixmap, server.gc, xoff, yoff, p->hidden_width, p->hidden_height, 0, 0);
502 }
503
504 // redraw panel's object
505 //p->area.redraw = 1;
506 GSList *l0;
507 Area *a;
508 for (l0 = p->area.list; l0 ; l0 = l0->next) {
509 a = l0->data;
510 set_redraw(a);
511 }
512
513 // reset task 'state_pix'
514 int i;
515 Taskbar *tskbar;
516 for (i=0 ; i < p->nb_desktop ; i++) {
517 tskbar = &p->taskbar[i];
518 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
519 set_task_redraw((Task *)l0->data);
520 }
521 }
522 }
523
524
525 Panel *get_panel(Window win)
526 {
527 int i;
528 for (i=0 ; i < nb_panel ; i++) {
529 if (panel1[i].main_win == win) {
530 return &panel1[i];
531 }
532 }
533 return 0;
534 }
535
536
537 Taskbar *click_taskbar (Panel *panel, int x, int y)
538 {
539 Taskbar *tskbar;
540 int i;
541
542 if (panel_horizontal) {
543 for (i=0; i < panel->nb_desktop ; i++) {
544 tskbar = &panel->taskbar[i];
545 if (tskbar->area.on_screen && x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
546 return tskbar;
547 }
548 }
549 else {
550 for (i=0; i < panel->nb_desktop ; i++) {
551 tskbar = &panel->taskbar[i];
552 if (tskbar->area.on_screen && y >= tskbar->area.posy && y <= (tskbar->area.posy + tskbar->area.height))
553 return tskbar;
554 }
555 }
556 return NULL;
557 }
558
559
560 Task *click_task (Panel *panel, int x, int y)
561 {
562 GSList *l0;
563 Taskbar *tskbar;
564
565 if ( (tskbar = click_taskbar(panel, x, y)) ) {
566 if (panel_horizontal) {
567 Task *tsk;
568 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
569 tsk = l0->data;
570 if (tsk->area.on_screen && x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
571 return tsk;
572 }
573 }
574 }
575 else {
576 Task *tsk;
577 for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
578 tsk = l0->data;
579 if (tsk->area.on_screen && y >= tsk->area.posy && y <= (tsk->area.posy + tsk->area.height)) {
580 return tsk;
581 }
582 }
583 }
584 }
585 return NULL;
586 }
587
588
589 Launcher *click_launcher (Panel *panel, int x, int y)
590 {
591 Launcher *launcher = &panel->launcher;
592
593 if (panel_horizontal) {
594 if (launcher->area.on_screen && x >= launcher->area.posx && x <= (launcher->area.posx + launcher->area.width))
595 return launcher;
596 }
597 else {
598 if (launcher->area.on_screen && y >= launcher->area.posy && y <= (launcher->area.posy + launcher->area.height))
599 return launcher;
600 }
601 return NULL;
602 }
603
604
605 LauncherIcon *click_launcher_icon (Panel *panel, int x, int y)
606 {
607 GSList *l0;
608 Launcher *launcher;
609
610 //printf("Click x=%d y=%d\n", x, y);
611 if ( (launcher = click_launcher(panel, x, y)) ) {
612 LauncherIcon *icon;
613 for (l0 = launcher->list_icons; l0 ; l0 = l0->next) {
614 icon = l0->data;
615 if (x >= (launcher->area.posx + icon->x) && x <= (launcher->area.posx + icon->x + icon->icon_size) &&
616 y >= (launcher->area.posy + icon->y) && y <= (launcher->area.posy + icon->y + icon->icon_size)) {
617 //printf("Hit rect x=%d y=%d xmax=%d ymax=%d\n", launcher->area.posx + icon->x, launcher->area.posy + icon->y, launcher->area.posx + icon->x + icon->width, launcher->area.posy + icon->y + icon->height);
618 return icon;
619 }
620 }
621 }
622 return NULL;
623 }
624
625
626 int click_padding(Panel *panel, int x, int y)
627 {
628 if (panel_horizontal) {
629 if (x < panel->area.paddingxlr || x > panel->area.width-panel->area.paddingxlr)
630 return 1;
631 }
632 else {
633 if (y < panel->area.paddingxlr || y > panel->area.height-panel->area.paddingxlr)
634 return 1;
635 }
636 return 0;
637 }
638
639
640 int click_clock(Panel *panel, int x, int y)
641 {
642 Clock clk = panel->clock;
643 if (panel_horizontal) {
644 if (clk.area.on_screen && x >= clk.area.posx && x <= (clk.area.posx + clk.area.width))
645 return TRUE;
646 } else {
647 if (clk.area.on_screen && y >= clk.area.posy && y <= (clk.area.posy + clk.area.height))
648 return TRUE;
649 }
650 return FALSE;
651 }
652
653
654 Area* click_area(Panel *panel, int x, int y)
655 {
656 Area* result = &panel->area;
657 Area* new_result = result;
658 do {
659 result = new_result;
660 GSList* it = result->list;
661 while (it) {
662 Area* a = it->data;
663 if (panel_horizontal) {
664 if (a->on_screen && x >= a->posx && x <= (a->posx + a->width)) {
665 new_result = a;
666 break;
667 }
668 } else {
669 if (a->on_screen && y >= a->posy && y <= (a->posy + a->height)) {
670 new_result = a;
671 break;
672 }
673 }
674 it = it->next;
675 }
676 } while (new_result != result);
677 return result;
678 }
679
680
681 void stop_autohide_timeout(Panel* p)
682 {
683 if (p->autohide_timeout) {
684 stop_timeout(p->autohide_timeout);
685 p->autohide_timeout = 0;
686 }
687 }
688
689
690 void autohide_show(void* p)
691 {
692 Panel* panel = p;
693 stop_autohide_timeout(panel);
694 panel->is_hidden = 0;
695 if (panel_strut_policy == STRUT_FOLLOW_SIZE)
696 update_strut(p);
697
698 XMapSubwindows(server.dsp, panel->main_win); // systray windows
699 if (panel_horizontal) {
700 if (panel_position & TOP)
701 XResizeWindow(server.dsp, panel->main_win, panel->area.width, panel->area.height);
702 else
703 XMoveResizeWindow(server.dsp, panel->main_win, panel->posx, panel->posy, panel->area.width, panel->area.height);
704 }
705 else {
706 if (panel_position & LEFT)
707 XResizeWindow(server.dsp, panel->main_win, panel->area.width, panel->area.height);
708 else
709 XMoveResizeWindow(server.dsp, panel->main_win, panel->posx, panel->posy, panel->area.width, panel->area.height);
710 }
711 refresh_systray = 1; // ugly hack, because we actually only need to call XSetBackgroundPixmap
712 panel_refresh = 1;
713 }
714
715
716 void autohide_hide(void* p)
717 {
718 Panel* panel = p;
719 stop_autohide_timeout(panel);
720 panel->is_hidden = 1;
721 if (panel_strut_policy == STRUT_FOLLOW_SIZE)
722 update_strut(p);
723
724 XUnmapSubwindows(server.dsp, panel->main_win); // systray windows
725 int diff = (panel_horizontal ? panel->area.height : panel->area.width) - panel_autohide_height;
726 //printf("autohide_hide : diff %d, w %d, h %d\n", diff, panel->hidden_width, panel->hidden_height);
727 if (panel_horizontal) {
728 if (panel_position & TOP)
729 XResizeWindow(server.dsp, panel->main_win, panel->hidden_width, panel->hidden_height);
730 else
731 XMoveResizeWindow(server.dsp, panel->main_win, panel->posx, panel->posy+diff, panel->hidden_width, panel->hidden_height);
732 }
733 else {
734 if (panel_position & LEFT)
735 XResizeWindow(server.dsp, panel->main_win, panel->hidden_width, panel->hidden_height);
736 else
737 XMoveResizeWindow(server.dsp, panel->main_win, panel->posx+diff, panel->posy, panel->hidden_width, panel->hidden_height);
738 }
739 panel_refresh = 1;
740 }
741
742
743 void autohide_trigger_show(Panel* p)
744 {
745 if (!p)
746 return;
747 if (p->autohide_timeout)
748 change_timeout(p->autohide_timeout, panel_autohide_show_timeout, 0, autohide_show, p);
749 else
750 p->autohide_timeout = add_timeout(panel_autohide_show_timeout, 0, autohide_show, p);
751 }
752
753
754 void autohide_trigger_hide(Panel* p)
755 {
756 if (!p)
757 return;
758
759 Window root, child;
760 int xr, yr, xw, yw;
761 unsigned int mask;
762 if (XQueryPointer(server.dsp, p->main_win, &root, &child, &xr, &yr, &xw, &yw, &mask))
763 if (child) return; // mouse over one of the system tray icons
764
765 if (p->autohide_timeout)
766 change_timeout(p->autohide_timeout, panel_autohide_hide_timeout, 0, autohide_hide, p);
767 else
768 p->autohide_timeout = add_timeout(panel_autohide_hide_timeout, 0, autohide_hide, p);
769 }
This page took 0.069151 seconds and 4 git commands to generate.