// 6 january 2015 #define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_7 #define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_7 #import #import "uipriv.h" #import "ui_darwin.h" #define toNSString(str) [NSString stringWithUTF8String:(str)] // TODO move this to the right place struct uiSizing { }; // alloc_darwin.m extern void *uiAlloc(size_t); // TODO use this in existing files #define uiNew(T) ((T *) uiAlloc(sizeof (T))) extern void *uiRealloc(void *, size_t); extern void uiFree(void *); // util_darwin.m extern void setStandardControlFont(NSControl *); // container_darwin.m @interface uiContainer : NSView @property uiControl *child; @end