X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/cc10e3dc60300418d77764fd582689e11c1b9d09..3711292832129bcfcb24949c59c8f2dcae0aea63:/OldMainController.h diff --git a/OldMainController.h b/OldMainController.h deleted file mode 100755 index d96bbd1..0000000 --- a/OldMainController.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - * MenuTunes - * MainController - * 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 "PreferencesController.h" -#import "StatusWindow.h" - -@interface MainController : NSObject -{ - ITStatusItem *statusItem; - NSMenu *menu; - ITMTRemote *currentRemote; - NSMutableArray *remoteArray; - - //Used in updating the menu automatically - NSTimer *refreshTimer; - int trackInfoIndex; - - int lastPlaylistIndex; - NSString *lastSongIdentifier; - int lastSongRating; - BOOL isPlayingRadio; - - ITMTRemotePlayerRunningState isAppRunning; - - //For upcoming songs - NSMenuItem *upcomingSongsItem; - NSMenu *upcomingSongsMenu; - - //For playlist selection - NSMenuItem *playlistItem; - NSMenu *playlistMenu; - - //For EQ sets - NSMenuItem *eqItem; - NSMenu *eqMenu; - - //For song ratings - NSMenuItem *ratingItem; - NSMenu *ratingMenu; - - NSMenuItem *playPauseItem; //Toggle between 'Play' and 'Pause' - - StatusWindow *statusWindow; //Shows track info and upcoming songs. -} - -- (void)applicationLaunched:(NSNotification *)note; -- (void)applicationTerminated:(NSNotification *)note; - -- (void)rebuildMenu; - -- (ITMTRemote *)currentRemote; -- (void)clearHotKeys; -- (void)closePreferences; - -@end