]> Dogcows Code - chaz/tint2/commitdiff
fixed issue 14 : no icons
authorThierry Lorthiois <lorthiois@bbsoft.fr>
Wed, 11 Feb 2009 22:25:53 +0000 (22:25 +0000)
committerThierry Lorthiois <lorthiois@bbsoft.fr>
Wed, 11 Feb 2009 22:25:53 +0000 (22:25 +0000)
ChangeLog
src/taskbar/task.c
src/tint2
src/util/area.h

index 1a94a50dcdfa4af7d974f3fcd41298b6f8f00619..097d7181a4149f00234856a5a91239f16f098257 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-02-12
+- fixed issue 14 : no icons
+
 2009-02-11
 - fixed bug with number of desktop changed
 - fixed clock resize when date changed
index 2ec873f76778ed886ae1996d23bb0365ed1daebf..2c039ab4daa01df24db1c1675a30a8dc18b9f314 100644 (file)
@@ -79,6 +79,7 @@ void add_task (Window win)
                tskbar->area.list = g_slist_append(tskbar->area.list, new_tsk2);
 
                        //printf("add_task panel %d, desktop %d, task %s\n", i, j, new_tsk2->title);
+                       //      set_resize (&tskbar->area);
                   if (resize_tasks (tskbar))
                set_redraw (&tskbar->area);
                }
@@ -116,7 +117,7 @@ void remove_task (Task *tsk)
                                l0 = l0->next;
                                if (win == tsk2->win) {
                                        tskbar->area.list = g_slist_remove(tskbar->area.list, tsk2);
-                                       resize_tasks (tskbar);
+                                       set_resize (&tskbar->area);
                                        set_redraw (&tskbar->area);
 
                                        if (tsk2 == task_active)
@@ -183,8 +184,7 @@ void get_icon (Task *tsk)
    int num;
    data = server_get_property (tsk->win, server.atom._NET_WM_ICON, XA_CARDINAL, &num);
    if (data) {
-      //printf("get_icon plein\n");
-      // ARGB
+      // get ARGB icon
       int w, h;
       long *tmp_data;
       tmp_data = get_best_icon (data, get_icon_count (data, num), num, &w, &h, panel->g_task.icon_size1);
@@ -197,13 +197,35 @@ void get_icon (Task *tsk)
       XFree (data);
    }
    else {
-      //printf("get_icon vide\n");
+      // get Pixmap icon
       XWMHints *hints = XGetWMHints(server.dsp, tsk->win);
       if (hints) {
-         if (hints->flags & IconPixmapHint) {
+         if (hints->flags & IconPixmapHint && hints->icon_pixmap != 0) {
+               // get width, height and depth for the pixmap
+                               Window root;
+                               int  icon_x, icon_y;
+                               uint border_width, bpp;
+                               uint icon_width, icon_height;
+
+                               XGetGeometry(server.dsp, hints->icon_pixmap, &root, &icon_x, &icon_y, &icon_width, &icon_height, &border_width, &bpp);
+
+                     //printf("  get_pixmap\n");
+                     Imlib_Image  img;
+                               imlib_context_set_drawable(hints->icon_pixmap);
+                               img = imlib_create_image_from_drawable(hints->icon_mask, 0, 0, icon_width, icon_height, 0);
+                               imlib_context_set_image(img);
+                               unsigned int *data = imlib_image_get_data();
+                               if (!data) {
+                                       return;
+                               }
+                               tsk->icon_width = imlib_image_get_width();
+                               tsk->icon_height = imlib_image_get_height();
+                               tsk->icon_data = malloc (tsk->icon_width * tsk->icon_height * sizeof (long));
+                               memcpy (tsk->icon_data, data, tsk->icon_width * tsk->icon_height * sizeof (long));
+                               imlib_free_image();
                        }
          XFree(hints);
-      }
+               }
    }
 }
 
index 91ceff45118cd99719456736918be3151c88fa91..c3248d4e9dc73f112f431bee8d150dca8356a84e 100755 (executable)
Binary files a/src/tint2 and b/src/tint2 differ
index 708c03333a9193749dc0f4d5860644e075ed0646..acea08f40873331eb40468c64e9a54a7fa6f63dd 100644 (file)
 *         -> systray -> icons
 *         -> clock
 *
-* draw_foreground(obj) is virtual function.
-*
-* TODO :
-* resize_width(obj, width) = 0 : fonction virtuelle à redéfinir
-*    recalcule la largeur de l'objet (car la hauteur est fixe)
-*    - taille systray calculée à partir de la liste des icones
-*    - taille clock calculée à partir de l'heure
-*    - taille d'une tache calculée à partir de la taskbar (ajout, suppression, taille)
-*    - taille d'une taskbar calculée à partir de la taille du panel et des autres objets
-*
-* voir resize_taskbar(), resize_clock() et resize_tasks()
-* voir config(obj) configure un objet (définie les positions verticales)
+* draw_foreground(obj) and resize(obj) are virtual function.
 *
 **************************************************************************/
 
This page took 0.028129 seconds and 4 git commands to generate.