]>
Dogcows Code - chaz/tint2/blob - src/taskbar/task.c
1 /**************************************************************************
5 * Copyright (C) 2007 Pål Staurland (staura@gmail.com)
6 * Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
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.
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 **************************************************************************/
22 #include <X11/Xutil.h>
23 #include <X11/Xatom.h>
37 Task
*add_task (Window win
)
40 if (window_is_hidden(win
)) return 0;
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
);
51 // allocate only one title and one icon
52 // even with task_on_all_desktop and with task_on_all_panel
54 new_tsk
.icon
= new_tsk
.icon_active
= NULL
;
58 //printf("task %s : desktop %d, monitor %d\n", new_tsk->title, desktop, monitor);
59 XSelectInput (server
.dsp
, new_tsk
.win
, PropertyChangeMask
|StructureNotifyMask
);
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 (nb_panel
> 1 && panel1
[i
].monitor
!= monitor
) continue;
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 if (new_tsk2
->desktop
== ALLDESKTOP
&& server
.desktop
!= j
) {
76 // hide ALLDESKTOP task on non-current desktop
77 new_tsk2
->area
.on_screen
= 0;
79 new_tsk2
->title
= new_tsk
.title
;
80 new_tsk2
->icon
= new_tsk
.icon
;
81 new_tsk2
->icon_active
= new_tsk
.icon_active
;
82 new_tsk2
->icon_width
= new_tsk
.icon_width
;
83 new_tsk2
->icon_height
= new_tsk
.icon_height
;
84 tskbar
->area
.list
= g_slist_append(tskbar
->area
.list
, new_tsk2
);
85 tskbar
->area
.resize
= 1;
86 //printf("add_task panel %d, desktop %d, task %s\n", i, j, new_tsk2->title);
93 void remove_task (Task
*tsk
)
97 Window win
= tsk
->win
;
98 int desktop
= tsk
->desktop
;
100 // free title and icon just for the first task
101 // even with task_on_all_desktop and with task_on_all_panel
102 //printf("remove_task %s %d\n", tsk->title, tsk->desktop);
106 imlib_context_set_image(tsk
->icon
);
108 imlib_context_set_image(tsk
->icon_active
);
110 tsk
->icon
= tsk
->icon_active
= NULL
;
116 for (i
=0 ; i
< nb_panel
; i
++) {
117 for (j
=0 ; j
< panel1
[i
].nb_desktop
; j
++) {
118 if (desktop
!= ALLDESKTOP
&& desktop
!= j
) continue;
121 tskbar
= &panel1
[i
].taskbar
[j
];
122 for (l0
= tskbar
->area
.list
; l0
; ) {
125 if (win
== tsk2
->win
) {
126 tskbar
->area
.list
= g_slist_remove(tskbar
->area
.list
, tsk2
);
127 tskbar
->area
.resize
= 1;
129 if (tsk2
== task_active
)
131 if (tsk2
== task_drag
)
134 XFreePixmap (server
.dsp
, tsk2
->area
.pix
.pmap
);
135 XFreePixmap (server
.dsp
, tsk2
->area
.pix_active
.pmap
);
144 void get_title(Task
*tsk
)
146 Panel
*panel
= tsk
->area
.panel
;
149 if (!panel
->g_task
.text
&& !g_tooltip
.enabled
) return;
151 name
= server_get_property (tsk
->win
, server
.atom
._NET_WM_VISIBLE_NAME
, server
.atom
.UTF8_STRING
, 0);
152 if (!name
|| !strlen(name
)) {
153 name
= server_get_property (tsk
->win
, server
.atom
._NET_WM_NAME
, server
.atom
.UTF8_STRING
, 0);
154 if (!name
|| !strlen(name
)) {
155 name
= server_get_property (tsk
->win
, server
.atom
.WM_NAME
, XA_STRING
, 0);
156 if (!name
|| !strlen(name
)) {
158 strcpy(name
, "Untitled");
163 // add space before title
164 title
= malloc(strlen(name
)+2);
165 if (panel
->g_task
.icon
) strcpy(title
, " ");
168 if (name
) XFree (name
);
170 tsk
->area
.redraw
= 1;
177 void get_icon (Task
*tsk
)
179 Panel
*panel
= tsk
->area
.panel
;
180 if (!panel
->g_task
.icon
) return;
182 Imlib_Image img
= NULL
;
187 imlib_context_set_image(tsk
->icon
);
189 imlib_context_set_image(tsk
->icon_active
);
191 tsk
->icon
= tsk
->icon_active
= NULL
;
193 tsk
->area
.redraw
= 1;
195 data
= server_get_property (tsk
->win
, server
.atom
._NET_WM_ICON
, XA_CARDINAL
, &i
);
201 tmp_data
= get_best_icon (data
, get_icon_count (data
, i
), i
, &w
, &h
, panel
->g_task
.icon_size1
);
204 DATA32
*icon_data
= malloc (w
* h
* sizeof (DATA32
));
206 for (i
= 0; i
< length
; ++i
)
207 icon_data
[i
] = tmp_data
[i
];
208 img
= imlib_create_image_using_data (w
, h
, icon_data
);
211 img
= imlib_create_image_using_data (w
, h
, (DATA32
*)tmp_data
);
216 hints
= XGetWMHints(server
.dsp
, tsk
->win
);
218 if (hints
->flags
& IconPixmapHint
&& hints
->icon_pixmap
!= 0) {
219 // get width, height and depth for the pixmap
222 uint border_width
, bpp
;
225 //printf(" get pixmap\n");
226 XGetGeometry(server
.dsp
, hints
->icon_pixmap
, &root
, &icon_x
, &icon_y
, &w
, &h
, &border_width
, &bpp
);
227 imlib_context_set_drawable(hints
->icon_pixmap
);
228 img
= imlib_create_image_from_drawable(hints
->icon_mask
, 0, 0, w
, h
, 0);
233 imlib_context_set_image(default_icon
);
234 img
= imlib_clone_image();
238 imlib_context_set_image(img
);
239 imlib_image_set_has_alpha(1);
241 w
= imlib_image_get_width();
242 h
= imlib_image_get_height();
243 tsk
->icon
= imlib_create_cropped_scaled_image(0, 0, w
, h
, panel
->g_task
.icon_size1
, panel
->g_task
.icon_size1
);
246 imlib_context_set_image(tsk
->icon
);
247 tsk
->icon_width
= imlib_image_get_width();
248 tsk
->icon_height
= imlib_image_get_height();
249 tsk
->icon_active
= imlib_clone_image();
252 if (panel
->g_task
.alpha
!= 100 || panel
->g_task
.saturation
!= 0 || panel
->g_task
.brightness
!= 0) {
253 data32
= imlib_image_get_data();
254 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);
255 imlib_image_put_back_data(data32
);
258 if (panel
->g_task
.alpha_active
!= 100 || panel
->g_task
.saturation_active
!= 0 || panel
->g_task
.brightness_active
!= 0) {
259 imlib_context_set_image(tsk
->icon_active
);
260 data32
= imlib_image_get_data();
261 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);
262 imlib_image_put_back_data(data32
);
272 void draw_task_icon (Task
*tsk
, int text_width
, int active
)
274 if (tsk
->icon
== NULL
|| tsk
->icon_active
== NULL
) return;
278 Panel
*panel
= (Panel
*)tsk
->area
.panel
;
279 if (panel
->g_task
.centered
) {
280 if (panel
->g_task
.text
)
281 pos_x
= (tsk
->area
.width
- text_width
- panel
->g_task
.icon_size1
) / 2;
283 pos_x
= (tsk
->area
.width
- panel
->g_task
.icon_size1
) / 2;
285 else pos_x
= panel
->g_task
.area
.paddingxlr
+ panel
->g_task
.area
.pix
.border
.width
;
290 imlib_context_set_image (tsk
->icon
);
291 pmap
= &tsk
->area
.pix
.pmap
;
294 imlib_context_set_image (tsk
->icon_active
);
295 pmap
= &tsk
->area
.pix_active
.pmap
;
297 imlib_context_set_drawable (*pmap
);
298 imlib_render_image_on_drawable (pos_x
, panel
->g_task
.icon_posy
);
302 void draw_task (void *obj
, cairo_t
*c
, int active
)
306 config_color
*config_text
;
308 Panel
*panel
= (Panel
*)tsk
->area
.panel
;
310 if (panel
->g_task
.text
) {
312 layout
= pango_cairo_create_layout (c
);
313 pango_layout_set_font_description (layout
, panel
->g_task
.font_desc
);
314 pango_layout_set_text (layout
, tsk
->title
, -1);
316 /* Drawing width and Cut text */
317 // pango use U+22EF or U+2026
318 pango_layout_set_width (layout
, ((Taskbar
*)tsk
->area
.parent
)->text_width
* PANGO_SCALE
);
319 pango_layout_set_ellipsize (layout
, PANGO_ELLIPSIZE_END
);
322 if (panel
->g_task
.centered
) pango_layout_set_alignment (layout
, PANGO_ALIGN_CENTER
);
323 else pango_layout_set_alignment (layout
, PANGO_ALIGN_LEFT
);
325 pango_layout_get_pixel_size (layout
, &width
, &height
);
327 if (active
) config_text
= &panel
->g_task
.font_active
;
328 else config_text
= &panel
->g_task
.font
;
330 cairo_set_source_rgba (c
, config_text
->color
[0], config_text
->color
[1], config_text
->color
[2], config_text
->alpha
);
332 pango_cairo_update_layout (c
, layout
);
333 cairo_move_to (c
, panel
->g_task
.text_posx
, panel
->g_task
.text_posy
);
334 pango_cairo_show_layout (c
, layout
);
336 if (panel
->g_task
.font_shadow
) {
337 cairo_set_source_rgba (c
, 0.0, 0.0, 0.0, 0.5);
338 pango_cairo_update_layout (c
, layout
);
339 cairo_move_to (c
, panel
->g_task
.text_posx
+ 1, panel
->g_task
.text_posy
+ 1);
340 pango_cairo_show_layout (c
, layout
);
342 g_object_unref (layout
);
345 if (panel
->g_task
.icon
) {
346 // icon use same opacity as text
347 draw_task_icon (tsk
, width
, active
);
This page took 0.050988 seconds and 5 git commands to generate.