This is a progressive checkin. It has the following effects:
[MenuTunes.git] / MenuTunes.h
index d4807fd..6e66299 100755 (executable)
@@ -20,7 +20,7 @@
 
 
 //@class MenuTunesView;
-@class PreferencesController, StatusWindowController;
+@class PreferencesController, ITTransientStatusWindow;
 
 @interface MenuTunes : NSObject
 {
     //Used in updating the menu automatically
     NSTimer *refreshTimer;
     int trackInfoIndex, lastSongIndex;
-    bool isPlayingRadio;
+    BOOL isPlayingRadio;
     
-    bool isAppRunning;
-    bool didHaveAlbumName, didHaveArtistName; //Helper variable for creating the menu
+    BOOL isAppRunning;
+    BOOL didHaveAlbumName, didHaveArtistName; //Helper variable for creating the menu
     
     //For upcoming songs
     NSMenuItem *upcomingSongsItem;
@@ -52,8 +52,9 @@
     NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause'
     
     PreferencesController *prefsController;
-    StatusWindowController *statusController; //Shows track info and upcoming songs.
+    ITTransientStatusWindow *statusWindow; //Shows track info and upcoming songs.
 }
+
 - (void)registerDefaultsIfNeeded;
 - (void)rebuildMenu;
 - (void)clearHotKeys;