X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Ftaskbar%2Ftask.h;h=981509e35aac23d25707ed5903856599cb16992a;hb=b28c78295621a815c9021090fe9d086465930151;hp=d1870dbbbca9a6a25beb8216061f5b1a393c58ab;hpb=3dda49f22f1c317f3eb7e738e8f14c394f6d9d37;p=chaz%2Ftint2 diff --git a/src/taskbar/task.h b/src/taskbar/task.h index d1870db..981509e 100644 --- a/src/taskbar/task.h +++ b/src/taskbar/task.h @@ -9,6 +9,7 @@ #include #include +#include #include "common.h" @@ -25,6 +26,8 @@ typedef struct { int icon_size1; int maximum_width; int maximum_height; + int alpha, saturation, brightness; + int alpha_active, saturation_active, brightness_active; // starting position for text ~ task_padding + task_border + icon_size double text_posx, text_posy; @@ -43,9 +46,10 @@ typedef struct { // TODO: group task with list of windows here Window win; int desktop; - unsigned int *icon_data; - int icon_width; - int icon_height; + Imlib_Image icon; + Imlib_Image icon_active; + unsigned int icon_width; + unsigned int icon_height; char *title; } Task;