]> Dogcows Code - chaz/tint2/blobdiff - src/tooltip/tooltip.h
*change* make tooltip more generous, and preparation for setting a tooltip on the...
[chaz/tint2] / src / tooltip / tooltip.h
index 5089ea1d94d96a7332a8e3b71ec1502f1ae64755..462857bc95775e621c143770837c2a5808b7dfda 100644 (file)
 #include <sys/time.h>
 
 #include "task.h"
+#include "panel.h"
 
-enum tooltip_state {
-       TOOLTIP_ABOUT_TO_SHOW,
-       TOOLTIP_ABOUT_TO_HIDE,
-};
 
 typedef struct {
-       Task* task;
+       Area* area;
+       Panel* panel;
        Window window;
-       struct itimerval show_timeout;
-       struct itimerval hide_timeout;
+       struct timespec show_timeout;
+       struct timespec hide_timeout;
        Bool enabled;
-       enum tooltip_state current_state;
        Bool mapped;
        int paddingx;
        int paddingy;
@@ -41,14 +38,15 @@ typedef struct {
        config_color font_color;
        Color background_color;
        Border border;
+       int show_timer_id;
+       int hide_timer_id;
 } Tooltip;
 
 extern Tooltip g_tooltip;
 
-
 void init_tooltip();
-void tooltip_sighandler(int sig);
-void tooltip_trigger_show(Task* task, int x, int y);
+void cleanup_tooltip();
+void tooltip_trigger_show(Area* area, Panel* p, int x, int y);
 void tooltip_show();
 void tooltip_update();
 void tooltip_trigger_hide();
This page took 0.022827 seconds and 4 git commands to generate.