X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/62ce32fc935d82a28a4440d07536eae205bfb108..88a188f0aa37a7a6402d3d71031244e88104f7a0:/MenuTunes.h diff --git a/MenuTunes.h b/MenuTunes.h index 304b34d..6402eb1 100755 --- a/MenuTunes.h +++ b/MenuTunes.h @@ -6,7 +6,7 @@ * Original Author : Kent Sutherland * Responsibility : Kent Sutherland * - * Copyright (c) 2002 iThink Software. + * Copyright (c) 2002-2003 iThink Software. * All Rights Reserved * */ @@ -17,44 +17,50 @@ #import #import #import - +#import //@class MenuTunesView; -@class PreferencesController, StatusWindowController; +@class PreferencesController, StatusWindow; @interface MenuTunes : NSObject { - ITStatusItem *statusItem; - NSMenu *menu; - ITMTRemote *currentRemote; + ITStatusItem *statusItem; + NSMenu *menu; + ITMTRemote *currentRemote; NSMutableArray *remoteArray; //Used in updating the menu automatically NSTimer *refreshTimer; - int trackInfoIndex, lastSongIndex; - BOOL isPlayingRadio; + int trackInfoIndex; + int lastSongIndex; + int lastPlaylistIndex; + BOOL isPlayingRadio; BOOL isAppRunning; - BOOL didHaveAlbumName, didHaveArtistName; //Helper variable for creating the menu + 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; + NSMenu *eqMenu; 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)iTunesLaunched:(NSNotification *)note; +- (void)iTunesTerminated:(NSNotification *)note; + - (void)registerDefaultsIfNeeded; - (void)rebuildMenu; - (void)clearHotKeys;