summaryrefslogtreecommitdiff
path: root/gettext-tools/examples/hello-objc-gnustep/AppController.h
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/examples/hello-objc-gnustep/AppController.h')
-rw-r--r--gettext-tools/examples/hello-objc-gnustep/AppController.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/gettext-tools/examples/hello-objc-gnustep/AppController.h b/gettext-tools/examples/hello-objc-gnustep/AppController.h
new file mode 100644
index 0000000..7b1912a
--- /dev/null
+++ b/gettext-tools/examples/hello-objc-gnustep/AppController.h
@@ -0,0 +1,35 @@
+/* Example for use of GNU gettext.
+ This file is in the public domain.
+
+ Interface of the AppController class. */
+
+#include <AppKit/AppKit.h>
+
+@class Hello;
+
+@interface AppController : NSObject
+{
+ Hello *hello;
+}
+
++ (void)initialize;
+
+- (id)init;
+- (void)dealloc;
+
+- (void)awakeFromNib;
+
+- (void)applicationDidFinishLaunching
+ :(NSNotification *)notif;
+
+- (BOOL)applicationShouldTerminate:(id)sender;
+- (void)applicationWillTerminate:(NSNotification *)notification;
+
+- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
+
+- (void)showPrefPanel:(id)sender;
+- (void)showInfoPanel:(id)sender;
+
+- (void)showHelloWindow:(id)sender;
+
+@end