X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/35486a7ded93b3e89a6b03ec1dbe801f3dfe0edc..87ff2a62c7bd424aa11c1b7854d33b58ee4daf9c:/MenuTunes.h diff --git a/MenuTunes.h b/MenuTunes.h index 466c4e4..c351d7f 100755 --- a/MenuTunes.h +++ b/MenuTunes.h @@ -1,66 +1,20 @@ /* * MenuTunes * MenuTunes - * App Controller Class + * MenuTunes Application Subclass * * Original Author : Kent Sutherland * Responsibility : Kent Sutherland * - * Copyright (c) 2002-2003 iThink Software. + * Copyright (c) 2002 iThink Software. * All Rights Reserved * */ #import -#import -#import -#import -#import -#import -//@class MenuTunesView; -@class PreferencesController, StatusWindow; - -@interface MenuTunes : NSObject +@interface MenuTunes : NSApplication { - ITStatusItem *statusItem; - NSMenu *menu; - ITMTRemote *currentRemote; - NSMutableArray *remoteArray; - - //Used in updating the menu automatically - NSTimer *refreshTimer; - int trackInfoIndex, lastSongIndex, lastPlaylistIndex; - BOOL isPlayingRadio; - - BOOL isAppRunning; - BOOL didHaveAlbumName, didHaveArtistName; //Helper variable for creating the menu - - //For upcoming songs - NSMenuItem *upcomingSongsItem; - NSMenu *upcomingSongsMenu; - - //For playlist selection - NSMenuItem *playlistItem; - NSMenu *playlistMenu; - - //For EQ sets - NSMenuItem *eqItem; - NSMenu *eqMenu; - - NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause' - - PreferencesController *prefsController; - StatusWindow *statusWindow; //Shows track info and upcoming songs. } - -- (void)iTunesLaunched:(NSNotification *)note; -- (void)iTunesTerminated:(NSNotification *)note; - -- (void)registerDefaultsIfNeeded; -- (void)rebuildMenu; -- (void)clearHotKeys; -- (void)closePreferences; - @end