Initial release of Maemo 5 port of gnuplot
[gnuplot] / src / OpenStep / GnuViewController.h
1 #import <AppKit/AppKit.h>
2 #import "Controller.h"
3 #import "GnuView.h"
4
5 @interface GnuViewController:NSObject
6 {
7     id window;
8     id gnuView; // GnuView instance
9     id activateButton;
10     id controller; // Controller instance
11 }
12
13 - init;
14 - window;
15 - (BOOL)windowShouldClose:(id)sender;
16 #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
17 - (void)windowDidBecomeMain:(NSNotification *)notification;
18 - gnuView;
19 - activatePushed:sender;
20 - deactivate:sender;
21
22 @end