blob: 8760241bd9d55d008f09d2a4074f82c33e3c63c2 (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* EditorApplication */
#include <string>
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
class HierarchyState;
@interface EditorApplication : NSObject
{
IBOutlet id m_MainWindow;
IBOutlet id m_PaneController;
id m_RenderTimer;
IBOutlet id m_CutItem;
IBOutlet id m_CopyItem;
IBOutlet id m_PasteItem;
IBOutlet id m_DuplicateItem;
IBOutlet id m_DeleteItem;
IBOutlet id m_FrameSelectedItem;
IBOutlet id m_FindItem;
IBOutlet id m_SelectAllItem;
}
- (IBAction)SaveAssets: (id)sender;
- (IBAction)CloseScene: (id)sender;
- (IBAction)NewProject: (id)sender;
- (IBAction)OpenProject: (id)sender;
- (IBAction)SaveAsSceneToDisk: (id)sender;
- (IBAction)EnterSerialNumber: (id)sender;
- (IBAction)ReturnLicense: (id)sender;
- (IBAction)CompileScene: (id)sender;
- (IBAction)CompileSceneAutomatic: (id)sender;
- (IBAction)saveDocument: (id)sender;
- (IBAction)LoadSceneFromDisk: (id)sender;
- (void)RemoveDisplayTimer;
- (void)RegisterUpdateTimer: (int)frequency;
- (void)refreshModifiedFile: (NSAppleEventDescriptor*)event withReplyEvent: (NSAppleEventDescriptor*)replyEvent;
- (void)closeFile: (NSAppleEventDescriptor*)event withReplyEvent: (NSAppleEventDescriptor*)replyEvent;
- (IBAction)ShowAboutDialog: (id)sender;
- (IBAction)ShowPreferences: (id)sender;
- (IBAction)ShowPackageManager: (id)sender;
- (IBAction) delete: (id)sender;
- (IBAction) copy: (id)action;
- (IBAction)paste: (id)action;
- (IBAction)duplicate: (id)action;
- (IBAction)cut: (id)action;
- (IBAction)selectAll: (id)action;
- (IBAction)find: (id)action;
- (IBAction)frameSelected: (id)action;
- (IBAction)frameSelectedWithLock: (id)action;
// Assetstore protocol handler and registration
- (void)registerAssetStoreURLProtocol;
- (void)getUrl: (NSAppleEventDescriptor*)event withReplyEvent: (NSAppleEventDescriptor*)replyEvent;
@end
#endif
|