X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/bad9de5ef29bebf5a0d07e8960b2a70a983bf86b..5b87e582c5b178681b7869f0dc2674ec15056dc3:/MainController.h diff --git a/MainController.h b/MainController.h index 8438c82..ae6f7fd 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 { @@ -32,16 +33,27 @@ //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; @@ -51,13 +63,25 @@ - (void)selectSongAtIndex:(int)index; - (void)selectSongRating:(int)rating; - (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; - (void)closePreferences; +- (void)showCurrentTrackInfo; + @end