ref: c51962a648b3f38fc378ad0081b1d1aa037142d5
dir: /guispec.c/
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <thread.h>
#include <mouse.h>
#include "guifs.h"
int containerprops[] = {Porientation};
int textboxprops[] = {Ptext, Ptextcolour};
GuiSpec guispecs[Gmax] = {
[Gcontainer] = { "container", drawcontainer, layoutcontainer, 0, nelem(containerprops), containerprops},
[Gtextbox] = { "textbox", drawtextbox, layouttextbox, 1, nelem(textboxprops), textboxprops},
};