summaryrefslogtreecommitdiff
path: root/new/button_darwin.m
blob: d422718d54e506564dc2088d175cc4d0c3b25359 (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
// 7 april 2015
#import "uipriv_darwin.h"

@interface uiNSButton : NSButton <uiFreeOnDealloc>
@property uiControl *uiC;
@property void (*uiOnClicked)(uiControl *, void *);
@property void *uiOnClickedData;
@property NSMutableArray *uiFreeList;
@end

@implementation uiNSButton

uiLogObjCClassAllocations(uiDoFreeOnDealloc(self.uiFreeList);)
uiFreeOnDeallocImpl

- (IBAction)uiButtonClicked:(id)sender
{
	(*(self.onClicked))(self.c, self.onClickedData);
}

@end

static void defaultOnClicked(uiControl *c, void *data)
{
	// do nothing
}

// TODO destruction
uiControl *uiNewButton(const char *text)
{
	uiControl *c;
	uiNSButton *b;

	c = uiDarwinNewControl([uiNSButton class], NO, NO, NULL);
	b = (uiNSButton *) uiControlHandle(c);
	b.c = c;

	[b setTitle:toNSString(text)];
	[b setButtonType:NSMomentaryPushInButton];
	[b setBordered:YES];
	[b setBezelStyle:NSRoundedBezelStyle];
	setStandardControlFont((NSControl *) bb);

	[b setTarget:b];
	[b setAction:@selector(uiButtonClicked:)];

	b.onClicked = defaultOnClicked;

	return b.c;
}

// TODO text

void uiButtonOnClicked(uiControl *c, void (*f)(uiControl *, void *), void *data)
{
	button *b;

	b = (uiNSButton *) uiControlHandle(c);
	b.onClicked = f;
	b.onClickedData = data;
}