X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Ftooltip%2Ftooltip.h;h=c8c5d9bd2e43eba4d3c7de1c4266abce6cd8906a;hb=857a47544272e432112157dc55694faf079b8c77;hp=cddb73c74de4a703476b812432a72308336f8c79;hpb=83f23be9b6b5c2f1ae39d7d045353036b07f872d;p=chaz%2Ftint2 diff --git a/src/tooltip/tooltip.h b/src/tooltip/tooltip.h index cddb73c..c8c5d9b 100644 --- a/src/tooltip/tooltip.h +++ b/src/tooltip/tooltip.h @@ -18,41 +18,42 @@ #ifndef TOOLTIP_H #define TOOLTIP_H -#include - #include "task.h" +#include "panel.h" +#include "timer.h" -enum tooltip_state { - TOOLTIP_ABOUT_TO_SHOW, - TOOLTIP_ABOUT_TO_HIDE, -}; 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 itimerval show_timeout; - struct itimerval hide_timeout; - Bool enabled; - enum tooltip_state current_state; + int show_timeout_msec; + int hide_timeout_msec; Bool mapped; int paddingx; int paddingy; PangoFontDescription* font_desc; - config_color font_color; - Color background_color; - Border border; + 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_sighandler(int sig); -void tooltip_trigger_show(Task* task, int x, int y); -void tooltip_show(); + +void init_tooltip(); +void tooltip_trigger_show(Area* area, Panel* p, XEvent *e); +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