Updated to version 1.6.5
[MenuTunes.git] / MenuTunes.h
index d4807fd..c351d7f 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  *     MenuTunes
  *  MenuTunes
- *    App Controller Class
+ *    MenuTunes Application Subclass
  *
  *  Original Author : Kent Sutherland <ksuther@ithinksw.com>
  *   Responsibility : Kent Sutherland <ksuther@ithinksw.com>
 
 
 #import <Cocoa/Cocoa.h>
-#import <Carbon/Carbon.h>
-#import <ITKit/ITKit.h>
-#import <ITFoundation/ITFoundation.h>
-#import <ITMTRemote/ITMTRemote.h>
 
-
-//@class MenuTunesView;
-@class PreferencesController, StatusWindowController;
-
-@interface MenuTunes : NSObject
+@interface MenuTunes : NSApplication
 {
-    ITStatusItem *statusItem;
-    NSMenu *menu;
-    ITMTRemote *currentRemote;
-    NSMutableArray *remoteArray;
-    
-    //Used in updating the menu automatically
-    NSTimer *refreshTimer;
-    int trackInfoIndex, lastSongIndex;
-    bool isPlayingRadio;
-    
-    bool isAppRunning;
-    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)registerDefaultsIfNeeded;
-- (void)rebuildMenu;
-- (void)clearHotKeys;
-- (void)closePreferences;
-
 @end