forked from Kentzo/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFScriptAppController.h
More file actions
40 lines (31 loc) · 1.18 KB
/
FScriptAppController.h
File metadata and controls
40 lines (31 loc) · 1.18 KB
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
/* FScriptAppController.h Copyright 1998-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import <Cocoa/Cocoa.h>
@class FSInterpreterView;
@class NSPanel;
@class NSTextField;
@class NSButton;
@class NSApplication;
@interface FScriptAppController : NSObject
{
IBOutlet FSInterpreterView *interpreterView;
IBOutlet NSPanel *infoPanel;
IBOutlet NSPanel *preferencePanel;
IBOutlet NSTextField *fontSizeUI;
IBOutlet NSButton *shouldJournalUI;
IBOutlet NSButton *confirmWhenQuittingUI;
IBOutlet NSButton *displayObjectBrowserAtLaunchTimeUI;
IBOutlet NSButton *automaticallyIntrospectDeclaredPropertiesUI;
NSMenuItem *showConsoleMenuItem;
BOOL quitConfirmed;
}
- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename;
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;
- (void)newObjectBrowser:sender;
- (void)showConsole:(id)sender;
- (void)newDemoAssistant:(id)sender;
- (void)showInfoPanel:(id)sender;
- (void)showPreferencePanel:(id)sender;
- (void)updatePreference:(id)sender;
- (void)windowWillClose:(NSNotification *)aNotification;
@end