]> Dogcows Code - chaz/tint2/blobdiff - src/taskbar/task.h
fixed icon on 64 bit system by benjaminfranzke
[chaz/tint2] / src / taskbar / task.h
index a42caa0016e0c9d549fe6a6738e501851f70edb3..d1870dbbbca9a6a25beb8216061f5b1a393c58ab 100644 (file)
 // --------------------------------------------------
 // global task parameter
 typedef struct {
-   Area area;
-
-   int text;
-   int icon;
-   int centered;
-
-   int icon_posy;
-   int icon_size1;
-   int maximum_width;
-   int maximum_height;
-   // starting position for text ~ task_padding + task_border + icon_size
-   double text_posx, text_posy;
-
-   int font_shadow;
-   PangoFontDescription *font_desc;
-   config_color font;
-   config_color font_active;
+       Area area;
+
+       int text;
+       int icon;
+       int centered;
+
+       int icon_posy;
+       int icon_size1;
+       int maximum_width;
+       int maximum_height;
+       // starting position for text ~ task_padding + task_border + icon_size
+       double text_posx, text_posy;
+
+       int font_shadow;
+       PangoFontDescription *font_desc;
+       config_color font;
+       config_color font_active;
 } Global_task;
 
 
 
 typedef struct {
-   // always start with area
-   Area area;
-
-   // TODO: group task with list of windows here
-   Window win;
-   int  desktop;
-   long *icon_data;
-   int icon_width;
-   int icon_height;
-   char *title;
+       // always start with area
+       Area area;
+
+       // TODO: group task with list of windows here
+       Window win;
+       int  desktop;
+       unsigned int *icon_data;
+       int icon_width;
+       int icon_height;
+       char *title;
 } Task;
 
 
This page took 0.023206 seconds and 4 git commands to generate.