all repos — tint2 @ 301aff0f1018f58f21225d98488d569b78367488

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

cleanup duplicate code and fixed ALLDESKTOP task

git-svn-id: http://tint2.googlecode.com/svn/trunk@569 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

301aff0f1018f58f21225d98488d569b78367488

parent

c56972261793257637145195530f023cb6f5e300

4 files changed, 23 insertions(+), 83 deletions(-)

jump to
M src/panel.csrc/panel.c

@@ -304,7 +304,7 @@

int resize_panel(void *obj) { - int ret = resize_by_layout(obj); + resize_by_layout(obj, 0); //printf("resize_panel\n"); if (panel_mode != MULTI_DESKTOP) {

@@ -319,7 +319,7 @@ panel->taskbar[i].area.height = height;

panel->taskbar[i].area.resize = 1; } } - return ret; + return 0; }
M src/taskbar/taskbar.csrc/taskbar/taskbar.c

@@ -261,95 +261,27 @@

int resize_taskbar(void *obj) { - //int ret = resize_by_layout(obj); - // on_changed - // taskbar->text_width = pixel_width - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; - //taskbar->text_width = taskbar->area.width - (2 * panel->g_taskbar.area.paddingy) - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; - //return ret; - Taskbar *taskbar = (Taskbar*)obj; Panel *panel = (Panel*)taskbar->area.panel; + int text_width; Task *tsk; - GSList *l; - int task_count, border_width; //printf("resize_taskbar %d %d\n", taskbar->area.posx, taskbar->area.posy); -// taskbar->area.redraw = 1; - border_width = taskbar->area.bg->border.width; - if (panel_horizontal) { - int pixel_width, modulo_width=0; - int taskbar_width, old_width; - - // new task width for 'desktop' - task_count = g_slist_length(taskbar->area.list); - if (!task_count) pixel_width = panel->g_task.maximum_width; - else { - taskbar_width = taskbar->area.width - (2 * border_width) - (2 * panel->g_taskbar.area.paddingxlr); - if (task_count>1) taskbar_width -= ((task_count-1) * panel->g_taskbar.area.paddingx); - - pixel_width = taskbar_width / task_count; - if (pixel_width > panel->g_task.maximum_width) - pixel_width = panel->g_task.maximum_width; - else - modulo_width = taskbar_width % task_count; - } - - taskbar->task_width = pixel_width; - taskbar->task_modulo = modulo_width; - taskbar->text_width = pixel_width - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; - - // change pos_x and width for all tasks - for (l = taskbar->area.list; l ; l = l->next) { - tsk = l->data; - if (!tsk->area.on_screen) continue; - old_width = tsk->area.width; - tsk->area.width = pixel_width; - if (modulo_width) { - tsk->area.width++; - modulo_width--; - } - if (tsk->area.width != old_width) - tsk->area.on_changed = 1; + resize_by_layout(obj, panel->g_task.maximum_width); + + text_width = panel->g_task.maximum_width; + if (taskbar->area.list != NULL) { + tsk = taskbar->area.list->data; + text_width = tsk->area.width; } + taskbar->text_width = text_width - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; } else { - int pixel_height, modulo_height=0; - int taskbar_height, old_height; - - // new task width for 'desktop' - task_count = g_slist_length(taskbar->area.list); - if (!task_count) pixel_height = panel->g_task.maximum_height; - else { - taskbar_height = taskbar->area.height - (2 * border_width) - (2 * panel->g_taskbar.area.paddingxlr); - if (task_count>1) taskbar_height -= ((task_count-1) * panel->g_taskbar.area.paddingx); - - pixel_height = taskbar_height / task_count; - if (pixel_height > panel->g_task.maximum_height) - pixel_height = panel->g_task.maximum_height; - else - modulo_height = taskbar_height % task_count; - } - - taskbar->task_width = pixel_height; - taskbar->task_modulo = modulo_height; - taskbar->text_width = taskbar->area.width - (2 * panel->g_taskbar.area.paddingy) - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; - - // change pos_y and height for all tasks - for (l = taskbar->area.list; l ; l = l->next) { - tsk = l->data; - if (!tsk->area.on_screen) continue; - old_height = tsk->area.height; - tsk->area.height = pixel_height; - if (modulo_height) { - tsk->area.height++; - modulo_height--; - } - if (tsk->area.height != old_height) - tsk->area.on_changed = 1; - } + resize_by_layout(obj, panel->g_task.maximum_height); + + taskbar->text_width = taskbar->area.width - (2 * panel->g_taskbar.area.paddingy) - panel->g_task.text_posx - panel->g_task.area.bg->border.width - panel->g_task.area.paddingx; } - return 0; }
M src/util/area.csrc/util/area.c

@@ -221,7 +221,7 @@ refresh(l->data);

} -int resize_by_layout(void *obj) +int resize_by_layout(void *obj, int maximum_size) { Area *child, *a = (Area*)obj; int size, nb_by_content=0, nb_by_layout=0;

@@ -247,6 +247,10 @@ int width=0, modulo=0, old_width;

if (nb_by_layout) { width = size / nb_by_layout; modulo = size % nb_by_layout; + if (width > maximum_size && maximum_size != 0) { + width = maximum_size; + modulo = 0; + } } // resize SIZE_BY_LAYOUT objects

@@ -284,6 +288,10 @@ int height=0, modulo=0, old_height;

if (nb_by_layout) { height = size / nb_by_layout; modulo = size % nb_by_layout; + if (height > maximum_size && maximum_size != 0) { + height = maximum_size; + modulo = 0; + } } // resize SIZE_BY_LAYOUT objects
M src/util/area.hsrc/util/area.h

@@ -101,7 +101,7 @@ // draw background and foreground

void refresh (Area *a); // generic resize for SIZE_BY_LAYOUT objects -int resize_by_layout(void *obj); +int resize_by_layout(void *obj, int maximum_size); // set 'redraw' on an area and childs void set_redraw (Area *a);