git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bah, I thought Kent modified the MenuTunes class to accommodate the
[MenuTunes.git]
/
MenuTunes.h
diff --git
a/MenuTunes.h
b/MenuTunes.h
index
5dc22c5
..
2d3c5fa
100755
(executable)
--- a/
MenuTunes.h
+++ b/
MenuTunes.h
@@
-6,7
+6,7
@@
* Original Author : Kent Sutherland <ksuther@ithinksw.com>
* Responsibility : Kent Sutherland <ksuther@ithinksw.com>
*
* Original Author : Kent Sutherland <ksuther@ithinksw.com>
* Responsibility : Kent Sutherland <ksuther@ithinksw.com>
*
- * Copyright (c) 2002 iThink Software.
+ * Copyright (c) 2002
-2003
iThink Software.
* All Rights Reserved
*
*/
* All Rights Reserved
*
*/
@@
-17,48
+17,61
@@
#import <ITKit/ITKit.h>
#import <ITFoundation/ITFoundation.h>
#import <ITMTRemote/ITMTRemote.h>
#import <ITKit/ITKit.h>
#import <ITFoundation/ITFoundation.h>
#import <ITMTRemote/ITMTRemote.h>
-
+#import <StatusWindow.h>
//@class MenuTunesView;
//@class MenuTunesView;
-@class PreferencesController, StatusWindow
Controller
;
+@class PreferencesController, StatusWindow;
@interface MenuTunes : NSObject
{
@interface MenuTunes : NSObject
{
- ITStatusItem *statusItem;
- NSMenu *menu;
- ComponentInstance asComponent;
- ITMTRemote *currentRemote;
+ IBOutlet NSMenu *ratingMenu;
+
+ ITStatusItem *statusItem;
+ NSMenu *menu;
+ ITMTRemote *currentRemote;
NSMutableArray *remoteArray;
//Used in updating the menu automatically
NSTimer *refreshTimer;
NSMutableArray *remoteArray;
//Used in updating the menu automatically
NSTimer *refreshTimer;
- int trackInfoIndex, lastSongIndex;
- bool isPlayingRadio;
+ int trackInfoIndex;
+ int lastSongIndex;
+ int lastPlaylistIndex;
+ BOOL isPlayingRadio;
- ProcessSerialNumber iTunesPSN;
- bool didHaveAlbumName, didHaveArtistName; //Helper variable for creating the menu
+ ITMTRemotePlayerRunningState isAppRunning;
+ BOOL didHaveAlbumName;
+ BOOL didHaveArtistName; //Helper variable for creating the menu
//For upcoming songs
NSMenuItem *upcomingSongsItem;
//For upcoming songs
NSMenuItem *upcomingSongsItem;
- NSMenu *upcomingSongsMenu;
+ NSMenu
*upcomingSongsMenu;
//For playlist selection
NSMenuItem *playlistItem;
//For playlist selection
NSMenuItem *playlistItem;
- NSMenu *playlistMenu;
+ NSMenu
*playlistMenu;
//For EQ sets
NSMenuItem *eqItem;
//For EQ sets
NSMenuItem *eqItem;
- NSMenu *eqMenu;
+ NSMenu
*eqMenu;
+ NSMenuItem *songRatingMenuItem; //Song Rating submenu item
NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause'
PreferencesController *prefsController;
NSMenuItem *playPauseMenuItem; //Toggle between 'Play' and 'Pause'
PreferencesController *prefsController;
- StatusWindow
Controller *statusController
; //Shows track info and upcoming songs.
+ StatusWindow
*statusWindow
; //Shows track info and upcoming songs.
}
}
+
+- (void)remotePlayerLaunched:(NSNotification *)note;
+- (void)remotePlayerTerminated:(NSNotification *)note;
+
- (void)registerDefaultsIfNeeded;
- (void)rebuildMenu;
- (void)registerDefaultsIfNeeded;
- (void)rebuildMenu;
+
+- (void)runTimerInNewThread;
+
+- (IBAction)setSongRating:(id)sender;
+
- (void)clearHotKeys;
- (void)clearHotKeys;
-- (ProcessSerialNumber)iTunesPSN;
- (void)closePreferences;
@end
- (void)closePreferences;
@end