#ifndef __CONTROLLER_H_INCLUDED #define __CONTROLLER_H_INCLUDED #include #include @interface Controller : NSObject { id player; id infoPanel; } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification; - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication; - (BOOL)applicationShouldTerminate:(NSApplication *)sender; - (void)showPrefPanel:(id)sender; - (void)showTrackList:(id)sender; - (void)queryCddb:(id)sender; - (void)showMyHelp:(id)sender; @end #endif