X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/9fe0abc58552c65940750163388179a2966eb59e..0b83e13fdd374e0ac55397663cedb94bf8df197f:/MainController.h diff --git a/MainController.h b/MainController.h index 6383a8d..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 { @@ -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; @@ -53,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;