#import #include "config.h" class PlatformInterface; #ifdef SNOW_LEOPARD @interface AppDelegate :NSObject { #else @interface AppDelegate :NSObject { #endif PlatformInterface* application_handler_; NSMenu* dock_menu_; } - (id) initWithHandler: (PlatformInterface*)handler; // NSApplicationDelegate - (BOOL) applicationShouldHandleReopen: (NSApplication*)app hasVisibleWindows:(BOOL)flag; - (NSMenu*) applicationDockMenu: (NSApplication*)sender; - (void) setDockMenu: (NSMenu*)menu; @end