| 32 |
32 |
| 33 @property (weak) NSTableView *tableview; |
33 @property (weak) NSTableView *tableview; |
| 34 @property UiObject *obj; |
34 @property UiObject *obj; |
| 35 @property ui_callback onselection; |
35 @property ui_callback onselection; |
| 36 @property void *onselectiondata; |
36 @property void *onselectiondata; |
| |
37 @property NSString *onselection_action; |
| 37 @property ui_callback onactivate; |
38 @property ui_callback onactivate; |
| 38 @property void *onactivatedata; |
39 @property void *onactivatedata; |
| |
40 @property NSString *onactivate_action; |
| 39 |
41 |
| 40 - (id)init:(NSTableView*) tableview obj:(UiObject*)obj; |
42 - (id)init:(NSTableView*) tableview obj:(UiObject*)obj; |
| 41 |
43 |
| 42 - (void)activateEvent:(id)sender; |
44 - (void)activateEvent:(id)sender; |
| 43 |
45 |