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