#import <ITKit/ITKit.h>
#import <ITFoundation/ITFoundation.h>
#import <ITMTRemote/ITMTRemote.h>
+#import "MTBlingController.h"
-
-@class StatusWindowController;
-
+@class StatusWindowController, MenuController;
@interface MainController : NSObject
{
ITStatusItem *statusItem;
NSMutableArray *remoteArray;
ITMTRemote *currentRemote;
-
+
ITMTRemotePlayerRunningState playerRunningState;
ITMTRemotePlayerPlaylistClass latestPlaylistClass;
//Used in updating the menu automatically
NSTimer *refreshTimer;
-
NSString *_latestSongIdentifier;
-
- StatusWindowController *statusWindowController; //Shows track info and upcoming songs.
+
+ StatusWindowController *statusWindowController; //Shows status windows
+ MenuController *menuController;
NSUserDefaults *df;
+
+ NSDate *blingDate;
+ MTBlingController *bling;
+ BOOL timerUpdating;
}
++ (MainController *)sharedController;
+
+- (void)menuClicked;
+
+//Methods called from MenuController by menu items
+- (void)blingTime;
+- (void)blingNow;
+- (BOOL)blingBling;
+
+- (void)playPause;
+- (void)nextSong;
+- (void)prevSong;
+- (void)fastForward;
+- (void)rewind;
+- (void)selectPlaylistAtIndex:(int)index;
+- (void)selectSongAtIndex:(int)index;
+- (void)selectSongRating:(int)rating;
+- (void)selectEQPresetAtIndex:(int)index;
+- (void)showPlayer;
+- (void)showPreferences;
+- (void)quitMenuTunes;
+//
- (ITMTRemote *)currentRemote;
- (void)clearHotKeys;
+- (void)setupHotKeys;
- (void)closePreferences;
@end