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;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct uiControl {
|
2015-04-07 23:43:35 -05:00
|
|
|
void (*destroy)(uiControl *);
|
2015-04-06 20:53:31 -05:00
|
|
|
uintptr_t (*handle)(uiControl *);
|
2015-04-06 23:23:01 -05:00
|
|
|
void (*setParent)(uiControl *, uintptr_t);
|
2015-04-06 20:53:31 -05:00
|
|
|
uiSize (*preferredSize)(uiControl *, uiSizing *);
|
2015-04-06 21:26:53 -05:00
|
|
|
void (*resize)(uiControl *, intmax_t, intmax_t, intmax_t, intmax_t, uiSizing *);
|
2015-04-06 20:53:31 -05:00
|
|
|
};
|
2015-04-07 18:04:09 -05:00
|
|
|
|
2015-04-08 19:14:10 -05:00
|
|
|
// uncomment the following line to enable memory logging; see leaks.awk
|
2015-04-07 22:40:18 -05:00
|
|
|
#define uiLogAllocations
|
|
|
|
|
|
|
|
extern void *uiAlloc(size_t, const char *);
|
|
|
|
#define uiNew(T) ((T *) uiAlloc(sizeof (T), #T ))
|
|
|
|
extern void *uiRealloc(void *, size_t, const char *);
|
2015-04-07 18:04:09 -05:00
|
|
|
extern void uiFree(void *);
|
2015-04-08 17:04:46 -05:00
|
|
|
|
|
|
|
extern void updateParent(uintptr_t);
|