X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/9d8dbcc95c9e3ea959f034d5ddb2edcc71fe1f59..0b83e13fdd374e0ac55397663cedb94bf8df197f:/MainController.h diff --git a/MainController.h b/MainController.h index c6fd5f3..b03349d 100755 --- a/MainController.h +++ b/MainController.h @@ -19,7 +19,7 @@ #import #import "MTBlingController.h" -@class StatusWindowController, MenuController; +@class StatusWindowController, MenuController, NetworkController; @interface MainController : NSObject { @@ -33,19 +33,23 @@ //Used in updating the menu automatically NSTimer *refreshTimer; NSString *_latestSongIdentifier; - + StatusWindowController *statusWindowController; //Shows status windows MenuController *menuController; + NetworkController *networkController; NSUserDefaults *df; - NSDate *blingDate; 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; @@ -61,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;