X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/fcbc4baf73d5054212eb69f728ef9c303e1c62a5..87ff2a62c7bd424aa11c1b7854d33b58ee4daf9c:/MenuTunes.h diff --git a/MenuTunes.h b/MenuTunes.h index e31a663..c351d7f 100755 --- a/MenuTunes.h +++ b/MenuTunes.h @@ -1,58 +1,20 @@ -/* MenuTunes */ +/* + * MenuTunes + * MenuTunes + * MenuTunes Application Subclass + * + * Original Author : Kent Sutherland + * Responsibility : Kent Sutherland + * + * Copyright (c) 2002 iThink Software. + * All Rights Reserved + * + */ -#import -#import -@class MenuTunesView, PreferencesController, StatusWindowController; +#import -@interface MenuTunes : NSObject +@interface MenuTunes : NSApplication { - NSStatusItem *statusItem; - NSMenu *menu; - MenuTunesView *view; - - //Used in updating the menu automatically - NSTimer *refreshTimer; - int curTrackIndex; - int trackInfoIndex; - - ProcessSerialNumber iTunesPSN; - bool didHaveAlbumName; //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)updateMenu; -- (void)rebuildUpcomingSongsMenu; -- (void)rebuildPlaylistMenu; -- (void)rebuildEQPresetsMenu; - -- (void)clearHotKeys; -- (void)setupHotKeys; - -- (NSString *)runScriptAndReturnResult:(NSString *)script; -- (void)timerUpdate; - -- (ProcessSerialNumber)iTunesPSN; - -- (void)sendAEWithEventClass:(AEEventClass)eventClass andEventID:(AEEventID)eventID; - -- (void)closePreferences; - @end