X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/93f1f93114865d18b5870f04763c921ff33b8e59..2c89adb3537752472b5c23817e9b010dd104b6a2:/MenuTunes.h diff --git a/MenuTunes.h b/MenuTunes.h index e726be6..89223ed 100755 --- a/MenuTunes.h +++ b/MenuTunes.h @@ -1,54 +1,77 @@ -/* MenuTunes */ +/* + * MenuTunes + * MenuTunes + * App Controller Class + * + * Original Author : Kent Sutherland + * Responsibility : Kent Sutherland + * + * Copyright (c) 2002-2003 iThink Software. + * All Rights Reserved + * + */ + #import #import +#import +#import +#import +#import -@class MenuTunesView, PreferencesController, StatusWindowController; +//@class MenuTunesView; +@class PreferencesController, StatusWindow; @interface MenuTunes : NSObject { - NSStatusItem *statusItem; - NSMenu *menu; - MenuTunesView *view; + IBOutlet NSMenu *ratingMenu; + + ITStatusItem *statusItem; + NSMenu *menu; + ITMTRemote *currentRemote; + NSMutableArray *remoteArray; //Used in updating the menu automatically NSTimer *refreshTimer; - int curTrackIndex; - NSString *curPlaylist; - int trackInfoIndex; + int trackInfoIndex; + int lastSongIndex; + int lastPlaylistIndex; + BOOL isPlayingRadio; - ProcessSerialNumber iTunesPSN; - bool didHaveAlbumName; //Helper variable for creating the menu + ITMTRemotePlayerRunningStatus isAppRunning; + BOOL didHaveAlbumName; + BOOL didHaveArtistName; //Helper variable for creating the menu //For upcoming songs NSMenuItem *upcomingSongsItem; - NSMenu *upcomingSongsMenu; + NSMenu *upcomingSongsMenu; //For playlist selection NSMenuItem *playlistItem; - NSMenu *playlistMenu; + NSMenu *playlistMenu; + //For EQ sets + NSMenuItem *eqItem; + NSMenu *eqMenu; + + NSMenuItem *songRatingMenuItem; //Song Rating submenu item NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause' PreferencesController *prefsController; - StatusWindowController *statusController; //Shows track info and upcoming songs. + StatusWindow *statusWindow; //Shows track info and upcoming songs. } -- (void)rebuildMenu; -- (void)updateMenu; -- (void)rebuildUpcomingSongsMenu; -- (void)rebuildPlaylistMenu; - -- (void)clearHotKeys; -- (void)setupHotKeys; +- (void)remotePlayerLaunched:(NSNotification *)note; +- (void)remotePlayerTerminated:(NSNotification *)note; -- (NSString *)runScriptAndReturnResult:(NSString *)script; -- (void)timerUpdate; +- (void)registerDefaultsIfNeeded; +- (void)rebuildMenu; -- (ProcessSerialNumber)iTunesPSN; +- (void)runTimerInNewThread; -- (void)sendAEWithEventClass:(AEEventClass)eventClass andEventID:(AEEventID)eventID; +- (IBAction)setSongRating:(id)sender; +- (void)clearHotKeys; - (void)closePreferences; @end