#import <ITMTRemote/ITMTRemote.h>
#import "MTBlingController.h"
-#define MT_CURRENT_VERSION 1400
+#define MT_CURRENT_VERSION 1600
@class StatusWindowController, MenuController, NetworkController;
//Used in updating the menu automatically
NSTimer *refreshTimer;
NSString *_latestSongIdentifier, *_toolTip;
+ NSDictionary *_lastTrackInfo;
StatusWindowController *statusWindowController; //Shows status windows
MenuController *menuController;
NSUserDefaults *df;
MTBlingController *bling;
- NSTimer *registerTimer;
- BOOL timerUpdating, _checkingForServer, _popped;
+ NSTimer *registerTimer, *_statusWindowUpdateTimer, *_audioscrobblerTimer;
+ BOOL timerUpdating, _checkingForServer, _popped, _open, _needsPolling;
BOOL blinged;
+ int _timeUpdateCount; //Keeps track of how many times the time has been updated in the info status window
+ int _audioscrobblerInterval;
NSLock *_serverCheckLock;
}
+ (MainController *)sharedController;
- (void)closePreferences;
- (MenuController *)menuController;
+- (void)showCurrentAlbumArt;
- (void)showCurrentTrackInfo;
@end