libui/uipriv.h

41 lines
979 B
C

// 6 april 2015
#include <stdlib.h>
#include "ui.h"
typedef struct uiSize uiSize;
typedef struct uiSizing uiSizing;
typedef struct uiSizingComm uiSizingComm;
struct uiSize {
intmax_t width;
intmax_t height;
};
// TODO this is a bit iffy; clean it up
#define uiSizingCommon \
intmax_t xPadding; \
intmax_t yPadding;
struct uiSizingComm {
uiSizingCommon
};
struct uiControl {
void (*destroy)(uiControl *);
uintptr_t (*handle)(uiControl *);
void (*setParent)(uiControl *, uintptr_t);
void (*removeParent)(uiControl *);
uiSize (*preferredSize)(uiControl *, uiSizing *);
void (*resize)(uiControl *, intmax_t, intmax_t, intmax_t, intmax_t, uiSizing *);
};
// uncomment the following line to enable memory logging; see leaks.awk
#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 *);
extern void uiFree(void *);
extern void updateParent(uintptr_t);