-
Notifications
You must be signed in to change notification settings - Fork 1
/
ETWorktableController.h
48 lines (34 loc) · 1.12 KB
/
ETWorktableController.h
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
/*
Copyright (C) 2011 Quentin Mathe
Author: Quentin Mathe <[email protected]>
Date: July 2011
License: Modified BSD (see COPYING)
*/
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import <EtoileFoundation/EtoileFoundation.h>
#import <CoreObject/CoreObject.h>
#import <EtoileUI/EtoileUI.h>
@interface ETWorktableController : ETDocumentController
{
COEditingContext *editingContext;
COUndoTrack *mainUndoTrack;
ETLayoutItemGroup *_aspectPicker;
ETLayoutItemGroup *_inspectorItem;
}
/** @taskunit Accessing UI Objects */
@property (nonatomic, readonly) ETLayoutItemGroup *inspectorItem;
/** @taskunit Persistency */
@property (nonatomic, readonly) COEditingContext *editingContext;
@property (nonatomic, readonly) COUndoTrack *mainUndoTrack;
/** @taskunit Presentation Actions */
- (IBAction) toggleColorPicker: (id)sender;
- (IBAction) toggleInspector: (id)sender;
- (IBAction) toggleAspectPicker: (id)sender;
/** @taskunit History Actions */
- (IBAction) undo: (id)sender;
- (IBAction) redo: (id)sender;
@end
@interface ETUIBuilderDemoController : ETController
- (IBAction)increment: (id)sender;
@end