:( It got the best of me... Removing NSLog I had for testing
[MenuTunes.git] / MenuController.h
index 8a5091f..55ae240 100755 (executable)
@@ -7,6 +7,7 @@
 //
 
 #import <Cocoa/Cocoa.h>
+#import "ITMTRemote.h"
 
 // Internal: To be used with NSMenuItems as their tag, for use with the NSMenuValidation stuff.
 // Also will be used in supplying the controller with the layout to use for the MenuItems, unless
@@ -32,16 +33,26 @@ typedef enum {
     MTMenuRewindItem,
     MTMenuPreviousTrackItem,
     MTMenuNextTrackItem,
+    MTMenuShowPlayerItem,
     MTMenuPreferencesItem,
-    MTMenuQuitItem
+    MTMenuQuitItem,
+    MTMenuRegisterItem
 } MTMenuItemTag;
 
 @interface MenuController : NSObject
 {
     NSMutableArray *_menuLayout;
+    NSMenu *_currentMenu;
+    NSMenu *_ratingMenu, *_upcomingSongsMenu, *_eqMenu, *_playlistsMenu; //Submenus
+    
+    ITMTRemote *currentRemote;
+    int _currentPlaylist, _currentTrack;
+    BOOL _playingRadio;
 }
 
 - (NSMenu *)menu;
+- (NSMenu *)menuForNoPlayer;
+- (void)rebuildSubmenus;
 
 // - (NSArray *)menuLayout;
 // - (void)setMenuLayout:(NSArray *)newLayoutArray;