#import <ITMTRemote/ITMTRemote.h>
#import "MTBlingController.h"
-@class StatusWindowController, MenuController;
+@class StatusWindowController, MenuController, NetworkController;
@interface MainController : NSObject
{
//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;
- (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