Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemCocoa.mm
| Show First 20 Lines • Show All 271 Lines • ▼ Show 20 Lines | extern "C" int GHOST_HACK_getFirstFile(char buf[FIRSTFILEBUFLG]) | ||||
| } | } | ||||
| } | } | ||||
| #pragma mark Cocoa objects | #pragma mark Cocoa objects | ||||
| /** | /** | ||||
| * CocoaAppDelegate | * CocoaAppDelegate | ||||
| * ObjC object to capture applicationShouldTerminate, and send quit event | * ObjC object to capture applicationShouldTerminate, and send quit event | ||||
| **/ | */ | ||||
| @interface CocoaAppDelegate : NSObject <NSApplicationDelegate> { | @interface CocoaAppDelegate : NSObject <NSApplicationDelegate> { | ||||
| GHOST_SystemCocoa *systemCocoa; | GHOST_SystemCocoa *systemCocoa; | ||||
| } | } | ||||
| - (id)init; | - (id)init; | ||||
| - (void)dealloc; | - (void)dealloc; | ||||
| - (void)setSystemCocoa:(GHOST_SystemCocoa *)sysCocoa; | - (void)setSystemCocoa:(GHOST_SystemCocoa *)sysCocoa; | ||||
| ▲ Show 20 Lines • Show All 1,491 Lines • Show Last 20 Lines | |||||