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
|
/*
Project: Ycode
Author: Gregory John Casamento,,,
Created: 2017-08-15 03:31:31 -0400 by heron
Application Controller
*/
#ifndef _PCAPPPROJ_APPCONTROLLER_H
#define _PCAPPPROJ_APPCONTROLLER_H
#import <AppKit/AppKit.h>
@class YCodeWindowController;
@interface AppController : NSObject
{
YCodeWindowController *windowController;
}
+ (void) initialize;
- (id) init;
- (void) dealloc;
- (void) awakeFromNib;
- (void) applicationDidFinishLaunching: (NSNotification *)aNotif;
- (BOOL) applicationShouldTerminate: (id)sender;
- (void) applicationWillTerminate: (NSNotification *)aNotif;
- (BOOL) application: (NSApplication *)application
openFile: (NSString *)fileName;
- (void) showPrefPanel: (id)sender;
- (IBAction) openProject: (id)sender;
@end
#endif
|