]> Dogcows Code - chaz/tint2/blob - src/taskbar/task.c
fixed issue 14 : no icons
[chaz/tint2] / src / taskbar / task.c
1 /**************************************************************************
2 *
3 * Tint2 : task
4 *
5 * Copyright (C) 2007 Pål Staurland (staura@gmail.com)
6 * Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 **************************************************************************/
20
21 #include <X11/Xlib.h>
22 #include <X11/Xutil.h>
23 #include <X11/Xatom.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <glib.h>
28 #include <Imlib2.h>
29
30 #include "window.h"
31 #include "task.h"
32 #include "server.h"
33 #include "panel.h"
34
35
36
37 void add_task (Window win)
38 {
39 if (!win) return;
40 if (window_is_hidden(win)) return;
41
42 int monitor;
43
44 Task new_tsk;
45 new_tsk.win = win;
46 new_tsk.area.panel = &panel1[0];
47 new_tsk.desktop = window_get_desktop (win);
48 if (panel_mode == SINGLE_MONITOR) monitor = window_get_monitor (win);
49 else monitor = 0;
50
51 // allocate only one title and one icon
52 // even with task_on_all_desktop and with task_on_all_panel
53 new_tsk.title = 0;
54 new_tsk.icon_data = 0;
55 get_title(&new_tsk);
56 get_icon(&new_tsk);
57
58 //printf("task %s : desktop %d, monitor %d\n", new_tsk->title, desktop, monitor);
59 XSelectInput (server.dsp, new_tsk.win, PropertyChangeMask|StructureNotifyMask);
60
61 Taskbar *tskbar;
62 Task *new_tsk2;
63 int i, j;
64 for (i=0 ; i < nb_panel ; i++) {
65 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
66 if (new_tsk.desktop != ALLDESKTOP && new_tsk.desktop != j) continue;
67 if (panel_mode == SINGLE_MONITOR && panel1[i].monitor != monitor) continue;
68
69 tskbar = &panel1[i].taskbar[j];
70 new_tsk2 = malloc(sizeof(Task));
71 memcpy(&new_tsk2->area, &panel1[i].g_task.area, sizeof(Area));
72 new_tsk2->area.parent = tskbar;
73 new_tsk2->win = new_tsk.win;
74 new_tsk2->desktop = new_tsk.desktop;
75 new_tsk2->title = new_tsk.title;
76 new_tsk2->icon_data = new_tsk.icon_data;
77 new_tsk2->icon_width = new_tsk.icon_width;
78 new_tsk2->icon_height = new_tsk.icon_height;
79 tskbar->area.list = g_slist_append(tskbar->area.list, new_tsk2);
80
81 //printf("add_task panel %d, desktop %d, task %s\n", i, j, new_tsk2->title);
82 // set_resize (&tskbar->area);
83 if (resize_tasks (tskbar))
84 set_redraw (&tskbar->area);
85 }
86 }
87 }
88
89
90 void remove_task (Task *tsk)
91 {
92 if (!tsk) return;
93
94 Window win = tsk->win;
95 int desktop = tsk->desktop;
96
97 // free title and icon just for the first task
98 // even with task_on_all_desktop and with task_on_all_panel
99 //printf("remove_task %s %d\n", tsk->title, tsk->desktop);
100 //printf("remove_task %s \n", tsk->title);
101 if (tsk->title)
102 free (tsk->title);
103 if (tsk->icon_data)
104 free (tsk->icon_data);
105
106 int i, j;
107 Task *tsk2;
108 Taskbar *tskbar;
109 for (i=0 ; i < nb_panel ; i++) {
110 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
111 if (desktop != ALLDESKTOP && desktop != j) continue;
112
113 GSList *l0;
114 tskbar = &panel1[i].taskbar[j];
115 for (l0 = tskbar->area.list; l0 ; ) {
116 tsk2 = l0->data;
117 l0 = l0->next;
118 if (win == tsk2->win) {
119 tskbar->area.list = g_slist_remove(tskbar->area.list, tsk2);
120 set_resize (&tskbar->area);
121 set_redraw (&tskbar->area);
122
123 if (tsk2 == task_active)
124 task_active = 0;
125 if (tsk2 == task_drag)
126 task_drag = 0;
127
128 XFreePixmap (server.dsp, tsk2->area.pix.pmap);
129 XFreePixmap (server.dsp, tsk2->area.pix_active.pmap);
130 free(tsk2);
131 }
132 }
133 }
134 }
135
136 }
137
138
139 void get_title(Task *tsk)
140 {
141 Panel *panel = tsk->area.panel;
142 char *title, *name;
143
144 if (!panel->g_task.text) return;
145
146 name = server_get_property (tsk->win, server.atom._NET_WM_VISIBLE_NAME, server.atom.UTF8_STRING, 0);
147 if (!name || !strlen(name)) {
148 name = server_get_property (tsk->win, server.atom._NET_WM_NAME, server.atom.UTF8_STRING, 0);
149 if (!name || !strlen(name)) {
150 name = server_get_property (tsk->win, server.atom.WM_NAME, XA_STRING, 0);
151 if (!name || !strlen(name)) {
152 name = malloc(10);
153 strcpy(name, "Untitled");
154 }
155 }
156 }
157
158 // add space before title
159 title = malloc(strlen(name)+2);
160 if (panel->g_task.icon) strcpy(title, " ");
161 else title[0] = 0;
162 strcat(title, name);
163 if (name) XFree (name);
164
165 tsk->area.redraw = 1;
166 if (tsk->title)
167 free(tsk->title);
168 tsk->title = title;
169 }
170
171
172 void get_icon (Task *tsk)
173 {
174 Panel *panel = tsk->area.panel;
175 if (!panel->g_task.icon) return;
176
177 if (tsk->icon_data) {
178 free (tsk->icon_data);
179 tsk->icon_data = 0;
180 }
181 tsk->area.redraw = 1;
182
183 long *data;
184 int num;
185 data = server_get_property (tsk->win, server.atom._NET_WM_ICON, XA_CARDINAL, &num);
186 if (data) {
187 // get ARGB icon
188 int w, h;
189 long *tmp_data;
190 tmp_data = get_best_icon (data, get_icon_count (data, num), num, &w, &h, panel->g_task.icon_size1);
191
192 tsk->icon_width = w;
193 tsk->icon_height = h;
194 tsk->icon_data = malloc (w * h * sizeof (long));
195 memcpy (tsk->icon_data, tmp_data, w * h * sizeof (long));
196
197 XFree (data);
198 }
199 else {
200 // get Pixmap icon
201 XWMHints *hints = XGetWMHints(server.dsp, tsk->win);
202 if (hints) {
203 if (hints->flags & IconPixmapHint && hints->icon_pixmap != 0) {
204 // get width, height and depth for the pixmap
205 Window root;
206 int icon_x, icon_y;
207 uint border_width, bpp;
208 uint icon_width, icon_height;
209
210 XGetGeometry(server.dsp, hints->icon_pixmap, &root, &icon_x, &icon_y, &icon_width, &icon_height, &border_width, &bpp);
211
212 //printf(" get_pixmap\n");
213 Imlib_Image img;
214 imlib_context_set_drawable(hints->icon_pixmap);
215 img = imlib_create_image_from_drawable(hints->icon_mask, 0, 0, icon_width, icon_height, 0);
216 imlib_context_set_image(img);
217 unsigned int *data = imlib_image_get_data();
218 if (!data) {
219 return;
220 }
221 tsk->icon_width = imlib_image_get_width();
222 tsk->icon_height = imlib_image_get_height();
223 tsk->icon_data = malloc (tsk->icon_width * tsk->icon_height * sizeof (long));
224 memcpy (tsk->icon_data, data, tsk->icon_width * tsk->icon_height * sizeof (long));
225 imlib_free_image();
226 }
227 XFree(hints);
228 }
229 }
230 }
231
232
233 void draw_task_icon (Task *tsk, int text_width, int active)
234 {
235 if (tsk->icon_data == 0) return;
236
237 Pixmap *pmap = (active == 0) ? (&tsk->area.pix.pmap) : (&tsk->area.pix_active.pmap);
238
239 /* Find pos */
240 int pos_x;
241 Panel *panel = (Panel*)tsk->area.panel;
242 if (panel->g_task.centered) {
243 if (panel->g_task.text)
244 pos_x = (tsk->area.width - text_width - panel->g_task.icon_size1) / 2;
245 else
246 pos_x = (tsk->area.width - panel->g_task.icon_size1) / 2;
247 }
248 else pos_x = panel->g_task.area.paddingxlr + panel->g_task.area.pix.border.width;
249
250 /* Render */
251 Imlib_Image icon;
252 Imlib_Color_Modifier cmod;
253 DATA8 red[256], green[256], blue[256], alpha[256];
254
255 // TODO: cpu improvement : compute only when icon changed
256 DATA32 *data;
257 /* do we have 64bit? => long = 8bit */
258 if (sizeof(long) != 4) {
259 int length = tsk->icon_width * tsk->icon_height;
260 data = malloc(sizeof(DATA32) * length);
261 int i;
262 for (i = 0; i < length; ++i)
263 data[i] = tsk->icon_data[i];
264 }
265 else data = (DATA32 *) tsk->icon_data;
266
267 icon = imlib_create_image_using_data (tsk->icon_width, tsk->icon_height, data);
268 imlib_context_set_image (icon);
269 imlib_context_set_drawable (*pmap);
270
271 cmod = imlib_create_color_modifier ();
272 imlib_context_set_color_modifier (cmod);
273 imlib_image_set_has_alpha (1);
274 imlib_get_color_modifier_tables (red, green, blue, alpha);
275
276 int i, opacity;
277 opacity = (active == 0) ? (255*panel->g_task.font.alpha) : (255*panel->g_task.font_active.alpha);
278 for (i = 127; i < 256; i++) alpha[i] = opacity;
279
280 imlib_set_color_modifier_tables (red, green, blue, alpha);
281
282 //imlib_render_image_on_drawable (pos_x, pos_y);
283 imlib_render_image_on_drawable_at_size (pos_x, panel->g_task.icon_posy, panel->g_task.icon_size1, panel->g_task.icon_size1);
284
285 imlib_free_color_modifier ();
286 imlib_free_image ();
287 if (sizeof(long) != 4) free(data);
288 }
289
290
291 void draw_foreground_task (void *obj, cairo_t *c, int active)
292 {
293 Task *tsk = obj;
294 PangoLayout *layout;
295 config_color *config_text;
296 int width, height;
297 Panel *panel = (Panel*)tsk->area.panel;
298
299 if (panel->g_task.text) {
300 /* Layout */
301 layout = pango_cairo_create_layout (c);
302 pango_layout_set_font_description (layout, panel->g_task.font_desc);
303 pango_layout_set_text (layout, tsk->title, -1);
304
305 /* Drawing width and Cut text */
306 pango_layout_set_width (layout, ((Taskbar*)tsk->area.parent)->text_width * PANGO_SCALE);
307 pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END);
308
309 /* Center text */
310 if (panel->g_task.centered) pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
311 else pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT);
312
313 pango_layout_get_pixel_size (layout, &width, &height);
314
315 if (active) config_text = &panel->g_task.font_active;
316 else config_text = &panel->g_task.font;
317
318 cairo_set_source_rgba (c, config_text->color[0], config_text->color[1], config_text->color[2], config_text->alpha);
319
320 pango_cairo_update_layout (c, layout);
321 cairo_move_to (c, panel->g_task.text_posx, panel->g_task.text_posy);
322 pango_cairo_show_layout (c, layout);
323
324 if (panel->g_task.font_shadow) {
325 cairo_set_source_rgba (c, 0.0, 0.0, 0.0, 0.5);
326 pango_cairo_update_layout (c, layout);
327 cairo_move_to (c, panel->g_task.text_posx + 1, panel->g_task.text_posy + 1);
328 pango_cairo_show_layout (c, layout);
329 }
330 g_object_unref (layout);
331 }
332
333 if (panel->g_task.icon) {
334 // icon use same opacity as text
335 draw_task_icon (tsk, width, active);
336 }
337 }
338
This page took 0.052074 seconds and 5 git commands to generate.