X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Ftooltip%2Ftooltip.h;h=82752d6b2ec0e0b2eff9336b7caed1c5d0b539c4;hb=b4a0127130213dba32519e1b478257228aa4dc10;hp=53f1256a7015849909459f4e6c1960d01574dd12;hpb=61232646c1684ec38a7281abc473b44fde11efd0;p=chaz%2Ftint2 diff --git a/src/tooltip/tooltip.h b/src/tooltip/tooltip.h index 53f1256..82752d6 100644 --- a/src/tooltip/tooltip.h +++ b/src/tooltip/tooltip.h @@ -21,10 +21,13 @@ #include #include "task.h" +#include "panel.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; @@ -44,7 +47,7 @@ extern Tooltip g_tooltip; void init_tooltip(); void cleanup_tooltip(); -void tooltip_trigger_show(Task* task, int x, int y); +void tooltip_trigger_show(Area* area, Panel* p, int x, int y); void tooltip_show(); void tooltip_update(); void tooltip_trigger_hide();