#import <ITMTRemote/ITMTRemote.h>
#import "MTBlingController.h"
+#define MT_CURRENT_VERSION 1300
+
@class StatusWindowController, MenuController, NetworkController;
@interface MainController : NSObject
MTBlingController *bling;
NSTimer *registerTimer;
- BOOL timerUpdating;
+ BOOL timerUpdating, _checkingForServer;
BOOL blinged;
+ NSLock *_serverCheckLock;
}
+ (MainController *)sharedController;
- (void)blingNow;
- (BOOL)blingBling;
+- (void)timerUpdate;
+
- (void)playPause;
- (void)nextSong;
- (void)prevSong;
- (void)selectEQPresetAtIndex:(int)index;
- (void)showPlayer;
- (void)showPreferences;
+- (void)showTestWindow;
- (void)quitMenuTunes;
//
- (void)setServerStatus:(BOOL)newStatus;
- (int)connectToServer;
- (BOOL)disconnectFromServer;
+- (void)checkForRemoteServerAndConnectImmediately:(BOOL)connectImmediately;
- (void)networkError:(NSException *)exception;
//
- (void)clearHotKeys;
- (void)setupHotKeys;
- (void)closePreferences;
+- (MenuController *)menuController;
+
+- (void)showCurrentTrackInfo;
@end
+
+@interface NSImage (SmoothAdditions)
+- (NSImage *)imageScaledSmoothlyToSize:(NSSize)scaledSize;
+@end
\ No newline at end of file