libui/uipriv.h

25 lines
578 B
C
Raw Normal View History

2015-04-06 20:53:31 -05:00
// 6 april 2015
2015-04-07 18:08:39 -05:00
#include <stdlib.h>
2015-04-06 20:53:31 -05:00
#include "ui.h"
typedef struct uiSize uiSize;
typedef struct uiSizing uiSizing;
struct uiSize {
intmax_t width;
intmax_t height;
};
// TODO handle destruction
2015-04-06 20:53:31 -05:00
struct uiControl {
uintptr_t (*handle)(uiControl *);
void (*setParent)(uiControl *, uintptr_t);
2015-04-06 20:53:31 -05:00
uiSize (*preferredSize)(uiControl *, uiSizing *);
void (*resize)(uiControl *, intmax_t, intmax_t, intmax_t, intmax_t, uiSizing *);
2015-04-06 20:53:31 -05:00
};
extern void *uiAlloc(size_t);
#define uiNew(T) ((T *) uiAlloc(sizeof (T)))
extern void *uiRealloc(void *, size_t);
extern void uiFree(void *);