X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Ftooltip%2Ftooltip.h;h=fbf71b5794e17139ebe86afa1651329558f86a9d;hb=6ffe31fcfefd9299dda5627762653c0b252c66e6;hp=53f1256a7015849909459f4e6c1960d01574dd12;hpb=61232646c1684ec38a7281abc473b44fde11efd0;p=chaz%2Ftint2 diff --git a/src/tooltip/tooltip.h b/src/tooltip/tooltip.h index 53f1256..fbf71b5 100644 --- a/src/tooltip/tooltip.h +++ b/src/tooltip/tooltip.h @@ -18,36 +18,43 @@ #ifndef TOOLTIP_H #define TOOLTIP_H -#include - #include "task.h" +#include "panel.h" +#include "timer.h" typedef struct { - Task* task; + Area* area; // never ever use the area attribut if you are not 100% sure that this area was not freed + 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 global data +void default_tooltip(); + +// freed memory void cleanup_tooltip(); -void tooltip_trigger_show(Task* task, int x, int y); -void tooltip_show(); + +void init_tooltip(); +void tooltip_trigger_show(Area* area, Panel* p, int x, int y); +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