]> Dogcows Code - chaz/tint2/blob - src/taskbar/taskbar.c
replace task_width with task_maximum_size. change wiki documentation.
[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
107 // add taskbar to the panel
108 panel->area.list = g_slist_append(panel->area.list, tskbar);
109 }
110 }
111 }
112
113
114 void cleanup_taskbar()
115 {
116 Panel *panel;
117 Taskbar *tskbar;
118 int i, j;
119 GSList *l0;
120 Task *tsk;
121
122 for (i=0 ; i < nb_panel ; i++) {
123 panel = &panel1[i];
124
125 for (j=0 ; j < panel->nb_desktop ; j++) {
126 tskbar = &panel->taskbar[j];
127 l0 = tskbar->area.list;
128 while (l0) {
129 tsk = l0->data;
130 l0 = l0->next;
131 // careful : remove_task change l0->next
132 remove_task (tsk);
133 }
134 free_area (&tskbar->area);
135
136 // remove taskbar from the panel
137 panel->area.list = g_slist_remove(panel->area.list, tskbar);
138 }
139 }
140
141 for (i=0 ; i < nb_panel ; i++) {
142 panel = &panel1[i];
143 if (panel->taskbar) {
144 free(panel->taskbar);
145 panel->taskbar = 0;
146 }
147 }
148 }
149
150
151 Task *task_get_task (Window win)
152 {
153 Task *tsk;
154 GSList *l0;
155 int i, j;
156
157 for (i=0 ; i < nb_panel ; i++) {
158 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
159 for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
160 tsk = l0->data;
161 if (win == tsk->win)
162 return tsk;
163 }
164 }
165 }
166 return 0;
167 }
168
169
170 void task_refresh_tasklist ()
171 {
172 Window *win, active_win;
173 int num_results, i, j, k;
174 GSList *l0;
175 Task *tsk;
176
177 win = server_get_property (server.root_win, server.atom._NET_CLIENT_LIST, XA_WINDOW, &num_results);
178
179 if (!win) return;
180
181 // Remove any old and set active win
182 active_win = window_get_active ();
183 if (task_active) {
184 task_active->area.is_active = 0;
185 task_active = 0;
186 }
187
188 for (i=0 ; i < nb_panel ; i++) {
189 for (j=0 ; j < panel1[i].nb_desktop ; j++) {
190 l0 = panel1[i].taskbar[j].area.list;
191 while (l0) {
192 tsk = l0->data;
193 l0 = l0->next;
194
195 if (tsk->win == active_win) {
196 tsk->area.is_active = 1;
197 task_active = tsk;
198 }
199
200 for (k = 0; k < num_results; k++) {
201 if (tsk->win == win[k]) break;
202 }
203 // careful : remove_task change l0->next
204 if (k == num_results) remove_task (tsk);
205 }
206 }
207 }
208
209 // Add any new
210 for (i = 0; i < num_results; i++)
211 if (!task_get_task (win[i]))
212 add_task (win[i]);
213
214 XFree (win);
215 }
216
217
218 void resize_taskbar(void *obj)
219 {
220 Taskbar *taskbar = (Taskbar*)obj;
221 Panel *panel = (Panel*)taskbar->area.panel;
222 Task *tsk;
223 GSList *l;
224 int task_count;
225
226 //printf("resize_taskbar : posx et width des taches\n");
227
228 taskbar->area.redraw = 1;
229
230 if (panel_horizontal) {
231 int pixel_width, modulo_width=0;
232 int x, taskbar_width;
233
234 // new task width for 'desktop'
235 task_count = g_slist_length(taskbar->area.list);
236 if (!task_count) pixel_width = panel->g_task.maximum_width;
237 else {
238 taskbar_width = taskbar->area.width - (2 * panel->g_taskbar.pix.border.width) - (2 * panel->g_taskbar.paddingxlr);
239 if (task_count>1) taskbar_width -= ((task_count-1) * panel->g_taskbar.paddingx);
240
241 pixel_width = taskbar_width / task_count;
242 if (pixel_width > panel->g_task.maximum_width)
243 pixel_width = panel->g_task.maximum_width;
244 else
245 modulo_width = taskbar_width % task_count;
246 }
247
248 if ((taskbar->task_width == pixel_width) && (taskbar->task_modulo == modulo_width)) {
249 }
250 else {
251 taskbar->task_width = pixel_width;
252 taskbar->task_modulo = modulo_width;
253 taskbar->text_width = pixel_width - panel->g_task.text_posx - panel->g_task.area.pix.border.width - panel->g_task.area.paddingx;
254 }
255
256 // change pos_x and width for all tasks
257 x = taskbar->area.posx + taskbar->area.pix.border.width + taskbar->area.paddingxlr;
258 for (l = taskbar->area.list; l ; l = l->next) {
259 tsk = l->data;
260 tsk->area.posx = x;
261 tsk->area.width = pixel_width;
262 tsk->area.redraw = 1;
263 if (modulo_width) {
264 tsk->area.width++;
265 modulo_width--;
266 }
267
268 x += tsk->area.width + panel->g_taskbar.paddingx;
269 }
270 }
271 else {
272 int pixel_height, modulo_height=0;
273 int y, taskbar_height;
274
275 // new task width for 'desktop'
276 task_count = g_slist_length(taskbar->area.list);
277 if (!task_count) pixel_height = panel->g_task.maximum_height;
278 else {
279 taskbar_height = taskbar->area.height - (2 * panel->g_taskbar.pix.border.width) - (2 * panel->g_taskbar.paddingxlr);
280 if (task_count>1) taskbar_height -= ((task_count-1) * panel->g_taskbar.paddingx);
281
282 pixel_height = taskbar_height / task_count;
283 if (pixel_height > panel->g_task.maximum_height)
284 pixel_height = panel->g_task.maximum_height;
285 else
286 modulo_height = taskbar_height % task_count;
287 }
288
289 if ((taskbar->task_width == pixel_height) && (taskbar->task_modulo == modulo_height)) {
290 }
291 else {
292 taskbar->task_width = pixel_height;
293 taskbar->task_modulo = modulo_height;
294 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;
295 }
296
297 // change pos_y and height for all tasks
298 y = taskbar->area.posy + taskbar->area.pix.border.width + taskbar->area.paddingxlr;
299 for (l = taskbar->area.list; l ; l = l->next) {
300 tsk = l->data;
301 tsk->area.posy = y;
302 tsk->area.height = pixel_height;
303 tsk->area.redraw = 1;
304 if (modulo_height) {
305 tsk->area.height++;
306 modulo_height--;
307 }
308
309 y += tsk->area.height + panel->g_taskbar.paddingx;
310 }
311 }
312 }
313
314
315
This page took 0.051429 seconds and 5 git commands to generate.