X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/b747fc827fed9c1cb7f9076067ae5334d12ab576..HEAD:/MenuTunes.h diff --git a/MenuTunes.h b/MenuTunes.h index c7dc4fd..934f836 100755 --- a/MenuTunes.h +++ b/MenuTunes.h @@ -1,59 +1,16 @@ /* * MenuTunes - * MenuTunes - * App Controller Class + * MenuTunes.h * - * Original Author : Kent Sutherland - * Responsibility : Kent Sutherland + * MenuTunes Application Subclass. * - * Copyright (c) 2002 iThink Software. - * All Rights Reserved + * Copyright (c) 2002 iThink Software * */ - #import -#import - -//@class MenuTunesView; -@class PreferencesController, StatusWindowController; -@interface MenuTunes : NSObject +@interface MenuTunes : NSApplication { - NSStatusItem *statusItem; - NSMenu *menu; - ComponentInstance asComponent; - - //Used in updating the menu automatically - NSTimer *refreshTimer; - int curTrackIndex, curPlaylistIndex; - int trackInfoIndex; - bool isPlayingRadio; - - ProcessSerialNumber iTunesPSN; - 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; - StatusWindowController *statusController; //Shows track info and upcoming songs. } - -- (void)rebuildMenu; -- (void)clearHotKeys; -- (ProcessSerialNumber)iTunesPSN; -- (void)closePreferences; - @end