]> Dogcows Code - chaz/tint2/blobdiff - src/panel.h
allow to choose the number of blink for urgent task
[chaz/tint2] / src / panel.h
index c76d98a322bf055af6d12ba234c2a5173f017e88..a8247a91af375c6803a1d05393f099a633bc00a0 100644 (file)
@@ -20,6 +20,9 @@
 #include "taskbar.h"
 #include "systraybar.h"
 
+#ifdef ENABLE_BATTERY
+#include "battery.h"
+#endif
 
 
 extern int signal_pending;
@@ -31,8 +34,9 @@ extern int mouse_scroll_up;
 extern int mouse_scroll_down;
 
 //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 };
@@ -42,6 +46,9 @@ 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 {
@@ -77,12 +84,11 @@ typedef struct {
    // clock
    Clock clock;
 
-   // --------------------------------------------------
-   // systray
-   Systraybar systray;
-
-       // global taskbar parameter
-       //Area g_systraybar;
+       // --------------------------------------------------
+       // battery
+#ifdef ENABLE_BATTERY
+       Battery battery;
+#endif
 } Panel;
 
 
This page took 0.021566 seconds and 4 git commands to generate.