blob: 92e2c76eec1213843f1cbd31b6cc9448a3b7cbe3 (
plain)
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
|
// 7 april 2015
#import "uipriv_darwin.h"
@interface uiNSButton : NSButton
@property uiControl *uiC;
@property void (*uiOnClicked)(uiControl *, void *);
@property void *uiOnClickedData;
@end
@implementation uiNSButton
- (void)viewDidMoveToSuperview
{
if (uiDarwinControlFreeWhenAppropriate(self.uiC, [self superview])) {
[self setTarget:nil];
self.uiC = NULL;
}
[super viewDidMoveToSuperview];
}
- (IBAction)uiButtonClicked:(id)sender
{
(*(self.uiOnClicked))(self.uiC, self.uiOnClickedData);
}
@end
static void defaultOnClicked(uiControl *c, void *data)
{
// do nothing
}
uiControl *uiNewButton(const char *text)
{
uiControl *c;
uiNSButton *b;
c = uiDarwinNewControl([uiNSButton class], NO, NO);
b = (uiNSButton *) uiControlHandle(c);
b.uiC = c;
[b setTitle:toNSString(text)];
[b setButtonType:NSMomentaryPushInButton];
[b setBordered:YES];
[b setBezelStyle:NSRoundedBezelStyle];
setStandardControlFont((NSControl *) b);
[b setTarget:b];
[b setAction:@selector(uiButtonClicked:)];
b.uiOnClicked = defaultOnClicked;
return b.uiC;
}
char *uiButtonText(uiControl *c)
{
uiNSButton *b;
b = (uiNSButton *) uiControlHandle(c);
return uiDarwinNSStringToText([b title]);
}
void uiButtonSetText(uiControl *c, const char *text)
{
uiNSButton *b;
b = (uiNSButton *) uiControlHandle(c);
[b setTitle:toNSString(text)];
}
void uiButtonOnClicked(uiControl *c, void (*f)(uiControl *, void *), void *data)
{
uiNSButton *b;
b = (uiNSButton *) uiControlHandle(c);
b.uiOnClicked = f;
b.uiOnClickedData = data;
}
|