X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/0f0fcccca7516fef317716f61356ebb6bb07c084..d1557bdd8bce673c8d2a314f80a10d46c84dd93b:/OldMainController.h diff --git a/OldMainController.h b/OldMainController.h index 252ae3a..dfab004 100755 --- a/OldMainController.h +++ b/OldMainController.h @@ -17,10 +17,8 @@ #import #import #import -#import - -//@class MenuTunesView; -@class PreferencesController, StatusWindow; +#import "PreferencesController.h" +#import "StatusWindow.h" @interface MainController : NSObject { @@ -32,8 +30,8 @@ //Used in updating the menu automatically NSTimer *refreshTimer; int trackInfoIndex; - int lastSongIndex; int lastPlaylistIndex; + NSString *lastSongIdentifier; BOOL isPlayingRadio; ITMTRemotePlayerRunningState isAppRunning; @@ -53,28 +51,22 @@ NSMenu *eqMenu; //For song ratings - NSMenuItem *songRatingMenuItem; + NSMenuItem *ratingItem; NSMenu *ratingMenu; - NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause' + NSMenuItem *playPauseItem; //Toggle between 'Play' and 'Pause' PreferencesController *prefsController; StatusWindow *statusWindow; //Shows track info and upcoming songs. } -- (void)remotePlayerLaunched:(NSNotification *)note; -- (void)remotePlayerTerminated:(NSNotification *)note; +- (void)applicationLaunched:(NSNotification *)note; +- (void)applicationTerminated:(NSNotification *)note; -- (void)registerDefaultsIfNeeded; +- (void)registerDefaults; - (void)rebuildMenu; -- (void)runTimerInNewThread; - -- (void)setSongRating:(id)sender; - - (void)clearHotKeys; - (void)closePreferences; -- (void)showPlayer; - @end