| 29 #import "toolkit.h" |
29 #import "toolkit.h" |
| 30 #import "../ui/window.h" |
30 #import "../ui/window.h" |
| 31 |
31 |
| 32 @interface MainWindow : NSWindow<UiToplevelObject> |
32 @interface MainWindow : NSWindow<UiToplevelObject> |
| 33 |
33 |
| |
34 @property UiObject *obj; |
| |
35 @property (strong) NSSplitView *splitview; |
| 34 @property (strong) NSView *sidebar; |
36 @property (strong) NSView *sidebar; |
| 35 @property (strong) NSView *leftPanel; |
37 @property (strong) NSView *leftPanel; |
| 36 @property (strong) NSView *rightPanel; |
38 @property (strong) NSView *rightPanel; |
| 37 @property int topOffset; |
39 @property int topOffset; |
| 38 |
40 |