X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fpanel.h;h=cce1d3b35c5f971b778bd9edeb897e207930c595;hb=462228f2e82c6e5f61baeb49b6358273728baa90;hp=52665cd19f09003eee62639abed69b32e3c4d07d;hpb=21dcd195642692401f855ef07b239364b5ef0c1b;p=chaz%2Ftint2 diff --git a/src/panel.h b/src/panel.h index 52665cd..cce1d3b 100644 --- a/src/panel.h +++ b/src/panel.h @@ -50,10 +50,20 @@ extern int panel_horizontal; extern int panel_refresh; +//panel autohide +enum { STRUT_MINIMUM, STRUT_FOLLOW_SIZE }; +extern int panel_autohide; +extern int panel_autohide_show_timeout; +extern int panel_autohide_hide_timeout; +extern int panel_autohide_height; // for vertical panels this is of course the width +extern int panel_strut_policy; + extern Task *task_active; extern Task *task_drag; extern int max_tick_urgent; +extern GArray* backgrounds; + extern Imlib_Image default_icon; @@ -77,7 +87,7 @@ typedef struct { // -------------------------------------------------- // task and taskbar parameter per panel - Area g_taskbar; + Global_taskbar g_taskbar; Global_task g_task; // -------------------------------------------------- @@ -97,6 +107,12 @@ typedef struct { #ifdef ENABLE_BATTERY Battery battery; #endif + + // autohide + int is_hidden; + int hidden_width, hidden_height; + Pixmap hidden_pixmap; + timeout* autohide_timeout; } Panel; @@ -127,4 +143,7 @@ int click_padding(Panel *panel, int x, int y); int click_clock(Panel *panel, int x, int y); Area* click_area(Panel *panel, int x, int y); +void autohide_trigger_show(); +void autohide_trigger_hide(); + #endif