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 #import "../ui/tree.h"
30 #import "toolkit.h"
31
32
33 @interface UiTableDataSource : NSObject<NSTableViewDataSource, NSTableViewDelegate> {
34 UiList *data;
35 UiModelInfo *info;
36 UiListSelection *lastSelection;
37 }
38
39 - (id)initWithData:(UiList*)list modelInfo:(UiModelInfo*)modelinfo;
40
41 - (
void)handleDoubleAction:(id)sender;
42
43 @end
44
45
46 char* ui_type_to_string(UiModelType type,
void *data,
BOOL *free);
47
48