Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-objc-gnustep / AppController.h
blob7b1912a709098cefffc37aefddfb0f943e687d46
1 /* Example for use of GNU gettext.
2 This file is in the public domain.
4 Interface of the AppController class. */
6 #include <AppKit/AppKit.h>
8 @class Hello;
10 @interface AppController : NSObject
12 Hello *hello;
15 + (void)initialize;
17 - (id)init;
18 - (void)dealloc;
20 - (void)awakeFromNib;
22 - (void)applicationDidFinishLaunching
23 :(NSNotification *)notif;
25 - (BOOL)applicationShouldTerminate:(id)sender;
26 - (void)applicationWillTerminate:(NSNotification *)notification;
28 - (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
30 - (void)showPrefPanel:(id)sender;
31 - (void)showInfoPanel:(id)sender;
33 - (void)showHelloWindow:(id)sender;
35 @end