X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fpanel.h;h=9974b27a1ae65ea2243b07d86a9531762c4527fd;hb=b19c7cbd47d9f5ea08046725b195706e11d0dae6;hp=5992f7a803a0c106a5ccfa8c96335f8dac9ce3da;hpb=0357305cec0f78ba4d4717467025ead6be25ce0c;p=chaz%2Ftint2 diff --git a/src/panel.h b/src/panel.h index 5992f7a..9974b27 100644 --- a/src/panel.h +++ b/src/panel.h @@ -20,6 +20,9 @@ #include "taskbar.h" #include "systraybar.h" +#ifdef ENABLE_BATTERY +#include "battery.h" +#endif extern int signal_pending; @@ -29,29 +32,38 @@ extern int mouse_middle; extern int mouse_right; extern int mouse_scroll_up; extern int mouse_scroll_down; +extern int mouse_tilt_left; +extern int mouse_tilt_right; //panel mode -enum { SINGLE_DESKTOP=0, MULTI_DESKTOP, SINGLE_MONITOR }; +enum { SINGLE_DESKTOP=0, MULTI_DESKTOP }; extern int panel_mode; +extern int wm_menu; //panel position enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 }; extern int panel_position; +extern int panel_horizontal; extern int panel_refresh; extern Task *task_active; extern Task *task_drag; +extern Task *task_urgent; +extern int tick_urgent; +extern int max_tick_urgent; typedef struct { // always start with area + // area.list own all objects of the panel according to config file Area area; // -------------------------------------------------- // panel Window main_win; - Pixmap root_pmap; + Pixmap temp_pmap; + // position relative to root window int posx, posy; int marginx, marginy; @@ -61,7 +73,7 @@ typedef struct { int monitor; // -------------------------------------------------- - // task annd taskbar parameter per panel + // task and taskbar parameter per panel Area g_taskbar; Global_task g_task; @@ -75,9 +87,11 @@ typedef struct { // clock Clock clock; - // -------------------------------------------------- - // systray - Systraybar systraybar; + // -------------------------------------------------- + // battery +#ifdef ENABLE_BATTERY + Battery battery; +#endif } Panel; @@ -87,13 +101,15 @@ extern int nb_panel; void init_panel(); void cleanup_panel(); -void visual_refresh(Panel *p); +void resize_panel(void *obj); + void set_panel_properties(Panel *p); void visible_object(); // draw background panel void set_panel_background(Panel *p); +// detect witch panel Panel *get_panel(Window win); #endif