X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/9ba1419655d7d247210a4ed2e7a220ddf82d80cb..e8516aa003a65e030ec6f7c4007ed04efa351477:/MainController.h diff --git a/MainController.h b/MainController.h index 3db1655..f6959eb 100755 --- a/MainController.h +++ b/MainController.h @@ -18,29 +18,28 @@ #import #import - -@class StatusWindowController; - +@class StatusWindowController, MenuController; @interface MainController : NSObject { ITStatusItem *statusItem; NSMutableArray *remoteArray; ITMTRemote *currentRemote; - - ITMTRemotePlayerRunningState playerRunningState; - ITMTRemotePlayerPlaylistClass latestPlaylistClass; + + ITMTRemoteControlState playerRunningState; //Used in updating the menu automatically NSTimer *refreshTimer; - NSString *_latestSongIdentifier; - - StatusWindowController *statusWindowController; //Shows track info and upcoming songs. + + StatusWindowController *statusWindowController; //Shows status windows + MenuController *menuController; NSUserDefaults *df; } + (MainController *)sharedController; +- (void)menuClicked; + //Methods called from MenuController by menu items - (void)playPause; - (void)nextSong; @@ -51,6 +50,7 @@ - (void)selectSongAtIndex:(int)index; - (void)selectSongRating:(int)rating; - (void)selectEQPresetAtIndex:(int)index; +- (void)showPlayer; - (void)showPreferences; - (void)quitMenuTunes; @@ -58,6 +58,7 @@ - (ITMTRemote *)currentRemote; - (void)clearHotKeys; +- (void)setupHotKeys; - (void)closePreferences; @end