2006-03-23 12:36:51 +03:00
|
|
|
/*
|
|
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2006-06-08 12:54:19 +04:00
|
|
|
#include <stdio.h>
|
2006-03-23 12:36:51 +03:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "wm.h"
|
|
|
|
|
2006-06-24 05:22:04 +04:00
|
|
|
static Bool
|
|
|
|
is_empty(View *v)
|
|
|
|
{
|
|
|
|
Area *a;
|
|
|
|
for(a=v->area; a; a=a->next)
|
|
|
|
if(a->frame)
|
|
|
|
return False;
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
View *
|
|
|
|
view_of_id(unsigned short id) {
|
|
|
|
View *v;
|
|
|
|
for(v = view; v; v=v->next)
|
|
|
|
if(v->id == id) break;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
View *
|
|
|
|
view_of_name(const char *name)
|
|
|
|
{
|
|
|
|
View *v;
|
2006-06-25 17:16:03 +04:00
|
|
|
int cmp;
|
2006-06-24 05:22:04 +04:00
|
|
|
for(v = view; v; v=v->next)
|
2006-06-25 17:16:03 +04:00
|
|
|
if(!(cmp=strcmp(name, v->name)))
|
|
|
|
break;
|
|
|
|
else if(cmp > 0)
|
|
|
|
return nil;
|
2006-06-24 05:22:04 +04:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
View *
|
2006-06-24 05:22:04 +04:00
|
|
|
get_view(const char *name)
|
|
|
|
{
|
|
|
|
View *v = view_of_name(name);
|
|
|
|
return v ? v : create_view(name);
|
|
|
|
}
|
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
static void
|
|
|
|
assign_sel_view(View *v)
|
2006-04-13 18:52:33 +04:00
|
|
|
{
|
2006-06-24 03:39:00 +04:00
|
|
|
if(sel != v) {
|
2006-06-24 04:26:24 +04:00
|
|
|
if(sel)
|
|
|
|
write_event("UnfocusTag %s\n", sel->name);
|
2006-06-24 03:39:00 +04:00
|
|
|
sel = v;
|
2006-06-24 04:26:24 +04:00
|
|
|
write_event("FocusTag %s\n", sel->name);
|
2006-06-08 12:54:19 +04:00
|
|
|
}
|
2006-04-13 18:52:33 +04:00
|
|
|
}
|
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
View *
|
2006-05-24 11:26:08 +04:00
|
|
|
create_view(const char *name)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
|
|
|
static unsigned short id = 1;
|
2006-06-08 12:54:19 +04:00
|
|
|
View **i, *v = cext_emallocz(sizeof(View));
|
2006-03-23 12:36:51 +03:00
|
|
|
|
|
|
|
v->id = id++;
|
2006-04-04 14:25:36 +04:00
|
|
|
cext_strlcpy(v->name, name, sizeof(v->name));
|
2006-06-08 12:54:19 +04:00
|
|
|
create_area(v, nil, 0);
|
|
|
|
create_area(v, v->area, 0);
|
2006-06-24 05:22:04 +04:00
|
|
|
v->area->floating = True;
|
2006-03-23 12:36:51 +03:00
|
|
|
|
2006-06-24 05:22:04 +04:00
|
|
|
for(i=&view; *i; i=&(*i)->next)
|
|
|
|
if(strcmp((*i)->name, name) < 0) break;
|
2006-06-08 12:54:19 +04:00
|
|
|
v->next = *i;
|
|
|
|
*i = v;
|
2006-06-07 21:19:16 +04:00
|
|
|
|
2006-06-24 04:26:24 +04:00
|
|
|
write_event("CreateTag %s\n", v->name);
|
2006-06-08 12:54:19 +04:00
|
|
|
if(!sel)
|
|
|
|
assign_sel_view(v);
|
|
|
|
|
|
|
|
return v;
|
2006-06-07 21:19:16 +04:00
|
|
|
}
|
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
void
|
2006-03-23 12:43:57 +03:00
|
|
|
destroy_view(View *v)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
2006-06-08 12:54:19 +04:00
|
|
|
Area *a;
|
|
|
|
View **i;
|
|
|
|
|
2006-06-20 06:13:29 +04:00
|
|
|
while((a = v->area)) {
|
|
|
|
v->area = a->next;
|
2006-06-08 12:54:19 +04:00
|
|
|
destroy_area(a);
|
2006-06-20 06:13:29 +04:00
|
|
|
};
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-20 06:13:29 +04:00
|
|
|
for(i=&view; *i; i=&(*i)->next)
|
|
|
|
if(*i == v) break;
|
2006-06-08 12:54:19 +04:00
|
|
|
*i = v->next;
|
|
|
|
|
|
|
|
if(sel == v)
|
2006-06-20 06:13:29 +04:00
|
|
|
for(sel=view; sel; sel=sel->next)
|
|
|
|
if(sel->next == *i) break;
|
2006-03-23 12:36:51 +03:00
|
|
|
|
2006-06-24 04:26:24 +04:00
|
|
|
write_event("DestroyTag %s\n", v->name);
|
2006-03-23 18:12:06 +03:00
|
|
|
free(v);
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_frame_selectors(View *v)
|
|
|
|
{
|
2006-06-25 17:16:03 +04:00
|
|
|
Area *a;
|
2006-06-08 12:54:19 +04:00
|
|
|
Frame *f;
|
2006-06-25 17:16:03 +04:00
|
|
|
for(a=v->area; a; a=a->next)
|
|
|
|
for(f=a->frame; f; f=f->anext)
|
|
|
|
f->client->sel = f;
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-03-23 12:43:57 +03:00
|
|
|
focus_view(View *v)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
2006-06-25 17:16:03 +04:00
|
|
|
Frame *f;
|
2006-03-29 11:45:54 +04:00
|
|
|
Client *c;
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-22 13:03:42 +04:00
|
|
|
XGrabServer(blz.display);
|
2006-06-07 21:19:16 +04:00
|
|
|
assign_sel_view(v);
|
2006-03-23 12:36:51 +03:00
|
|
|
|
|
|
|
update_frame_selectors(v);
|
|
|
|
|
|
|
|
/* gives all(!) clients proper geometry (for use of different tags) */
|
2006-06-08 12:54:19 +04:00
|
|
|
for(c=client; c; c=c->next)
|
2006-06-25 17:16:03 +04:00
|
|
|
if((f = c->sel)) {
|
|
|
|
if(f->view == v) {
|
2006-06-22 13:03:42 +04:00
|
|
|
XMoveWindow(blz.display, c->framewin, f->rect.x, f->rect.y);
|
2006-06-08 12:54:19 +04:00
|
|
|
resize_client(c, &f->rect, False);
|
2006-06-25 17:16:03 +04:00
|
|
|
}else
|
2006-06-22 13:03:42 +04:00
|
|
|
XMoveWindow(blz.display, c->framewin, 2 * rect.width + f->rect.x, f->rect.y);
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-20 02:25:49 +04:00
|
|
|
if((c = sel_client()))
|
2006-04-28 14:37:19 +04:00
|
|
|
focus_client(c, True);
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-20 16:32:19 +04:00
|
|
|
draw_frames();
|
2006-06-22 13:03:42 +04:00
|
|
|
XSync(blz.display, False);
|
|
|
|
XUngrabServer(blz.display);
|
2006-05-01 23:15:24 +04:00
|
|
|
flush_masked_events(EnterWindowMask);
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-05-24 11:26:08 +04:00
|
|
|
select_view(const char *arg)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
2006-05-24 11:26:08 +04:00
|
|
|
char buf[256];
|
|
|
|
cext_strlcpy(buf, arg, sizeof(buf));
|
|
|
|
cext_trim(buf, " \t+");
|
|
|
|
if(!strlen(buf))
|
|
|
|
return;
|
2006-06-08 12:54:19 +04:00
|
|
|
assign_sel_view(get_view(arg));
|
2006-05-23 18:56:43 +04:00
|
|
|
update_views(); /* performs focus_view */
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-25 17:16:03 +04:00
|
|
|
attach_to_view(View *v, Frame *f)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
|
|
|
Area *a;
|
2006-06-25 17:16:03 +04:00
|
|
|
Client *c = f->client;
|
2006-03-23 12:36:51 +03:00
|
|
|
|
2006-04-26 18:00:47 +04:00
|
|
|
c->revert = nil;
|
|
|
|
|
2006-05-23 00:35:20 +04:00
|
|
|
if(c->trans || c->floating || c->fixedsize
|
2006-04-26 18:23:05 +04:00
|
|
|
|| (c->rect.width == rect.width && c->rect.height == rect.height))
|
2006-06-08 12:54:19 +04:00
|
|
|
a = v->area;
|
2006-06-24 05:22:04 +04:00
|
|
|
else if(starting && v->sel->floating)
|
2006-06-23 09:43:28 +04:00
|
|
|
a = v->area->next;
|
2006-03-23 12:36:51 +03:00
|
|
|
else
|
2006-06-08 12:54:19 +04:00
|
|
|
a = v->sel;
|
2006-06-25 17:16:03 +04:00
|
|
|
attach_to_area(a, f, False);
|
2006-06-08 12:54:19 +04:00
|
|
|
v->sel = a;
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-03-23 12:43:57 +03:00
|
|
|
restack_view(View *v)
|
2006-03-23 12:36:51 +03:00
|
|
|
{
|
2006-06-08 12:54:19 +04:00
|
|
|
Area *a;
|
|
|
|
Frame *f;
|
|
|
|
Client *c;
|
|
|
|
unsigned int n=0, i=0;
|
2006-03-23 12:36:51 +03:00
|
|
|
static Window *wins = nil;
|
2006-03-23 17:01:32 +03:00
|
|
|
static unsigned int winssz = 0;
|
2006-03-23 12:36:51 +03:00
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
for(c=client; c; c=c->next, i++);
|
|
|
|
if(i > winssz) {
|
|
|
|
winssz = 2 * i;
|
2006-04-10 17:48:27 +04:00
|
|
|
wins = realloc(wins, sizeof(Window) * winssz);
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
for(a=v->area; a; a=a->next) {
|
|
|
|
if(a->frame) {
|
|
|
|
wins[n++] = a->sel->client->framewin;
|
2006-06-20 02:25:49 +04:00
|
|
|
for(f=a->frame; f; f=f->anext)
|
|
|
|
if(f != a->sel) n++;
|
2006-06-08 12:54:19 +04:00
|
|
|
i=n;
|
|
|
|
for(f=a->frame; f; f=f->anext) {
|
|
|
|
Client *c = f->client;
|
|
|
|
update_client_grab(c, (v->sel == a) && (a->sel == f));
|
|
|
|
if(f != a->sel)
|
|
|
|
wins[--i] = c->framewin;
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(n)
|
2006-06-22 13:03:42 +04:00
|
|
|
XRestackWindows(blz.display, wins, n);
|
2006-03-23 12:36:51 +03:00
|
|
|
}
|
2006-03-27 09:17:47 +04:00
|
|
|
|
2006-04-24 19:39:58 +04:00
|
|
|
void
|
|
|
|
scale_view(View *v, float w)
|
|
|
|
{
|
2006-06-08 12:54:19 +04:00
|
|
|
unsigned int xoff, i=0;
|
|
|
|
Area *a;
|
2006-04-24 19:39:58 +04:00
|
|
|
float scale, dx = 0;
|
2006-05-04 01:11:14 +04:00
|
|
|
int wdiff = 0;
|
2006-04-24 19:39:58 +04:00
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
if(!v->area->next)
|
2006-04-24 19:39:58 +04:00
|
|
|
return;
|
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
for(a=v->area->next; a; a=a->next, i++)
|
|
|
|
dx += a->rect.width;
|
2006-04-24 19:39:58 +04:00
|
|
|
scale = w / dx;
|
2006-05-04 00:25:33 +04:00
|
|
|
xoff = 0;
|
2006-06-08 12:54:19 +04:00
|
|
|
for(a=v->area->next; a; a=a->next) {
|
2006-04-24 19:39:58 +04:00
|
|
|
a->rect.width *= scale;
|
2006-06-08 12:54:19 +04:00
|
|
|
if(!a->next)
|
2006-05-04 01:26:21 +04:00
|
|
|
a->rect.width = w - xoff;
|
|
|
|
xoff += a->rect.width;
|
2006-04-24 19:39:58 +04:00
|
|
|
}
|
2006-05-04 01:11:14 +04:00
|
|
|
|
|
|
|
/* MIN_COLWIDTH can only be respected when there is enough space; the caller should guarantee this */
|
2006-06-08 12:54:19 +04:00
|
|
|
if(i * MIN_COLWIDTH > w)
|
2006-05-04 01:11:14 +04:00
|
|
|
return;
|
2006-05-04 01:26:21 +04:00
|
|
|
xoff = 0;
|
2006-06-08 12:54:19 +04:00
|
|
|
for(a=v->area->next; a; a=a->next, i--) {
|
2006-05-04 01:11:14 +04:00
|
|
|
if(a->rect.width < MIN_COLWIDTH)
|
|
|
|
a->rect.width = MIN_COLWIDTH;
|
2006-06-08 12:54:19 +04:00
|
|
|
else if((wdiff = xoff + a->rect.width - w + i * MIN_COLWIDTH) > 0)
|
2006-05-04 01:11:14 +04:00
|
|
|
a->rect.width -= wdiff;
|
2006-06-08 12:54:19 +04:00
|
|
|
if(!a->next)
|
2006-05-04 01:11:14 +04:00
|
|
|
a->rect.width = w - xoff;
|
|
|
|
xoff += a->rect.width;
|
|
|
|
}
|
2006-04-24 19:39:58 +04:00
|
|
|
}
|
|
|
|
|
2006-03-27 09:17:47 +04:00
|
|
|
void
|
2006-04-24 19:19:50 +04:00
|
|
|
arrange_view(View *v)
|
2006-03-27 09:17:47 +04:00
|
|
|
{
|
2006-06-08 12:54:19 +04:00
|
|
|
unsigned int xoff = 0;
|
|
|
|
Area *a;
|
2006-03-27 09:17:47 +04:00
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
if(!v->area->next)
|
2006-03-27 09:17:47 +04:00
|
|
|
return;
|
|
|
|
|
2006-04-24 19:39:58 +04:00
|
|
|
scale_view(v, rect.width);
|
2006-06-08 12:54:19 +04:00
|
|
|
for(a=v->area->next; a; a=a->next) {
|
2006-04-24 19:19:50 +04:00
|
|
|
a->rect.x = xoff;
|
|
|
|
a->rect.y = 0;
|
|
|
|
a->rect.height = rect.height - brect.height;
|
|
|
|
xoff += a->rect.width;
|
2006-04-06 19:03:12 +04:00
|
|
|
arrange_column(a, False);
|
2006-03-27 09:17:47 +04:00
|
|
|
}
|
|
|
|
}
|
2006-04-10 19:50:39 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
Client *
|
|
|
|
sel_client_of_view(View *v) {
|
|
|
|
return v->sel && v->sel->sel ? v->sel->sel->client : nil;
|
|
|
|
}
|
2006-04-11 12:16:01 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
XRectangle *
|
|
|
|
rects_of_view(View *v, unsigned int *num)
|
|
|
|
{
|
|
|
|
XRectangle *result = nil;
|
|
|
|
Frame *f;
|
2006-04-11 12:16:01 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
*num = 2;
|
|
|
|
for(f=v->area->frame; f; f=f->anext, (*num)++);
|
2006-04-11 12:16:01 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
result = cext_emallocz(*num * sizeof(XRectangle));
|
|
|
|
for(f=v->area->frame; f; f=f->anext)
|
|
|
|
*result++ = f->rect;
|
|
|
|
*result++ = rect;
|
|
|
|
*result++ = brect;
|
2006-04-11 12:16:01 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
return &result[-*num];
|
2006-06-21 03:43:20 +04:00
|
|
|
}
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
/* XXX: This will need cleanup */
|
|
|
|
unsigned char *
|
|
|
|
view_index(View *v) {
|
|
|
|
unsigned int a_i, buf_i, n;
|
|
|
|
int len;
|
|
|
|
Frame *f;
|
|
|
|
Area *a;
|
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
len = BUFFER_SIZE;
|
2006-06-17 15:32:49 +04:00
|
|
|
buf_i = 0;
|
|
|
|
for((a = v->area), (a_i = 0); a; (a=a->next), (a_i++)) {
|
|
|
|
for(f=a->frame; f && len > 0; f=f->anext) {
|
|
|
|
XRectangle *r = &f->rect;
|
|
|
|
if(a_i == 0)
|
2006-06-25 17:16:03 +04:00
|
|
|
n = snprintf(&buffer[buf_i], len, "~ %d %d %d %d %d %s\n",
|
2006-06-17 15:32:49 +04:00
|
|
|
idx_of_client(f->client),
|
|
|
|
r->x, r->y, r->width, r->height,
|
|
|
|
f->client->props);
|
|
|
|
else
|
2006-06-25 17:16:03 +04:00
|
|
|
n = snprintf(&buffer[buf_i], len, "%d %d %d %s\n",
|
2006-06-17 15:32:49 +04:00
|
|
|
a_i, idx_of_client(f->client),
|
|
|
|
r->width, f->client->props);
|
2006-06-25 17:28:29 +04:00
|
|
|
if(len - n < 0)
|
|
|
|
return buffer;
|
2006-06-17 15:32:49 +04:00
|
|
|
buf_i += n;
|
|
|
|
len -= n;
|
|
|
|
}
|
|
|
|
}
|
2006-06-25 17:16:03 +04:00
|
|
|
return buffer;
|
2006-06-17 15:32:49 +04:00
|
|
|
}
|
|
|
|
|
2006-06-19 15:18:09 +04:00
|
|
|
Client *
|
2006-06-21 03:43:20 +04:00
|
|
|
client_of_message(View *v, char *message, unsigned int *next)
|
2006-06-20 02:25:49 +04:00
|
|
|
{
|
2006-06-19 17:49:11 +04:00
|
|
|
unsigned int i;
|
2006-06-19 15:18:09 +04:00
|
|
|
Client *c;
|
|
|
|
|
2006-06-19 17:49:11 +04:00
|
|
|
if(!strncmp(message, "sel ", 4)) {
|
|
|
|
*next = 4;
|
2006-06-21 03:43:20 +04:00
|
|
|
return sel_client_of_view(v);
|
2006-06-19 17:49:11 +04:00
|
|
|
}
|
|
|
|
if((1 != sscanf(message, "%d %n", &i, next)))
|
2006-06-19 15:18:09 +04:00
|
|
|
return nil;
|
|
|
|
for(c=client; i && c; c=c->next, i--);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2006-06-21 03:43:20 +04:00
|
|
|
Area *
|
|
|
|
area_of_message(View *v, char *message, unsigned int *next) {
|
|
|
|
unsigned int i;
|
|
|
|
Area *a;
|
|
|
|
|
|
|
|
if(!strncmp(message, "sel ", 4)) {
|
|
|
|
*next = 4;
|
|
|
|
return v->sel;
|
|
|
|
}
|
2006-06-25 17:16:03 +04:00
|
|
|
if(!strncmp(message, "~ ", 2))
|
2006-06-21 03:43:20 +04:00
|
|
|
return v->area;
|
|
|
|
if(1 != sscanf(message, "%d %n", &i, next) || i == 0)
|
|
|
|
return nil;
|
|
|
|
for(a=v->area; i && a; a=a->next, i--);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2006-06-19 15:18:09 +04:00
|
|
|
Frame *
|
|
|
|
clientframe_of_view(View *v, Client *c)
|
2006-06-20 02:25:49 +04:00
|
|
|
{
|
2006-06-19 15:18:09 +04:00
|
|
|
Frame *f;
|
|
|
|
for(f=c->frame; f; f=f->cnext)
|
|
|
|
if(f->area->view == v)
|
|
|
|
break;
|
|
|
|
return f;
|
2006-06-20 02:25:49 +04:00
|
|
|
}
|
2006-06-19 15:18:09 +04:00
|
|
|
|
2006-06-19 12:38:21 +04:00
|
|
|
char *
|
2006-06-19 00:58:10 +04:00
|
|
|
message_view(View *v, char *message) {
|
2006-06-21 03:43:20 +04:00
|
|
|
unsigned int n, i;
|
2006-06-19 03:04:16 +04:00
|
|
|
Client *c;
|
2006-06-21 03:43:20 +04:00
|
|
|
Frame *f;
|
|
|
|
Area *a;
|
2006-06-19 12:38:21 +04:00
|
|
|
static char Ebadvalue[] = "bad value";
|
|
|
|
|
2006-06-19 03:04:16 +04:00
|
|
|
if(!strncmp(message, "send ", 5)) {
|
2006-06-19 00:58:10 +04:00
|
|
|
message += 5;
|
2006-06-21 03:43:20 +04:00
|
|
|
if(!(c = client_of_message(v, message, &n)))
|
2006-06-19 12:38:21 +04:00
|
|
|
return Ebadvalue;
|
2006-06-19 15:18:09 +04:00
|
|
|
if(!(f = clientframe_of_view(v, c)))
|
2006-06-19 12:38:21 +04:00
|
|
|
return Ebadvalue;
|
2006-06-19 03:04:16 +04:00
|
|
|
return send_client(f, &message[n]);
|
2006-06-19 00:58:10 +04:00
|
|
|
}
|
2006-06-20 02:25:49 +04:00
|
|
|
if(!strncmp(message, "select ", 7)) {
|
2006-06-19 15:18:09 +04:00
|
|
|
message += 7;
|
2006-06-20 13:34:11 +04:00
|
|
|
return select_area(v->sel, message);
|
2006-06-19 15:18:09 +04:00
|
|
|
}
|
2006-06-21 03:43:20 +04:00
|
|
|
if(!strncmp(message, "colmode ", 8)) {
|
|
|
|
message += 8;
|
|
|
|
if(!(a = area_of_message(v, message, &n)) || a == v->area)
|
|
|
|
return Ebadvalue;
|
|
|
|
if((i = column_mode_of_str(&message[n])) == -1)
|
|
|
|
return Ebadvalue;
|
|
|
|
a->mode = i;
|
|
|
|
arrange_column(a, True);
|
|
|
|
restack_view(v);
|
|
|
|
draw_frames();
|
|
|
|
return nil;
|
|
|
|
}
|
2006-06-20 02:25:49 +04:00
|
|
|
return Ebadvalue;
|
2006-06-17 15:32:49 +04:00
|
|
|
}
|
|
|
|
|
2006-04-11 12:16:01 +04:00
|
|
|
void
|
|
|
|
update_views()
|
|
|
|
{
|
2006-06-25 17:16:03 +04:00
|
|
|
View *n, *v;
|
|
|
|
View *old = sel;
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
for(v=view; v; v=v->next)
|
|
|
|
update_frame_selectors(v);
|
2006-04-10 19:50:39 +04:00
|
|
|
|
2006-05-23 18:56:43 +04:00
|
|
|
if(old && !strncmp(old->name, "nil", 4))
|
2006-05-23 20:51:16 +04:00
|
|
|
old = nil;
|
2006-06-08 12:54:19 +04:00
|
|
|
|
2006-06-25 17:16:03 +04:00
|
|
|
for((v=view) && (n=v->next); v; (v=n) && (n=v->next))
|
|
|
|
if((v != old) && is_empty(v))
|
|
|
|
destroy_view(v);
|
2006-04-10 19:50:39 +04:00
|
|
|
|
2006-04-19 18:24:19 +04:00
|
|
|
if(old)
|
|
|
|
focus_view(old);
|
2006-06-08 12:54:19 +04:00
|
|
|
else if(sel)
|
|
|
|
focus_view(sel);
|
2006-04-10 19:50:39 +04:00
|
|
|
}
|
2006-05-31 11:51:40 +04:00
|
|
|
|
|
|
|
unsigned int
|
2006-05-31 21:48:44 +04:00
|
|
|
newcolw_of_view(View *v)
|
2006-05-31 11:51:40 +04:00
|
|
|
{
|
2006-06-08 12:54:19 +04:00
|
|
|
Rule *r;
|
|
|
|
Area *a;
|
2006-05-31 11:51:40 +04:00
|
|
|
unsigned int i, n;
|
|
|
|
regmatch_t tmpregm;
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
for(r=def.colrules.rule; r; r=r->next) {
|
2006-05-31 11:51:40 +04:00
|
|
|
if(!regexec(&r->regex, v->name, 1, &tmpregm, 0)) {
|
2006-05-31 21:13:21 +04:00
|
|
|
char buf[256];
|
|
|
|
char *toks[16];
|
|
|
|
cext_strlcpy(buf, r->value, sizeof(buf));
|
|
|
|
n = cext_tokenize(toks, 16, buf, '+');
|
2006-06-08 15:14:33 +04:00
|
|
|
for(a=v->area, i=0; a; a=a->next, i++);
|
2006-06-08 15:16:24 +04:00
|
|
|
if(n && n >= i) {
|
2006-06-08 12:54:19 +04:00
|
|
|
if(sscanf(toks[i - 1], "%u", &n) == 1)
|
2006-05-31 21:13:21 +04:00
|
|
|
return (rect.width * n) / 100;
|
2006-05-31 11:51:40 +04:00
|
|
|
}
|
2006-05-31 21:13:21 +04:00
|
|
|
break;
|
2006-05-31 11:51:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|