Added a commented-out line, template for when making builds for beta testers.
[MenuTunes.git] / MenuTunes.h
index e31a663..e48b9a6 100755 (executable)
@@ -1,20 +1,35 @@
-/* MenuTunes */
+/*
+ *     MenuTunes
+ *  MenuTunes
+ *    App Controller Class
+ *
+ *  Original Author : Kent Sutherland <ksuther@ithinksw.com>
+ *   Responsibility : Kent Sutherland <ksuther@ithinksw.com>
+ *
+ *  Copyright (c) 2002 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
 
 #import <Cocoa/Cocoa.h>
 #import <Carbon/Carbon.h>
 
-@class MenuTunesView, PreferencesController, StatusWindowController;
+//@class MenuTunesView;
+@class PreferencesController, StatusWindowController;
 
 @interface MenuTunes : NSObject
 {
     NSStatusItem *statusItem;
     NSMenu *menu;
-    MenuTunesView *view;
+//  MenuTunesView *view;
+    ComponentInstance asComponent;
     
     //Used in updating the menu automatically
     NSTimer *refreshTimer;
-    int curTrackIndex;
+    int curTrackIndex, curPlaylistIndex;
     int trackInfoIndex;
+    bool isPlayingRadio;
     
     ProcessSerialNumber iTunesPSN;
     bool didHaveAlbumName; //Helper variable for creating the menu
 }
 
 - (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