Updated to version 1.6.5
[MenuTunes.git] / MenuTunes.h
index a45d814..c351d7f 100755 (executable)
@@ -1,58 +1,20 @@
 /*
  *     MenuTunes
  *  MenuTunes
- *    App Controller Class
+ *    MenuTunes Application Subclass
  *
  *  Original Author : Kent Sutherland <ksuther@ithinksw.com>
  *   Responsibility : Kent Sutherland <ksuther@ithinksw.com>
  *
- *  Copyright (c) 2002 The iThink Group.
+ *  Copyright (c) 2002 iThink Software.
  *  All Rights Reserved
  *
  */
 
 
 #import <Cocoa/Cocoa.h>
-#import <Carbon/Carbon.h>
 
-@class MenuTunesView, PreferencesController, StatusWindowController;
-
-@interface MenuTunes : NSObject
+@interface MenuTunes : NSApplication
 {
-    NSStatusItem *statusItem;
-    NSMenu *menu;
-    MenuTunesView *view;
-    ComponentInstance asComponent;
-    
-    //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)clearHotKeys;
-- (ProcessSerialNumber)iTunesPSN;
-- (void)closePreferences;
-
 @end