X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/e8516aa003a65e030ec6f7c4007ed04efa351477..0b83e13fdd374e0ac55397663cedb94bf8df197f:/MainController.h diff --git a/MainController.h b/MainController.h index f6959eb..b03349d 100755 --- a/MainController.h +++ b/MainController.h @@ -17,8 +17,9 @@ #import #import #import +#import "MTBlingController.h" -@class StatusWindowController, MenuController; +@class StatusWindowController, MenuController, NetworkController; @interface MainController : NSObject { @@ -26,21 +27,33 @@ NSMutableArray *remoteArray; ITMTRemote *currentRemote; - ITMTRemoteControlState playerRunningState; + ITMTRemotePlayerRunningState playerRunningState; + ITMTRemotePlayerPlaylistClass latestPlaylistClass; //Used in updating the menu automatically NSTimer *refreshTimer; NSString *_latestSongIdentifier; - + StatusWindowController *statusWindowController; //Shows status windows MenuController *menuController; + NetworkController *networkController; NSUserDefaults *df; + + MTBlingController *bling; + NSTimer *registerTimer; + BOOL timerUpdating; + BOOL blinged; } + (MainController *)sharedController; - (void)menuClicked; //Methods called from MenuController by menu items +- (NSDate*)getBlingTime; +- (void)blingTime; +- (void)blingNow; +- (BOOL)blingBling; + - (void)playPause; - (void)nextSong; - (void)prevSong; @@ -52,10 +65,18 @@ - (void)selectEQPresetAtIndex:(int)index; - (void)showPlayer; - (void)showPreferences; +- (void)showTestWindow; - (void)quitMenuTunes; // +- (void)setServerStatus:(BOOL)newStatus; +- (int)connectToServer; +- (BOOL)disconnectFromServer; +- (void)networkError:(NSException *)exception; + +// + - (ITMTRemote *)currentRemote; - (void)clearHotKeys; - (void)setupHotKeys;