]> Dogcows Code - chaz/tint2/blobdiff - src/tooltip/tooltip.h
moved initial values in function default_xxx
[chaz/tint2] / src / tooltip / tooltip.h
index 82752d6b2ec0e0b2eff9336b7caed1c5d0b539c4..e4e54d37ee6838aa40a7178776835cb3c63e3be7 100644 (file)
 #ifndef TOOLTIP_H
 #define TOOLTIP_H
 
-#include <sys/time.h>
-
 #include "task.h"
 #include "panel.h"
+#include "timer.h"
 
 
 typedef struct {
@@ -29,28 +28,32 @@ typedef struct {
        char* tooltip_text;
        Panel* panel;
        Window window;
-       struct timespec show_timeout;
-       struct timespec hide_timeout;
+       int show_timeout_msec;
+       int hide_timeout_msec;
        Bool enabled;
        Bool mapped;
        int paddingx;
        int paddingy;
        PangoFontDescription* font_desc;
-       config_color font_color;
-       Color background_color;
-       Border border;
-       int show_timer_id;
-       int hide_timer_id;
+       Color font_color;
+       Background* bg;
+       timeout* timeout;
 } Tooltip;
 
 extern Tooltip g_tooltip;
 
-void init_tooltip();
+
+// default values
+void default_tooltip();
+// freed memory
 void cleanup_tooltip();
+
+void init_tooltip();
 void tooltip_trigger_show(Area* area, Panel* p, int x, int y);
-void tooltip_show();
+void tooltip_show(void* /*arg*/);
 void tooltip_update();
 void tooltip_trigger_hide();
-void tooltip_hide();
+void tooltip_hide(void* /*arg*/);
+void tooltip_copy_text(Area* area);
 
 #endif // TOOLTIP_H
This page took 0.023915 seconds and 4 git commands to generate.