File: Interface.h

package info (click to toggle)
biococoa.app 1.6.0-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 240 kB
  • ctags: 7
  • sloc: objc: 1,685; makefile: 42
file content (26 lines) | stat: -rwxr-xr-x 516 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26


@class Controller;

@interface Interface: NSWindow
{  
    NSButton *openButton;
    NSButton *saveButton;
    NSPopUpButton *popupButton;
    NSTextField *statusField;
}

// Set the corresponding brain
-(void) setBrain: (Controller *)aBrain;
- (void)applicationDidFinishLaunching: (NSNotification *)aNotification;

//Aaccessors
- (NSTextField *) statusField;
- (void) setStatusField: (NSTextField *) aStatusField;

- (NSPopUpButton *) popupButton;
- (void) setPopupButton: (NSPopUpButton *) aPopupButton;


@end