1 #ifndef __CONTROLLER_H_INCLUDED
2 #define __CONTROLLER_H_INCLUDED
3 
4 #include <Foundation/Foundation.h>
5 #include <AppKit/AppKit.h>
6 
7 
8 @interface Controller : NSObject
9 {
10 	id	player;
11 	id	infoPanel;
12 }
13 
14 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
15 - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication;
16 - (BOOL)applicationShouldTerminate:(NSApplication *)sender;
17 - (void)showPrefPanel:(id)sender;
18 - (void)showTrackList:(id)sender;
19 - (void)queryCddb:(id)sender;
20 - (void)showMyHelp:(id)sender;
21 
22 @end
23 
24 #endif
25