w00t. If player application is not running, instead of simply saying so,
[MenuTunes.git] / MenuTunes.h
index 69791b9..e45925a 100755 (executable)
@@ -36,7 +36,7 @@
     int      lastPlaylistIndex;
     BOOL     isPlayingRadio;
     
-    ITMTRemotePlayerRunningStatus isAppRunning;
+    ITMTRemotePlayerRunningState isAppRunning;
     BOOL didHaveAlbumName;
     BOOL didHaveArtistName; //Helper variable for creating the menu
     
     NSMenuItem *eqItem;
     NSMenu     *eqMenu;
     
+    //For song ratings
+    NSMenuItem *songRatingMenuItem;
+    NSMenu *ratingMenu;
+    
     NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause'
     
     PreferencesController *prefsController;
 
 - (void)registerDefaultsIfNeeded;
 - (void)rebuildMenu;
+
+- (void)runTimerInNewThread;
+
+- (void)setSongRating:(id)sender;
+
 - (void)clearHotKeys;
 - (void)closePreferences;
 
+- (void)showPlayer;
+
 @end