Initial release of Maemo 5 port of gnuplot
[gnuplot] / src / OpenStep / GnuViewController.h
diff --git a/src/OpenStep/GnuViewController.h b/src/OpenStep/GnuViewController.h
new file mode 100644 (file)
index 0000000..9168003
--- /dev/null
@@ -0,0 +1,22 @@
+#import <AppKit/AppKit.h>
+#import "Controller.h"
+#import "GnuView.h"
+
+@interface GnuViewController:NSObject
+{
+    id window;
+    id gnuView; // GnuView instance
+    id activateButton;
+    id controller; // Controller instance
+}
+
+- init;
+- window;
+- (BOOL)windowShouldClose:(id)sender;
+#warning OK - NotificationConversion: windowDidBecomeMain:(NSNotification *)notification is an NSWindow notification method (used to be a delegate method); delegates of NSWindow are automatically set to observe this notification; subclasses of NSWindow do not automatically receive this notification
+- (void)windowDidBecomeMain:(NSNotification *)notification;
+- gnuView;
+- activatePushed:sender;
+- deactivate:sender;
+
+@end