shithub: libnate

ref: 1890aeca379976e46deabb0ce844aefc8be1a2c5
dir: /n_window.c/

View raw version
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <event.h>
#include "nate_construct.h"
#include "n_window.h"

#define N_TYPE NWindow_Type
char* NWindow_Type = "NWindow";

static Rectangle
wcalcsize(Nelem* nelem, Image* screen, Rectangle r)
{
	Nelem *f;
	NWindow *w = (NWindow*)nelem;
	GUARD(w);
	f = lgetfirst(&w->children);
	if (f)
		ncallcalcsize(f, screen, screen->r);
	nelem->r = r;
	return screen->r;
}

static void
wdraw(Nelem* nelem, Image* img)
{
	Nelem *f;
	NWindow *w = (NWindow*)nelem;
	GUARD(w);
	f = lgetfirst(&w->children);
	if (f)
		ncalldraw(f, img);
}

/* could be removed completely, but leave here as an example */
static void
wfree(Nelem* nelem)
{
	nd_free(nelem);
}

static Nelemfunctions Nwindowfunctions = {
	.calcsize = wcalcsize,
	.draw = wdraw,
	.checkhit = nd_checkhit,
	.free = wfree,
};

DEF_SLOTFUNC(NWindow, wslot);

static NWindow*
makeroot(void)
{
	NWindow* w = (NWindow*)nc_get();
	GUARD(w);
	nregroot(w);
	return w;
}

NWindow*
New_Window(char *name)
{
	NWindow *e = MakeNelem(NWindow, NWindow_Type, &Nwindowfunctions, name, 1);
	
	e->Slot = wslot;
	e->MakeRoot = makeroot;
	
	nc_push(e);
	return e;
}