]> Dogcows Code - chaz/tint2/blob - src/taskbar/taskbar.c
added taskbar_active_background_id to change current desktop background
[chaz/tint2] / src / taskbar / taskbar.c
1 /**************************************************************************
2 *
3 * Tint2 : taskbar
4 *
5 * Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 **************************************************************************/
19
20 #include <X11/Xlib.h>
21 #include <X11/Xutil.h>
22 #include <X11/Xatom.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <glib.h>
27 #include <Imlib2.h>
28
29 #include "task.h"
30 #include "taskbar.h"
31 #include "server.h"
32 #include "window.h"
33 #include "panel.h"
34
35
36
37 void init_taskbar()
38 {
39 Panel *panel;
40 int i, j;
41
42 for (i=0 ; i < nb_panel ; i++) {
43 panel = &panel1[i];
44
45 if (panel->taskbar) {
46 free(panel->taskbar);
47 panel->taskbar = 0;
48 }
49
50 // taskbar
51 panel->g_taskbar._resize = resize_taskbar;
52 panel->g_taskbar.redraw = 1;
53 panel->g_taskbar.on_screen = 1;
54 if (panel_horizontal) {
55 panel->g_taskbar.posy = panel->area.pix.border.width + panel->area.paddingy;
56 panel->g_taskbar.height = panel->area.height - (2 * panel->g_taskbar.posy);
57 }
58 else {
59 panel->g_taskbar.posx = panel->area.pix.border.width + panel->area.paddingy;
60 panel->g_taskbar.width = panel->area.width - (2 * panel->g_taskbar.posx);
61 }
62
63 // task
64 panel->g_task.area._draw_foreground = draw_task;
65 panel->g_task.area.use_active = 1;
66 panel->g_task.area.redraw = 1;
67 panel->g_task.area.on_screen = 1;
68 if (panel_horizontal) {
69 panel->g_task.area.posy = panel->g_taskbar.posy + panel->g_taskbar.pix.border.width + panel->g_taskbar.paddingy;
70 panel->g_task.area.height = panel->area.height - (2 * panel->g_task.area.posy);
71 }
72 else {
73 panel->g_task.area.posx = panel->g_taskbar.posx + panel->g_taskbar.pix.border.width + panel->g_taskbar.paddingy;
74 panel->g_task.area.width = panel->area.width - (2 * panel->g_task.area.posx);
75 panel->g_task.area.height = panel->g_task.maximum_height;
76 }
77
78 if (panel->g_task.area.pix.border.rounded > panel->g_task.area.height/2) {
79 panel->g_task.area.pix.border.rounded = panel->g_task.area.height/2;
80 panel->g_task.area.pix_active.border.rounded = panel->g_task.area.pix.border.rounded;
81 }
82
83 // compute vertical position : text and icon
84 int height_ink, height;
85 get_text_size(panel->g_task.font_desc, &height_ink, &height, panel->area.height, "TAjpg", 5);
86
87 if (!panel->g_task.maximum_width && panel_horizontal)
88 panel->g_task.maximum_width = server.monitor[panel->monitor].width;
89
90 panel->g_task.text_posx = panel->g_task.area.pix.border.width + panel->g_task.area.paddingxlr;
91 panel->g_task.text_posy = (panel->g_task.area.height - height) / 2.0;
92 if (panel->g_task.icon) {
93 panel->g_task.icon_size1 = panel->g_task.area.height - (2 * panel->g_task.area.paddingy);
94 panel->g_task.text_posx += panel->g_task.icon_size1;
95 panel->g_task.icon_posy = (panel->g_task.area.height - panel->g_task.icon_size1) / 2;
96 }
97 //printf("monitor %d, task_maximum_width %d\n", panel->monitor, panel->g_task.maximum_width);
98
99 Taskbar *tskbar;
100 panel->nb_desktop = server.nb_desktop;
101 panel->taskbar = calloc(panel->nb_desktop, sizeof(Taskbar));
102 for (j=0 ; j < panel->nb_desktop ; j++) {
103 tskbar = &panel->taskbar[j];
104 memcpy(&tskbar->area, &panel->g_taskbar, sizeof(Area));
105 tskbar->desktop = j;
106 if (j == server.desktop && tskbar->area.use_active)
107 tskbar->area.is_active = 1;
108
109 // add taskbar to the panel
110 panel->area.list = g_slist_append(panel->area.list, tskbar);
111 }
112 }
113 }
114
115
116 void cleanup_taskbar()
117 {
118 Panel *panel;
119 Taskbar *tskbar;
120 int i, j;
121 GSList *l0;
122 Task *tsk;
123
124 for (i=0 ; i < nb_panel ; i++) {
125 panel = &panel1[i];
126
127 for (j=0 ; j < panel->nb_desktop ; j++) {
128 tskbar = &panel->taskbar[j];
129 l0 = tskbar->area.list;
130 while (l0) {
131 tsk = l0->data;
132 l0 = l0->next;
133 // careful : remove_task change l0->next
134 remove_task (tsk);
135 }
136 free_area (&tskbar->area);
137
138 // remove taskbar from the panel
139 panel->area.list = g_slist_remove(panel->area.list, tskbar);
140 }
141 }
142
143 for (i=0 ; i < nb_panel ; i++) {
144 panel = &panel1[i];
145 if (panel->taskbar) {
146 free(panel->taskbar);
147 panel->taskbar = 0;
148 }
149 }
150 }
151
152
153 Task *task_get_task (Window win)
154 {
155 Task *tsk;
156 GSList *l0;
157 int i, j;
158
159 for (i=0 ; i < nb_panel ; i++) {
160 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
161 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
162 tsk = l0->data;
163 if (win == tsk->win)
164 return tsk;
165 }
166 }
167 }
168 return 0;
169 }
170
171
172 void task_refresh_tasklist ()
173 {
174 Window *win, active_win;
175 int num_results, i, j, k;
176 GSList *l0;
177 Task *tsk;
178
179 win = server_get_property (server.root_win, server.atom._NET_CLIENT_LIST, XA_WINDOW, &num_results);
180 if (!win) return;
181
182 // Remove any old and set active win
183 active_win = window_get_active ();
184 if (task_active) {
185 task_active->area.is_active = 0;
186 task_active = 0;
187 }
188
189 for (i=0 ; i < nb_panel ; i++) {
190 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
191 l0 = panel1[i].taskbar[j].area.list;
192 while (l0) {
193 tsk = l0->data;
194 l0 = l0->next;
195
196 if (tsk->win == active_win) {
197 tsk->area.is_active = 1;
198 task_active = tsk;
199 }
200
201 for (k = 0; k < num_results; k++) {
202 if (tsk->win == win[k]) break;
203 }
204 // careful : remove_task change l0->next
205 if (k == num_results) remove_task (tsk);
206 }
207 }
208 }
209
210 // Add any new
211 for (i = 0; i < num_results; i++)
212 if (!task_get_task (win[i]))
213 add_task (win[i]);
214
215 XFree (win);
216 }
217
218
219 void resize_taskbar(void *obj)
220 {
221 Taskbar *taskbar = (Taskbar*)obj;
222 Panel *panel = (Panel*)taskbar->area.panel;
223 Task *tsk;
224 GSList *l;
225 int task_count;
226
227 //printf("resize_taskbar : posx et width des taches\n");
228
229 taskbar->area.redraw = 1;
230
231 if (panel_horizontal) {
232 int pixel_width, modulo_width=0;
233 int x, taskbar_width;
234
235 // new task width for 'desktop'
236 task_count = g_slist_length(taskbar->area.list);
237 if (!task_count) pixel_width = panel->g_task.maximum_width;
238 else {
239 taskbar_width = taskbar->area.width - (2 * panel->g_taskbar.pix.border.width) - (2 * panel->g_taskbar.paddingxlr);
240 if (task_count>1) taskbar_width -= ((task_count-1) * panel->g_taskbar.paddingx);
241
242 pixel_width = taskbar_width / task_count;
243 if (pixel_width > panel->g_task.maximum_width)
244 pixel_width = panel->g_task.maximum_width;
245 else
246 modulo_width = taskbar_width % task_count;
247 }
248
249 if ((taskbar->task_width == pixel_width) && (taskbar->task_modulo == modulo_width)) {
250 }
251 else {
252 taskbar->task_width = pixel_width;
253 taskbar->task_modulo = modulo_width;
254 taskbar->text_width = pixel_width - panel->g_task.text_posx - panel->g_task.area.pix.border.width - panel->g_task.area.paddingx;
255 }
256
257 // change pos_x and width for all tasks
258 x = taskbar->area.posx + taskbar->area.pix.border.width + taskbar->area.paddingxlr;
259 for (l = taskbar->area.list; l ; l = l->next) {
260 tsk = l->data;
261 tsk->area.posx = x;
262 tsk->area.width = pixel_width;
263 tsk->area.redraw = 1;
264 if (modulo_width) {
265 tsk->area.width++;
266 modulo_width--;
267 }
268
269 x += tsk->area.width + panel->g_taskbar.paddingx;
270 }
271 }
272 else {
273 int pixel_height, modulo_height=0;
274 int y, taskbar_height;
275
276 // new task width for 'desktop'
277 task_count = g_slist_length(taskbar->area.list);
278 if (!task_count) pixel_height = panel->g_task.maximum_height;
279 else {
280 taskbar_height = taskbar->area.height - (2 * panel->g_taskbar.pix.border.width) - (2 * panel->g_taskbar.paddingxlr);
281 if (task_count>1) taskbar_height -= ((task_count-1) * panel->g_taskbar.paddingx);
282
283 pixel_height = taskbar_height / task_count;
284 if (pixel_height > panel->g_task.maximum_height)
285 pixel_height = panel->g_task.maximum_height;
286 else
287 modulo_height = taskbar_height % task_count;
288 }
289
290 if ((taskbar->task_width == pixel_height) && (taskbar->task_modulo == modulo_height)) {
291 }
292 else {
293 taskbar->task_width = pixel_height;
294 taskbar->task_modulo = modulo_height;
295 taskbar->text_width = taskbar->area.width - (2 * panel->g_taskbar.paddingy) - panel->g_task.text_posx - panel->g_task.area.pix.border.width - panel->g_task.area.paddingx;
296 }
297
298 // change pos_y and height for all tasks
299 y = taskbar->area.posy + taskbar->area.pix.border.width + taskbar->area.paddingxlr;
300 for (l = taskbar->area.list; l ; l = l->next) {
301 tsk = l->data;
302 tsk->area.posy = y;
303 tsk->area.height = pixel_height;
304 tsk->area.redraw = 1;
305 if (modulo_height) {
306 tsk->area.height++;
307 modulo_height--;
308 }
309
310 y += tsk->area.height + panel->g_taskbar.paddingx;
311 }
312 }
313 }
314
315
316
This page took 0.048217 seconds and 5 git commands to generate.