2006-02-03 18:15:36 +03:00
|
|
|
/*
|
|
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "wm.h"
|
|
|
|
|
|
|
|
Area *
|
2006-02-10 19:09:59 +03:00
|
|
|
alloc_area(Page *p)
|
2006-02-03 18:15:36 +03:00
|
|
|
{
|
2006-02-03 20:11:22 +03:00
|
|
|
static unsigned short id = 1;
|
2006-02-03 18:15:36 +03:00
|
|
|
Area *a = cext_emallocz(sizeof(Area));
|
2006-02-11 17:22:42 +03:00
|
|
|
a->page = p;
|
2006-02-03 18:15:36 +03:00
|
|
|
a->id = id++;
|
2006-02-10 19:09:59 +03:00
|
|
|
p->area = (Area **)cext_array_attach((void **)p->area, a, sizeof(Area *), &p->areasz);
|
2006-02-19 12:40:09 +03:00
|
|
|
p->sel = p->narea;
|
2006-02-10 19:09:59 +03:00
|
|
|
p->narea++;
|
2006-02-03 18:15:36 +03:00
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
destroy_area(Area *a)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
while(a->nclient)
|
|
|
|
detach_client(client[i], False);
|
|
|
|
free(a->client);
|
|
|
|
free(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-02-11 17:22:42 +03:00
|
|
|
area_to_index(Area *a)
|
2006-02-03 18:15:36 +03:00
|
|
|
{
|
|
|
|
int i;
|
2006-02-11 17:22:42 +03:00
|
|
|
Page *p = a->page;
|
2006-02-03 18:15:36 +03:00
|
|
|
for(i = 0; i < p->narea; i++)
|
|
|
|
if(p->area[i] == a)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-02-10 17:59:30 +03:00
|
|
|
aid_to_index(Page *p, unsigned short id)
|
2006-02-03 18:15:36 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < p->narea; i++)
|
|
|
|
if(p->area[i]->id == id)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|