]> Dogcows Code - chaz/tint2/blobdiff - src/taskbar/task.h
*add* multiple tasks can be urgent now
[chaz/tint2] / src / taskbar / task.h
index 172b0d5be07754da82c7734325619f2a9c737aaa..994870e40a2e0c56051e617fcb0dbb6efb4d02db 100644 (file)
@@ -26,8 +26,8 @@ typedef struct {
        int icon_size1;
        int maximum_width;
        int maximum_height;
-       int hue, saturation, brightness;
-       int hue_active, saturation_active, brightness_active;
+       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;
 
@@ -46,15 +46,20 @@ typedef struct {
        // TODO: group task with list of windows here
        Window win;
        int  desktop;
-       // ARGB icon
-       unsigned int *icon_data;
-       unsigned int *icon_data_active;
+       Imlib_Image icon;
+       Imlib_Image icon_active;
        unsigned int icon_width;
        unsigned int icon_height;
        char *title;
 } Task;
 
 
+typedef struct {
+       Task* tsk;
+       int tick;
+} Task_urgent;
+
+
 
 Task *add_task (Window win);
 void remove_task (Task *tsk);
@@ -63,7 +68,11 @@ void draw_task (void *obj, cairo_t *c, int active);
 
 void get_icon (Task *tsk);
 void get_title(Task *tsk);
+void active_task();
 
+void add_urgent(Task *tsk);
+void del_urgent(Task *tsk);
+int is_urgent(Task *tsk);
 
 #endif
 
This page took 0.022797 seconds and 4 git commands to generate.