Fixing crashes :D
[MenuTunes.git] / MainController.h
index 8438c82..1245103 100755 (executable)
@@ -17,6 +17,7 @@
 #import <ITKit/ITKit.h>
 #import <ITFoundation/ITFoundation.h>
 #import <ITMTRemote/ITMTRemote.h>
+#import "MTBlingController.h"
 
 @class StatusWindowController, MenuController;
 
     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;
@@ -51,6 +60,7 @@
 - (void)selectSongAtIndex:(int)index;
 - (void)selectSongRating:(int)rating;
 - (void)selectEQPresetAtIndex:(int)index;
+- (void)showPlayer;
 - (void)showPreferences;
 - (void)quitMenuTunes;
 
@@ -58,6 +68,7 @@
 
 - (ITMTRemote *)currentRemote;
 - (void)clearHotKeys;
+- (void)setupHotKeys;
 - (void)closePreferences;
 
 @end