]> Dogcows Code - chaz/tint2/blob - src/taskbar/task.c
fixed some segfault and memleak
[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
29 #include "window.h"
30 #include "task.h"
31 #include "server.h"
32 #include "panel.h"
33 #include "tooltip.h"
34
35
36
37 Task *add_task (Window win)
38 {
39 if (!win) return 0;
40 if (window_is_hidden(win)) return 0;
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 (nb_panel > 1) 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 = new_tsk.icon_active = NULL;
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=0;
63 int i, j;
64 for (i = 0; i < nb_panel; i++) {
65 if (nb_panel > 1 && panel1[i].monitor != monitor) continue;
66 for (j = 0; j < panel1[i].nb_desktop; j++) {
67 if ((new_tsk.desktop != ALLDESKTOP && new_tsk.desktop != j)
68 || (panel_mode == MULTI_DESKTOP && new_tsk.desktop == ALLDESKTOP && server.desktop != j))
69 continue;
70 // for (i=0 ; i < nb_panel ; i++) {
71 // for (j=0 ; j < panel1[i].nb_desktop ; j++) {
72 // if (new_tsk.desktop != ALLDESKTOP && new_tsk.desktop != j) continue;
73 // if (nb_panel > 1 && panel1[i].monitor != monitor) continue;
74
75 tskbar = &panel1[i].taskbar[j];
76 new_tsk2 = malloc(sizeof(Task));
77 memcpy(&new_tsk2->area, &panel1[i].g_task.area, sizeof(Area));
78 new_tsk2->area.parent = tskbar;
79 new_tsk2->win = new_tsk.win;
80 new_tsk2->desktop = new_tsk.desktop;
81 new_tsk2->title = new_tsk.title;
82 new_tsk2->icon = new_tsk.icon;
83 new_tsk2->icon_active = new_tsk.icon_active;
84 new_tsk2->icon_width = new_tsk.icon_width;
85 new_tsk2->icon_height = new_tsk.icon_height;
86 tskbar->area.list = g_slist_append(tskbar->area.list, new_tsk2);
87 tskbar->area.resize = 1;
88 //printf("add_task panel %d, desktop %d, task %s\n", i, j, new_tsk2->title);
89 }
90 }
91 return new_tsk2;
92 }
93
94
95 void remove_task (Task *tsk)
96 {
97 if (!tsk) return;
98
99 Window win = tsk->win;
100 int desktop = tsk->desktop;
101
102 // free title and icon just for the first task
103 // even with task_on_all_desktop and with task_on_all_panel
104 //printf("remove_task %s %d\n", tsk->title, tsk->desktop);
105 if (tsk->title)
106 free (tsk->title);
107 if (tsk->icon) {
108 imlib_context_set_image(tsk->icon);
109 imlib_free_image();
110 imlib_context_set_image(tsk->icon_active);
111 imlib_free_image();
112 tsk->icon = tsk->icon_active = NULL;
113 }
114
115 int i, j;
116 Task *tsk2;
117 Taskbar *tskbar;
118 for (i=0 ; i < nb_panel ; i++) {
119 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
120 if (desktop != ALLDESKTOP && desktop != j) continue;
121
122 GSList *l0;
123 tskbar = &panel1[i].taskbar[j];
124 for (l0 = tskbar->area.list; l0 ; ) {
125 tsk2 = l0->data;
126 l0 = l0->next;
127 if (win == tsk2->win) {
128 tskbar->area.list = g_slist_remove(tskbar->area.list, tsk2);
129 tskbar->area.resize = 1;
130
131 if (tsk2 == task_active)
132 task_active = 0;
133 if (tsk2 == task_drag)
134 task_drag = 0;
135
136 XFreePixmap (server.dsp, tsk2->area.pix.pmap);
137 XFreePixmap (server.dsp, tsk2->area.pix_active.pmap);
138 free(tsk2);
139 }
140 }
141 }
142 }
143 }
144
145
146 void get_title(Task *tsk)
147 {
148 Panel *panel = tsk->area.panel;
149 char *title, *name;
150
151 if (!panel->g_task.text && !g_tooltip.enabled) return;
152
153 name = server_get_property (tsk->win, server.atom._NET_WM_VISIBLE_NAME, server.atom.UTF8_STRING, 0);
154 if (!name || !strlen(name)) {
155 name = server_get_property (tsk->win, server.atom._NET_WM_NAME, server.atom.UTF8_STRING, 0);
156 if (!name || !strlen(name)) {
157 name = server_get_property (tsk->win, server.atom.WM_NAME, XA_STRING, 0);
158 if (!name || !strlen(name)) {
159 name = malloc(10);
160 strcpy(name, "Untitled");
161 }
162 }
163 }
164
165 // add space before title
166 title = malloc(strlen(name)+2);
167 if (panel->g_task.icon) strcpy(title, " ");
168 else title[0] = 0;
169 strcat(title, name);
170 if (name) XFree (name);
171
172 tsk->area.redraw = 1;
173 if (tsk->title)
174 free(tsk->title);
175 tsk->title = title;
176 }
177
178
179 void get_icon (Task *tsk)
180 {
181 Panel *panel = tsk->area.panel;
182 if (!panel->g_task.icon) return;
183 int i;
184 Imlib_Image img = NULL;
185 XWMHints *hints = 0;
186 long *data = 0;
187
188 if (tsk->icon) {
189 imlib_context_set_image(tsk->icon);
190 imlib_free_image();
191 imlib_context_set_image(tsk->icon_active);
192 imlib_free_image();
193 tsk->icon = tsk->icon_active = NULL;
194 }
195 tsk->area.redraw = 1;
196
197 data = server_get_property (tsk->win, server.atom._NET_WM_ICON, XA_CARDINAL, &i);
198 if (data) {
199 // get ARGB icon
200 int w, h;
201 long *tmp_data;
202
203 tmp_data = get_best_icon (data, get_icon_count (data, i), i, &w, &h, panel->g_task.icon_size1);
204
205 #ifdef __x86_64__
206 DATA32 *icon_data = malloc (w * h * sizeof (DATA32));
207 int length = w * h;
208 for (i = 0; i < length; ++i)
209 icon_data[i] = tmp_data[i];
210 img = imlib_create_image_using_data (w, h, icon_data);
211 free(icon_data);
212 #else
213 img = imlib_create_image_using_data (w, h, (DATA32*)tmp_data);
214 #endif
215 }
216 else {
217 // get Pixmap icon
218 hints = XGetWMHints(server.dsp, tsk->win);
219 if (hints) {
220 if (hints->flags & IconPixmapHint && hints->icon_pixmap != 0) {
221 // get width, height and depth for the pixmap
222 Window root;
223 int icon_x, icon_y;
224 uint border_width, bpp;
225 uint w, h;
226
227 //printf(" get pixmap\n");
228 XGetGeometry(server.dsp, hints->icon_pixmap, &root, &icon_x, &icon_y, &w, &h, &border_width, &bpp);
229 imlib_context_set_drawable(hints->icon_pixmap);
230 img = imlib_create_image_from_drawable(hints->icon_mask, 0, 0, w, h, 0);
231 }
232 }
233 }
234 if (img == NULL) {
235 imlib_context_set_image(default_icon);
236 img = imlib_clone_image();
237 }
238
239 // transform icons
240 imlib_context_set_image(img);
241 imlib_image_set_has_alpha(1);
242 int w, h;
243 w = imlib_image_get_width();
244 h = imlib_image_get_height();
245 tsk->icon = imlib_create_cropped_scaled_image(0, 0, w, h, panel->g_task.icon_size1, panel->g_task.icon_size1);
246 imlib_free_image();
247
248 imlib_context_set_image(tsk->icon);
249 tsk->icon_width = imlib_image_get_width();
250 tsk->icon_height = imlib_image_get_height();
251 tsk->icon_active = imlib_clone_image();
252
253 DATA32 *data32;
254 if (panel->g_task.alpha != 100 || panel->g_task.saturation != 0 || panel->g_task.brightness != 0) {
255 data32 = imlib_image_get_data();
256 adjust_asb(data32, tsk->icon_width, tsk->icon_height, panel->g_task.alpha, (float)panel->g_task.saturation/100, (float)panel->g_task.brightness/100);
257 imlib_image_put_back_data(data32);
258 }
259
260 if (panel->g_task.alpha_active != 100 || panel->g_task.saturation_active != 0 || panel->g_task.brightness_active != 0) {
261 imlib_context_set_image(tsk->icon_active);
262 data32 = imlib_image_get_data();
263 adjust_asb(data32, tsk->icon_width, tsk->icon_height, panel->g_task.alpha_active, (float)panel->g_task.saturation_active/100, (float)panel->g_task.brightness_active/100);
264 imlib_image_put_back_data(data32);
265 }
266
267 if (hints)
268 XFree(hints);
269 if (data)
270 XFree (data);
271 }
272
273
274 void draw_task_icon (Task *tsk, int text_width, int active)
275 {
276 if (tsk->icon == NULL || tsk->icon_active == NULL) return;
277
278 // Find pos
279 int pos_x;
280 Panel *panel = (Panel*)tsk->area.panel;
281 if (panel->g_task.centered) {
282 if (panel->g_task.text)
283 pos_x = (tsk->area.width - text_width - panel->g_task.icon_size1) / 2;
284 else
285 pos_x = (tsk->area.width - panel->g_task.icon_size1) / 2;
286 }
287 else pos_x = panel->g_task.area.paddingxlr + panel->g_task.area.pix.border.width;
288
289 // Render
290 Pixmap *pmap;
291 if (active == 0) {
292 imlib_context_set_image (tsk->icon);
293 pmap = &tsk->area.pix.pmap;
294 }
295 else {
296 imlib_context_set_image (tsk->icon_active);
297 pmap = &tsk->area.pix_active.pmap;
298 }
299 imlib_context_set_drawable (*pmap);
300 imlib_render_image_on_drawable (pos_x, panel->g_task.icon_posy);
301 }
302
303
304 void draw_task (void *obj, cairo_t *c, int active)
305 {
306 Task *tsk = obj;
307 PangoLayout *layout;
308 config_color *config_text;
309 int width=0, height;
310 Panel *panel = (Panel*)tsk->area.panel;
311
312 if (panel->g_task.text) {
313 /* Layout */
314 layout = pango_cairo_create_layout (c);
315 pango_layout_set_font_description (layout, panel->g_task.font_desc);
316 pango_layout_set_text (layout, tsk->title, -1);
317
318 /* Drawing width and Cut text */
319 // pango use U+22EF or U+2026
320 pango_layout_set_width (layout, ((Taskbar*)tsk->area.parent)->text_width * PANGO_SCALE);
321 pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END);
322
323 /* Center text */
324 if (panel->g_task.centered) pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
325 else pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT);
326
327 pango_layout_get_pixel_size (layout, &width, &height);
328
329 if (active) config_text = &panel->g_task.font_active;
330 else config_text = &panel->g_task.font;
331
332 cairo_set_source_rgba (c, config_text->color[0], config_text->color[1], config_text->color[2], config_text->alpha);
333
334 pango_cairo_update_layout (c, layout);
335 cairo_move_to (c, panel->g_task.text_posx, panel->g_task.text_posy);
336 pango_cairo_show_layout (c, layout);
337
338 if (panel->g_task.font_shadow) {
339 cairo_set_source_rgba (c, 0.0, 0.0, 0.0, 0.5);
340 pango_cairo_update_layout (c, layout);
341 cairo_move_to (c, panel->g_task.text_posx + 1, panel->g_task.text_posy + 1);
342 pango_cairo_show_layout (c, layout);
343 }
344 g_object_unref (layout);
345 }
346
347 if (panel->g_task.icon) {
348 // icon use same opacity as text
349 draw_task_icon (tsk, width, active);
350 }
351 }
352
353
This page took 0.045871 seconds and 5 git commands to generate.