]> Dogcows Code - chaz/tint2/blob - src/taskbar/task.c
fixed decorated window with compiz
[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 Task *new_tsk;
40 int desktop, monitor;
41
42 if (!win || window_is_hidden (win) || win == window.main_win) return;
43
44 new_tsk = malloc(sizeof(Task));
45 new_tsk->win = win;
46 new_tsk->title = 0;
47 new_tsk->icon_data = 0;
48
49 get_icon(new_tsk);
50 get_title(new_tsk);
51 memcpy(&new_tsk->area, &g_task.area, sizeof(Area));
52 memcpy(&new_tsk->area_active, &g_task.area_active, sizeof(Area));
53 desktop = window_get_desktop (new_tsk->win);
54 monitor = window_get_monitor (new_tsk->win);
55
56 //if (panel.mode == MULTI_MONITOR) monitor = window_get_monitor (new_tsk->win);
57 //else monitor = 0;
58 //printf("task %s : desktop %d, monitor %d\n", new_tsk->title, desktop, monitor);
59
60 XSelectInput (server.dsp, new_tsk->win, PropertyChangeMask|StructureNotifyMask);
61
62 if (desktop == 0xFFFFFFFF) {
63 if (new_tsk->title) {
64 free (new_tsk->title);
65 new_tsk->title = 0;
66 }
67 if (new_tsk->icon_data) {
68 free (new_tsk->icon_data);
69 new_tsk->icon_data = 0;
70 }
71 free(new_tsk);
72 fprintf(stderr, "task on all desktop : ignored\n");
73 return;
74 }
75
76 //printf("add_task %d %s\n", index(desktop, monitor), new_tsk->title);
77 Taskbar *tskbar;
78 tskbar = &panel.taskbar[index(desktop, monitor)];
79 new_tsk->area.parent = tskbar;
80 tskbar->area.list = g_slist_append(tskbar->area.list, new_tsk);
81
82 if (resize_tasks (tskbar))
83 set_redraw (&tskbar->area);
84 }
85
86
87 void remove_task (Task *tsk)
88 {
89 if (!tsk) return;
90
91 Taskbar *tskbar;
92 tskbar = (Taskbar*)tsk->area.parent;
93 tskbar->area.list = g_slist_remove(tskbar->area.list, tsk);
94 resize_tasks (tskbar);
95 set_redraw (&tskbar->area);
96 //printf("remove_task %d %s\n", index(tskbar->desktop, tskbar->monitor), tsk->title);
97
98 if (tsk->title) {
99 free (tsk->title);
100 tsk->title = 0;
101 }
102 if (tsk->icon_data) {
103 free (tsk->icon_data);
104 tsk->icon_data = 0;
105 }
106 XFreePixmap (server.dsp, tsk->area.pmap);
107 XFreePixmap (server.dsp, tsk->area_active.pmap);
108 free(tsk);
109 }
110
111
112 void get_title(Task *tsk)
113 {
114 if (!g_task.text) return;
115
116 char *title, *name;
117
118 name = server_get_property (tsk->win, server.atom._NET_WM_VISIBLE_NAME, server.atom.UTF8_STRING, 0);
119 if (!name || !strlen(name)) {
120 name = server_get_property (tsk->win, server.atom._NET_WM_NAME, server.atom.UTF8_STRING, 0);
121 if (!name || !strlen(name)) {
122 name = server_get_property (tsk->win, server.atom.WM_NAME, XA_STRING, 0);
123 if (!name || !strlen(name)) {
124 name = malloc(10);
125 strcpy(name, "Untitled");
126 }
127 }
128 }
129
130 // add space before title
131 title = malloc(strlen(name)+2);
132 if (g_task.icon) strcpy(title, " ");
133 else title[0] = 0;
134 strcat(title, name);
135 if (name) XFree (name);
136
137 if (tsk->title)
138 free(tsk->title);
139 tsk->title = title;
140 }
141
142
143 void get_icon (Task *tsk)
144 {
145 if (!g_task.icon) return;
146
147 long *data;
148 int num;
149
150 data = server_get_property (tsk->win, server.atom._NET_WM_ICON, XA_CARDINAL, &num);
151 if (data) {
152 printf("get_icon plein\n");
153 // ARGB
154 int w, h;
155 long *tmp_data;
156 tmp_data = get_best_icon (data, get_icon_count (data, num), num, &w, &h, g_task.icon_size1);
157
158 tsk->icon_width = w;
159 tsk->icon_height = h;
160 tsk->icon_data = malloc (w * h * sizeof (long));
161 memcpy (tsk->icon_data, tmp_data, w * h * sizeof (long));
162
163 XFree (data);
164 }
165 else {
166 //XWMHints *hints;
167 //hints = XGetWMHints(server.dsp, tkwin);
168 //if (hints != NULL) {
169 // XFree(hints);
170 //}
171 printf("get_icon vide\n");
172 // XChangeProperty (display, windowH, XInternAtom (display, "_NET_WM_ICON", False), XA_CARDINAL, 32, PropModeReplace, (unsigned char*) data, dataSize);
173 return;
174 }
175 }
176
177
178 void draw_task_icon (Task *tsk, int text_width, int active)
179 {
180 if (tsk->icon_data == 0) get_icon (tsk);
181 if (tsk->icon_data == 0) return;
182
183 Pixmap *pmap;
184
185 if (active) pmap = &tsk->area_active.pmap;
186 else pmap = &tsk->area.pmap;
187
188 /* Find pos */
189 int pos_x;
190 if (g_task.centered) {
191 if (g_task.text)
192 pos_x = (tsk->area.width - text_width - g_task.icon_size1) / 2;
193 else
194 pos_x = (tsk->area.width - g_task.icon_size1) / 2;
195 }
196 else pos_x = g_task.area.paddingx + g_task.area.border.width;
197
198 /* Render */
199 Imlib_Image icon;
200 Imlib_Color_Modifier cmod;
201 DATA8 red[256], green[256], blue[256], alpha[256];
202
203 // TODO: cpu improvement : compute only when icon changed
204 DATA32 *data;
205 /* do we have 64bit? => long = 8bit */
206 if (sizeof(long) != 4) {
207 int length = tsk->icon_width * tsk->icon_height;
208 data = malloc(sizeof(DATA32) * length);
209 int i;
210 for (i = 0; i < length; ++i)
211 data[i] = tsk->icon_data[i];
212 }
213 else data = (DATA32 *) tsk->icon_data;
214
215 icon = imlib_create_image_using_data (tsk->icon_width, tsk->icon_height, data);
216 imlib_context_set_image (icon);
217 imlib_context_set_drawable (*pmap);
218
219 cmod = imlib_create_color_modifier ();
220 imlib_context_set_color_modifier (cmod);
221 imlib_image_set_has_alpha (1);
222 imlib_get_color_modifier_tables (red, green, blue, alpha);
223
224 int i, opacity;
225 if (active) opacity = 255*g_task.font_active.alpha;
226 else opacity = 255*g_task.font.alpha;
227 for(i = 127; i < 256; i++) alpha[i] = opacity;
228
229 imlib_set_color_modifier_tables (red, green, blue, alpha);
230
231 //imlib_render_image_on_drawable (pos_x, pos_y);
232 imlib_render_image_on_drawable_at_size (pos_x, g_task.icon_posy, g_task.icon_size1, g_task.icon_size1);
233
234 imlib_free_color_modifier ();
235 imlib_free_image ();
236 if (sizeof(long) != 4) free(data);
237 }
238
239
240 void draw_task_title (cairo_t *c, Task *tsk, int active)
241 {
242 PangoLayout *layout;
243 config_color *config_text;
244 int width, height;
245
246 if (g_task.text) {
247 /* Layout */
248 layout = pango_cairo_create_layout (c);
249 pango_layout_set_font_description (layout, g_task.font_desc);
250 pango_layout_set_text (layout, tsk->title, -1);
251
252 /* Drawing width and Cut text */
253 pango_layout_set_width (layout, ((Taskbar*)tsk->area.parent)->text_width * PANGO_SCALE);
254 pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END);
255
256 /* Center text */
257 if (g_task.centered) pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
258 else pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT);
259
260 pango_layout_get_pixel_size (layout, &width, &height);
261
262 if (active) config_text = &g_task.font_active;
263 else config_text = &g_task.font;
264
265 cairo_set_source_rgba (c, config_text->color[0], config_text->color[1], config_text->color[2], config_text->alpha);
266
267 pango_cairo_update_layout (c, layout);
268 cairo_move_to (c, g_task.text_posx, g_task.text_posy);
269 pango_cairo_show_layout (c, layout);
270
271 if (g_task.font_shadow) {
272 cairo_set_source_rgba (c, 0.0, 0.0, 0.0, 0.5);
273 pango_cairo_update_layout (c, layout);
274 cairo_move_to (c, g_task.text_posx + 1, g_task.text_posy + 1);
275 pango_cairo_show_layout (c, layout);
276 }
277 g_object_unref (layout);
278 }
279
280 if (g_task.icon) {
281 // icon use same opacity as text
282 draw_task_icon (tsk, width, active);
283 }
284 }
285
286
287 void draw_background_task (void *obj, cairo_t *c)
288 {
289 Task *tsk = obj;
290
291 draw_background (&tsk->area_active, c);
292 draw_background (&tsk->area_inactive, c);
293 }
294
295
296 void draw_foreground_task (void *obj, cairo_t *c)
297 {
298 Task *tsk = obj;
299 cairo_surface_t *cs;
300 cairo_t *ca;
301 //printf(" draw_foreground_task\n");
302
303 draw_task_title (c, tsk, 0);
304
305 // draw active pmap
306 if (tsk->area_active.pmap) XFreePixmap (server.dsp, tsk->area_active.pmap);
307 tsk->area_active.pmap = server_create_pixmap (tsk->area.width, tsk->area.height);
308
309 // add layer of root pixmap
310 XCopyArea (server.dsp, server.pmap, tsk->area_active.pmap, server.gc, tsk->area.posx, tsk->area.posy, tsk->area.width, tsk->area.height, 0, 0);
311
312 cs = cairo_xlib_surface_create (server.dsp, tsk->area_active.pmap, server.visual, tsk->area.width, tsk->area.height);
313 ca = cairo_create (cs);
314
315 // redraw task
316 draw_task_title (ca, tsk, 1);
317
318 cairo_destroy (ca);
319 cairo_surface_destroy (cs);
320 }
321
This page took 0.042955 seconds and 5 git commands to generate.