1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// 6 april 2015
#import "uipriv_darwin.h"
// TODO
// - showing on size
@interface uiWindowDelegate : NSObject <NSWindowDelegate>
@property uiWindow *w;
@property int (*onClosing)(uiWindow *, void *);
@property void *onClosingData;
@end
@implementation uiWindowDelegate
uiLogObjCClassAllocations
// TODO will this *destroy* the window?
- (BOOL)windowShouldClose:(id)win
{
// return exact constants to be safe
if ((*(self.onClosing))(self.w, self.onClosingData))
return YES;
return NO;
}
@end
struct uiWindow {
NSWindow *w;
uiContainer *container;
uiControl *child;
uiWindowDelegate *d;
};
static int defaultOnClosing(uiWindow *w, void *data)
{
return 1;
}
uiWindow *uiNewWindow(char *title, int width, int height)
{
uiWindow *w;
w = uiNew(uiWindow);
w->w = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, (CGFloat) width, (CGFloat) height)
styleMask:(NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask)
backing:NSBackingStoreBuffered
defer:YES];
[w->w setTitle:toNSString(title)];
// TODO substitutions
w->container = [[uiContainer alloc] initWithFrame:NSZeroRect];
[w->w setContentView:((NSView *) w->container)];
w->d = [uiWindowDelegate new];
w->d.w = w;
w->d.onClosing = defaultOnClosing;
[w->w setDelegate:w->d];
return w;
}
void uiWindowDestroy(uiWindow *w)
{
// TODO
// TODO will w->d be destroyed?
}
uintptr_t uiWindowHandle(uiWindow *w)
{
return (uintptr_t) (w->w);
}
// TODO titles
void uiWindowShow(uiWindow *w)
{
[w->w makeKeyAndOrderFront:w->w];
}
void uiWindowHide(uiWindow *w)
{
[w->w orderOut:w->w];
}
void uiWindowOnClosing(uiWindow *w, int (*f)(uiWindow *, void *), void *data)
{
w->d.onClosing = f;
w->d.onClosingData = data;
}
void uiWindowSetChild(uiWindow *w, uiControl *c)
{
w->child = c;
w->container.child = c;
(*(w->child->setParent))(w->child, (uintptr_t) (w->container));
}
|