-
Notifications
You must be signed in to change notification settings - Fork 1
/
ETDocumentEditorController.h
48 lines (38 loc) · 1.22 KB
/
ETDocumentEditorController.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) 2013 Quentin Mathe
Author: Quentin Mathe <[email protected]>
Date: December 2013
License: Modified BSD (see COPYING)
*/
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import <EtoileFoundation/EtoileFoundation.h>
#ifndef GNUSTEP
#import <EtoileFoundation/GNUstep.h>
#endif
#import <CoreObject/CoreObject.h>
#import <EtoileUI/EtoileUI.h>
#import <EtoileUI/CoreObjectUI.h>
/**
* The controller to supervise a compound document and the editor that encloses it (e.g a wrapper
* including a toolbar and status bar)
*/
@interface ETDocumentEditorController : ETController
{
ETLayoutItemGroup *_documentItem;
ETLayoutItemGroup *_inspectorItem;
}
/** @taskunit Accessing UI Objects */
@property (nonatomic, retain) ETLayoutItemGroup *documentItem;
@property (nonatomic, readonly) ETLayoutItemGroup *topBarItem;
@property (nonatomic, readonly) ETLayoutItemGroup *inspectorItem;
/** @taskunit History Actions */
- (IBAction) markVersion: (id)sender;
- (IBAction) revertTo: (id)sender;
- (IBAction) browseHistory: (id)sender;
/** @taskunit Other Object Actions */
- (IBAction) search: (id)sender;
- (IBAction) share: (id)sender;
- (IBAction) import: (id)sender;
- (IBAction) export: (id)sender;
@end