wmii/cmd/wm/bar.c

162 lines
3.5 KiB
C
Raw Normal View History

/*
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include <math.h>
#include <string.h>
2006-03-09 04:15:43 +03:00
#include <stdlib.h>
#include "wm.h"
2006-06-08 12:54:19 +04:00
Bar *free_bars = nil;
2006-04-12 12:44:07 +04:00
Bar *
create_bar(Bar **b_link, char *name)
{
static unsigned int id = 1;
Bar **i, *b = bar_of_name(*b_link, name);;
if(b)
return b;
2006-06-08 12:54:19 +04:00
if(free_bars) {
b = free_bars;
free_bars = b->next;
}
else
b = cext_emallocz(sizeof(Bar));
b->id = id++;
cext_strlcpy(b->name, name, sizeof(b->name));
b->brush = screen->bbrush;
b->brush.color = def.normcolor;
2006-06-08 12:54:19 +04:00
for(i=b_link; *i; i=&(*i)->next)
if(strcmp((*i)->name, name) >= 0)
2006-06-17 15:32:49 +04:00
break;
2006-06-08 12:54:19 +04:00
b->next = *i;
*i = b;
return b;
}
void
destroy_bar(Bar **b_link, Bar *b)
{
Bar **p;
for(p=b_link; *p && *p != b; p=&(*p)->next);
*p = b->next;
2006-06-08 12:54:19 +04:00
b->next = free_bars;
free_bars = b;
}
unsigned int
2006-04-12 12:44:07 +04:00
height_of_bar()
{
enum { BAR_PADDING = 4 };
return def.font.ascent + def.font.descent + BAR_PADDING;
}
void
resize_bar(WMScreen *s)
{
2006-06-08 12:54:19 +04:00
View *v;
Area *a;
Frame *f;
s->brect = s->rect;
s->brect.height = height_of_bar();
s->brect.y = s->rect.height - s->brect.height;
XMoveResizeWindow(blz.display, s->barwin, s->brect.x, s->brect.y, s->brect.width, s->brect.height);
XSync(blz.display, False);
draw_bar(s);
2006-06-08 12:54:19 +04:00
for(v=view; v; v=v->next) {
for(a = v->area; a; a=a->next) {
a->rect.height = s->rect.height - s->brect.height;
arrange_column(a, False);
}
2006-06-08 12:54:19 +04:00
for(f=v->area->frame; f; f=f->anext) {
resize_client(f->client, &f->rect, False);
}
}
}
void
draw_bar(WMScreen *s)
{
unsigned int width, tw, nb, size;
float shrink;
Bar *b, *tb, *largest, **pb;
blitz_draw_tile(&s->bbrush);
if(!s->lbar && !s->rbar)
2006-05-29 12:08:29 +04:00
goto MapBar;
largest = b = tb = nil;
tw = width = nb = size = 0;
for(b=s->lbar, nb=2 ;nb; --nb && (b = s->rbar))
for(; b; b=b->next) {
b->brush.rect.x = b->brush.rect.y = 0;
b->brush.rect.width = s->brect.height;
2006-06-22 13:46:39 +04:00
if(b->text && strlen(b->text))
b->brush.rect.width += blitz_textwidth(b->brush.font, b->text);
b->brush.rect.height = s->brect.height;
width += b->brush.rect.width;
}
/* Not enough room. Shrink bars until they all fit */
if(width > s->brect.width) {
for(b=s->lbar, nb=2 ;nb; --nb && (b = s->rbar))
for(; b; b=b->next) {
for(pb=&largest; *pb; pb=&(*pb)->smaller)
if((*pb)->brush.rect.width < b->brush.rect.width) break;
b->smaller = *pb;
*pb = b;
}
for(tb=largest; tb; tb=tb->smaller) {
width -= tb->brush.rect.width;
tw += tb->brush.rect.width;
shrink = (s->brect.width - width) / (float)tw;
if(tb->smaller)
if(tb->brush.rect.width * shrink >= tb->smaller->brush.rect.width)
break;
}
for(b=largest; b != tb->smaller; b=b->smaller)
b->brush.rect.width = floor(b->brush.rect.width * shrink);
width += tw * shrink;
tb=nil;
}
for(b=s->lbar, nb=2 ;nb; b=s->rbar, nb--)
for(; b; tb = b, b=b->next) {
if(b == s->rbar) {
b->brush.align = EAST;
s->rbar->brush.rect.width += (s->brect.width - width);
}else
b->brush.align = CENTER;
if(tb)
b->brush.rect.x = tb->brush.rect.x + tb->brush.rect.width;
blitz_draw_label(&b->brush, b->text);
}
2006-05-29 12:08:29 +04:00
MapBar:
XCopyArea(blz.display, s->bbrush.drawable, s->barwin, s->bbrush.gc, 0, 0,
s->brect.width, s->brect.height, 0, 0);
XSync(blz.display, False);
}
2006-04-12 12:44:07 +04:00
Bar *
bar_of_name(Bar *b_link, const char *name)
2006-03-09 04:15:43 +03:00
{
static char buf[256];
2006-06-08 12:54:19 +04:00
Bar *b;
2006-03-09 04:15:43 +03:00
cext_strlcpy(buf, name, sizeof(buf));
for(b=b_link; b; b=b->next)
if(!strncmp(b->name, name, sizeof(b->name))) break;
2006-06-08 12:54:19 +04:00
return b;
2006-03-09 04:15:43 +03:00
}