2 #import "PreferencesController.h"
3 #import "HotKeyCenter.h"
4 #import "StatusWindow.h"
6 @interface MenuTunes(Private)
7 - (ITMTRemote *)loadRemote;
9 - (void)rebuildUpcomingSongsMenu;
10 - (void)rebuildPlaylistMenu;
11 - (void)rebuildEQPresetsMenu;
14 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
15 onItem:(NSMenuItem *)item;
19 @implementation MenuTunes
21 /*************************************************************************/
23 #pragma mark INITIALIZATION METHODS
24 /*************************************************************************/
28 if ( ( self = [super init] ) ) {
29 remoteArray = [[NSMutableArray alloc] initWithCapacity:1];
30 statusWindow = [StatusWindow sharedWindow];
35 - (void)applicationDidFinishLaunching:(NSNotification *)note
37 currentRemote = [self loadRemote];
38 [currentRemote begin];
40 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(remotePlayerTerminated:) name:@"ITMTRemoteAppDidTerminateNotification" object:nil];
41 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(remotePlayerLaunched:) name:@"ITMTRemoteAppDidLaunchNotification" object:nil];
43 [self registerDefaultsIfNeeded];
45 menu = [[NSMenu alloc] initWithTitle:@""];
47 if ( ( [currentRemote playerRunningStatus] == ITMTRemotePlayerRunning ) ) {
48 [self remotePlayerLaunched:nil];
50 [self remotePlayerTerminated:nil];
53 statusItem = [[ITStatusItem alloc] initWithStatusBar:[NSStatusBar systemStatusBar] withLength:NSSquareStatusItemLength];
55 [statusItem setImage:[NSImage imageNamed:@"menu"]];
56 [statusItem setAlternateImage:[NSImage imageNamed:@"selected_image"]];
57 [statusItem setMenu:menu];
58 // Below line of code is for creating builds for Beta Testers
59 // [statusItem setToolTip:@[NSString stringWithFormat:@"This Nontransferable Beta (Built on %s) of iThink Software's MenuTunes is Registered to: Beta Tester (betatester@somedomain.com).",__DATE__]];
62 - (ITMTRemote *)loadRemote
64 NSString *folderPath = [[NSBundle mainBundle] builtInPlugInsPath];
67 NSArray *bundlePathList = [NSBundle pathsForResourcesOfType:@"remote" inDirectory:folderPath];
68 NSEnumerator *enumerator = [bundlePathList objectEnumerator];
71 while ( (bundlePath = [enumerator nextObject]) ) {
72 NSBundle* remoteBundle = [NSBundle bundleWithPath:bundlePath];
75 Class remoteClass = [remoteBundle principalClass];
77 if ([remoteClass conformsToProtocol:@protocol(ITMTRemote)] &&
78 [remoteClass isKindOfClass:[NSObject class]]) {
80 id remote = [remoteClass remote];
81 [remoteArray addObject:remote];
86 // if ( [remoteArray count] > 0 ) { // UNCOMMENT WHEN WE HAVE > 1 PLUGIN
87 // if ( [remoteArray count] > 1 ) {
88 // [remoteArray sortUsingSelector:@selector(sortAlpha:)];
90 // [self loadModuleAccessUI]; //Comment out this line to disable remote visibility
93 // NSLog(@"%@", [remoteArray objectAtIndex:0]); //DEBUG
94 return [remoteArray objectAtIndex:0];
98 /*************************************************************************/
100 #pragma mark INSTANCE METHODS
101 /*************************************************************************/
103 - (void)registerDefaultsIfNeeded
105 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
106 if (![defaults objectForKey:@"menu"]) {
108 NSMutableDictionary *loginwindow;
109 NSMutableArray *loginarray;
113 [NSArray arrayWithObjects:
127 @"Current Track Info",
128 nil] forKey:@"menu"];
130 [defaults synchronize];
131 loginwindow = [[defaults persistentDomainForName:@"loginwindow"] mutableCopy];
132 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
134 for (i = 0; i < [loginarray count]; i++) {
135 NSDictionary *tempDict = [loginarray objectAtIndex:i];
136 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
143 //We must fix it so it is no longer suxy
145 if (NSRunInformationalAlertPanel(@"Auto-launch MenuTunes", @"Would you like MenuTunes to automatically launch at login?", @"Yes", @"No", nil) == NSOKButton) {
146 AEDesc scriptDesc, resultDesc;
147 NSString *script = [NSString stringWithFormat:@"tell application \"System Events\"\nmake new login item at end of login items with properties {path:\"%@\", kind:\"APPLICATION\"}\nend tell", [[NSBundle mainBundle] bundlePath]];
148 ComponentInstance asComponent = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);
150 AECreateDesc(typeChar, [script cString], [script cStringLength],
153 OSADoScript(asComponent, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
155 AEDisposeDesc(&scriptDesc);
156 AEDisposeDesc(&resultDesc);
158 CloseComponent(asComponent);
163 if (![defaults integerForKey:@"SongsInAdvance"])
165 [defaults setInteger:5 forKey:@"SongsInAdvance"];
168 if (![defaults objectForKey:@"showName"]) {
169 [defaults setBool:YES forKey:@"showName"];
172 if (![defaults objectForKey:@"showArtist"]) {
173 [defaults setBool:YES forKey:@"showArtist"];
176 if (![defaults objectForKey:@"showAlbum"]) {
177 [defaults setBool:NO forKey:@"showAlbum"];
180 if (![defaults objectForKey:@"showTime"]) {
181 [defaults setBool:NO forKey:@"showTime"];
185 //Recreate the status item menu
188 NSArray *myMenu = [[NSUserDefaults standardUserDefaults] arrayForKey:@"menu"];
193 lastPlaylistIndex = -1;
194 didHaveAlbumName = ([[currentRemote currentSongAlbum] length] > 0);
195 didHaveArtistName = ([[currentRemote currentSongArtist] length] > 0);
197 while ([menu numberOfItems] > 0) {
198 [menu removeItemAtIndex:0];
201 playPauseMenuItem = nil;
202 upcomingSongsItem = nil;
203 songRatingMenuItem = nil;
205 [playlistMenu release];
211 for (i = 0; i < [myMenu count]; i++) {
212 NSString *item = [myMenu objectAtIndex:i];
213 if ([item isEqualToString:@"Play/Pause"]) {
214 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"PlayPause"];
215 playPauseMenuItem = [menu addItemWithTitle:@"Play"
216 action:@selector(playPause:)
218 [playPauseMenuItem setTarget:self];
221 [self setKeyEquivalentForCode:[tempCombo keyCode]
222 andModifiers:[tempCombo modifiers] onItem:playPauseMenuItem];
225 } else if ([item isEqualToString:@"Next Track"]) {
226 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"NextTrack"];
227 NSMenuItem *nextTrack = [menu addItemWithTitle:@"Next Track"
228 action:@selector(nextSong:)
231 [nextTrack setTarget:self];
233 [self setKeyEquivalentForCode:[tempCombo keyCode]
234 andModifiers:[tempCombo modifiers] onItem:nextTrack];
237 } else if ([item isEqualToString:@"Previous Track"]) {
238 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"PrevTrack"];
239 NSMenuItem *prevTrack = [menu addItemWithTitle:@"Previous Track"
240 action:@selector(prevSong:)
243 [prevTrack setTarget:self];
245 [self setKeyEquivalentForCode:[tempCombo keyCode]
246 andModifiers:[tempCombo modifiers] onItem:prevTrack];
249 } else if ([item isEqualToString:@"Fast Forward"]) {
250 [[menu addItemWithTitle:@"Fast Forward"
251 action:@selector(fastForward:)
252 keyEquivalent:@""] setTarget:self];
253 } else if ([item isEqualToString:@"Rewind"]) {
254 [[menu addItemWithTitle:@"Rewind"
255 action:@selector(rewind:)
256 keyEquivalent:@""] setTarget:self];
257 } else if ([item isEqualToString:@"Upcoming Songs"]) {
258 upcomingSongsItem = [menu addItemWithTitle:@"Upcoming Songs"
261 } else if ([item isEqualToString:@"Playlists"]) {
262 playlistItem = [menu addItemWithTitle:@"Playlists"
265 } else if ([item isEqualToString:@"EQ Presets"]) {
266 eqItem = [menu addItemWithTitle:@"EQ Presets"
269 } else if ([item isEqualToString:@"PreferencesÉ"]) {
270 [[menu addItemWithTitle:@"PreferencesÉ"
271 action:@selector(showPreferences:)
272 keyEquivalent:@""] setTarget:self];
273 } else if ([item isEqualToString:@"Quit"]) {
274 [[menu addItemWithTitle:@"Quit"
275 action:@selector(quitMenuTunes:)
276 keyEquivalent:@""] setTarget:self];
277 } else if ([item isEqualToString:@"Current Track Info"]) {
278 trackInfoIndex = [menu numberOfItems];
279 [menu addItemWithTitle:@"No Song"
282 } else if ([item isEqualToString:@"Song Rating"]) {
283 songRatingMenuItem = [menu addItemWithTitle:@"Song Rating"
286 } else if ([item isEqualToString:@"<separator>"]) {
287 [menu addItem:[NSMenuItem separatorItem]];
291 [self timerUpdate]; //Updates dynamic info in the menu
297 //Updates the menu with current player state, song, and upcoming songs
300 NSMenuItem *menuItem;
301 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
303 if ( ( isAppRunning == ITMTRemotePlayerNotRunning ) ) {
307 if (upcomingSongsItem) {
308 [self rebuildUpcomingSongsMenu];
312 [self rebuildPlaylistMenu];
316 [self rebuildEQPresetsMenu];
318 if (trackInfoIndex > -1) {
319 NSString *curSongName, *curAlbumName = @"", *curArtistName = @"";
320 curSongName = [currentRemote currentSongTitle];
322 if ([defaults boolForKey:@"showAlbum"]) {
323 curAlbumName = [currentRemote currentSongAlbum];
326 if ([defaults boolForKey:@"showArtist"]) {
327 curArtistName = [currentRemote currentSongArtist];
330 if ([curSongName length] > 0) {
331 int index = [menu indexOfItemWithTitle:@"Now Playing"];
333 if ([defaults boolForKey:@"showName"]) {
334 [menu removeItemAtIndex:index + 1];
336 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
337 [menu removeItemAtIndex:index + 1];
339 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
340 [menu removeItemAtIndex:index + 1];
342 if ([defaults boolForKey:@"showTime"]) {
343 [menu removeItemAtIndex:index + 1];
347 if (!isPlayingRadio) {
348 if ([defaults boolForKey:@"showTime"]) {
349 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", [currentRemote currentSongLength]]
352 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
356 if ([curArtistName length] > 0) {
357 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curArtistName]
360 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
364 if ([curAlbumName length] > 0) {
365 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curAlbumName]
368 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
372 if (songRatingMenuItem) {
373 int rating = (int)[currentRemote currentSongRating] * 10;
376 for (i = 0; i < 5; i++) {
377 [[ratingMenu itemAtIndex:i] setState:NSOffState];
382 [[ratingMenu itemAtIndex:5] setState:NSOnState];
385 [[ratingMenu itemAtIndex:4] setState:NSOnState];
388 [[ratingMenu itemAtIndex:3] setState:NSOnState];
391 [[ratingMenu itemAtIndex:2] setState:NSOnState];
394 [[ratingMenu itemAtIndex:1] setState:NSOnState];
397 [[ratingMenu itemAtIndex:0] setState:NSOnState];
403 if ([defaults boolForKey:@"showName"]) {
404 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curSongName]
407 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
412 menuItem = [[NSMenuItem alloc] initWithTitle:@"Now Playing" action:nil keyEquivalent:@""];
413 [menu removeItemAtIndex:[menu indexOfItemWithTitle:@"No Song"]];
414 [menu insertItem:menuItem atIndex:trackInfoIndex];
417 [songRatingMenuItem setSubmenu:ratingMenu];
418 [songRatingMenuItem setEnabled:YES];
420 } else if ([menu indexOfItemWithTitle:@"No Song"] == -1) {
421 [menu removeItemAtIndex:trackInfoIndex];
423 if ([defaults boolForKey:@"showName"] == YES) {
424 [menu removeItemAtIndex:trackInfoIndex];
427 if ([defaults boolForKey:@"showTime"] == YES) {
428 [menu removeItemAtIndex:trackInfoIndex];
431 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
432 [menu removeItemAtIndex:trackInfoIndex];
435 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
436 [menu removeItemAtIndex:trackInfoIndex];
439 menuItem = [[NSMenuItem alloc] initWithTitle:@"No Song" action:nil keyEquivalent:@""];
440 [menu insertItem:menuItem atIndex:trackInfoIndex];
444 if ([defaults boolForKey:@"showArtist"]) {
445 didHaveArtistName = (([curArtistName length] > 0) ? YES : NO);
448 if ([defaults boolForKey:@"showAlbum"]) {
449 didHaveAlbumName = (([curAlbumName length] > 0) ? YES : NO);
454 //Rebuild the upcoming songs submenu. Can be improved a lot.
455 - (void)rebuildUpcomingSongsMenu
457 int curIndex = [currentRemote currentPlaylistIndex];
458 int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:curIndex];
459 int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
461 if (!isPlayingRadio) {
463 int curTrack = [currentRemote currentSongIndex];
466 [upcomingSongsMenu release];
467 upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
468 [upcomingSongsItem setSubmenu:upcomingSongsMenu];
469 [upcomingSongsItem setEnabled:YES];
471 for (i = curTrack + 1; i <= curTrack + numSongsInAdvance; i++) {
473 NSString *curSong = [currentRemote songTitleAtIndex:i];
474 NSMenuItem *songItem;
475 songItem = [[NSMenuItem alloc] initWithTitle:curSong action:@selector(playTrack:) keyEquivalent:@""];
476 [songItem setTarget:self];
477 [songItem setRepresentedObject:[NSNumber numberWithInt:i]];
478 [upcomingSongsMenu addItem:songItem];
486 [upcomingSongsItem setSubmenu:nil];
487 [upcomingSongsItem setEnabled:NO];
491 - (void)rebuildPlaylistMenu
493 NSArray *playlists = [currentRemote playlists];
494 int i, curPlaylist = [currentRemote currentPlaylistIndex];
496 if (isPlayingRadio) {
499 if (playlistMenu && ([playlists count] == [playlistMenu numberOfItems]))
502 [playlistMenu release];
503 playlistMenu = [[NSMenu alloc] initWithTitle:@""];
505 for (i = 0; i < [playlists count]; i++) {
506 NSString *playlistName = [playlists objectAtIndex:i];
507 NSMenuItem *tempItem;
508 tempItem = [[NSMenuItem alloc] initWithTitle:playlistName action:@selector(selectPlaylist:) keyEquivalent:@""];
509 [tempItem setTarget:self];
510 [tempItem setRepresentedObject:[NSNumber numberWithInt:i + 1]];
511 [playlistMenu addItem:tempItem];
514 [playlistItem setSubmenu:playlistMenu];
515 [playlistItem setEnabled:YES];
518 [[playlistMenu itemAtIndex:curPlaylist - 1] setState:NSOnState];
522 //Build a menu with the list of all available EQ presets
523 - (void)rebuildEQPresetsMenu
525 NSArray *eqPresets = [currentRemote eqPresets];
526 NSMenuItem *enabledItem;
529 if (eqMenu && ([[currentRemote eqPresets] count] == [eqMenu numberOfItems]))
533 eqMenu = [[NSMenu alloc] initWithTitle:@""];
535 enabledItem = [eqMenu addItemWithTitle:@"Disabled"
536 action:@selector(toggleEqualizer)
539 if ([currentRemote equalizerEnabled] == NO) {
540 [enabledItem setState:NSOnState];
543 [eqMenu addItem:[NSMenuItem separatorItem]];
545 for (i = 0; i < [eqPresets count]; i++) {
546 NSString *setName = [eqPresets objectAtIndex:i];
547 NSMenuItem *tempItem;
549 tempItem = [[NSMenuItem alloc] initWithTitle:setName action:@selector(selectEQPreset:) keyEquivalent:@""];
550 [tempItem setTarget:self];
551 [tempItem setRepresentedObject:[NSNumber numberWithInt:i]];
552 [eqMenu addItem:tempItem];
556 [eqItem setSubmenu:eqMenu];
558 [[eqMenu itemAtIndex:[currentRemote currentEQPresetIndex] + 1] setState:NSOnState];
563 [[HotKeyCenter sharedCenter] removeHotKey:@"PlayPause"];
564 [[HotKeyCenter sharedCenter] removeHotKey:@"NextTrack"];
565 [[HotKeyCenter sharedCenter] removeHotKey:@"PrevTrack"];
566 [[HotKeyCenter sharedCenter] removeHotKey:@"TrackInfo"];
567 [[HotKeyCenter sharedCenter] removeHotKey:@"UpcomingSongs"];
572 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
574 if ([defaults objectForKey:@"PlayPause"] != nil) {
575 [[HotKeyCenter sharedCenter] addHotKey:@"PlayPause"
576 combo:[defaults keyComboForKey:@"PlayPause"]
577 target:self action:@selector(playPause:)];
580 if ([defaults objectForKey:@"NextTrack"] != nil) {
581 [[HotKeyCenter sharedCenter] addHotKey:@"NextTrack"
582 combo:[defaults keyComboForKey:@"NextTrack"]
583 target:self action:@selector(nextSong:)];
586 if ([defaults objectForKey:@"PrevTrack"] != nil) {
587 [[HotKeyCenter sharedCenter] addHotKey:@"PrevTrack"
588 combo:[defaults keyComboForKey:@"PrevTrack"]
589 target:self action:@selector(prevSong:)];
592 if ([defaults objectForKey:@"TrackInfo"] != nil) {
593 [[HotKeyCenter sharedCenter] addHotKey:@"TrackInfo"
594 combo:[defaults keyComboForKey:@"TrackInfo"]
595 target:self action:@selector(showCurrentTrackInfo)];
598 if ([defaults objectForKey:@"UpcomingSongs"] != nil) {
599 [[HotKeyCenter sharedCenter] addHotKey:@"UpcomingSongs"
600 combo:[defaults keyComboForKey:@"UpcomingSongs"]
601 target:self action:@selector(showUpcomingSongs)];
605 //Called when the timer fires.
608 int playlist = [currentRemote currentPlaylistIndex];
609 ITMTRemotePlayerState playerState = [currentRemote playerState];
611 if ((playlist > 0) || playerState != ITMTRemotePlayerStopped) {
612 int trackPlayingIndex = [currentRemote currentSongIndex];
614 if (trackPlayingIndex != lastSongIndex) {
615 BOOL wasPlayingRadio = isPlayingRadio;
616 isPlayingRadio = [[currentRemote classOfPlaylistAtIndex:playlist] isEqualToString:@"radio tuner playlist"];
618 if (isPlayingRadio && !wasPlayingRadio) {
620 for (i = 0; i < [playlistMenu numberOfItems]; i++)
622 [[playlistMenu itemAtIndex:i] setState:NSOffState];
625 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
628 if (wasPlayingRadio) {
629 NSMenuItem *temp = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
630 [menu insertItem:temp atIndex:trackInfoIndex + 1];
635 lastSongIndex = trackPlayingIndex;
637 if (playlist != lastPlaylistIndex) {
638 BOOL wasPlayingRadio = isPlayingRadio;
639 isPlayingRadio = [[currentRemote classOfPlaylistAtIndex:playlist] isEqualToString:@"radio tuner playlist"];
641 if (isPlayingRadio && !wasPlayingRadio) {
643 for (i = 0; i < [playlistMenu numberOfItems]; i++) {
644 [[playlistMenu itemAtIndex:i] setState:NSOffState];
648 if (wasPlayingRadio) {
649 NSMenuItem *temp = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
650 [menu insertItem:temp atIndex:trackInfoIndex + 1];
654 if (!isPlayingRadio) {
656 for (i = 0; i < [playlistMenu numberOfItems]; i++)
658 [[playlistMenu itemAtIndex:i] setState:NSOffState];
660 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
664 lastSongIndex = trackPlayingIndex;
665 lastPlaylistIndex = playlist;
668 //Update Play/Pause menu item
669 if (playPauseMenuItem){
670 if (playerState == ITMTRemotePlayerPlaying) {
671 [playPauseMenuItem setTitle:@"Pause"];
673 [playPauseMenuItem setTitle:@"Play"];
676 } else if ((lastPlaylistIndex > 0) && (playlist == 0)) {
677 NSMenuItem *menuItem;
678 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
679 //Remote the now playing item and add no song item
680 [menu removeItemAtIndex:trackInfoIndex];
682 if ([defaults boolForKey:@"showName"] == YES) {
683 [menu removeItemAtIndex:trackInfoIndex];
686 if ([defaults boolForKey:@"showTime"] == YES) {
687 [menu removeItemAtIndex:trackInfoIndex];
690 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
691 [menu removeItemAtIndex:trackInfoIndex];
694 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
695 [menu removeItemAtIndex:trackInfoIndex];
698 [playPauseMenuItem setTitle:@"Play"];
700 didHaveArtistName = NO;
701 didHaveAlbumName = NO;
702 lastPlaylistIndex = -1;
705 [upcomingSongsItem setSubmenu:nil];
706 [upcomingSongsItem setEnabled:NO];
708 [songRatingMenuItem setSubmenu:nil];
709 [songRatingMenuItem setEnabled:NO];
711 menuItem = [[NSMenuItem alloc] initWithTitle:@"No Song" action:nil keyEquivalent:@""];
712 [menu insertItem:menuItem atIndex:trackInfoIndex];
717 - (void)remotePlayerLaunched:(NSNotification *)note
719 isAppRunning = ITMTRemotePlayerRunning;
722 [NSThread detachNewThreadSelector:@selector(runTimerInNewThread) toTarget:self withObject:nil];
724 [self rebuildMenu]; //Rebuild the menu since no songs will be playing
726 [self rebuildPlaylistMenu];
729 [self rebuildEQPresetsMenu];
731 [statusItem setMenu:menu]; //Set the menu back to the main one
734 - (void)runTimerInNewThread
736 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
737 NSRunLoop *runLoop = [NSRunLoop currentRunLoop];
738 refreshTimer = [[NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(timerUpdate) userInfo:nil repeats:YES] retain];
743 - (void)remotePlayerTerminated:(NSNotification *)note
745 isAppRunning = ITMTRemotePlayerNotRunning;
748 menu = [[NSMenu alloc] initWithTitle:@""];
749 [menu addItemWithTitle:@"Audio Player" action:NULL keyEquivalent:@""];
750 [menu addItemWithTitle:@"Not Running" action:NULL keyEquivalent:@""];
751 [menu addItem:[NSMenuItem separatorItem]];
752 [[menu addItemWithTitle:@"Preferences" action:@selector(showPreferences:) keyEquivalent:@""] setTarget:self];
753 [[menu addItemWithTitle:@"Quit" action:@selector(quitMenuTunes:) keyEquivalent:@""] setTarget:self];
754 [statusItem setMenu:menu];
756 [refreshTimer invalidate];
757 [refreshTimer release];
764 // Selectors - called from status item menu
768 // Plugin dependent selectors
770 - (void)playTrack:(id)sender
772 [currentRemote switchToSongAtIndex:[[sender representedObject] intValue]];
776 - (void)selectPlaylist:(id)sender
778 int playlist = [[sender representedObject] intValue];
779 if (!isPlayingRadio) {
780 int curPlaylist = [currentRemote currentPlaylistIndex];
781 if (curPlaylist > 0) {
782 [[playlistMenu itemAtIndex:curPlaylist - 1] setState:NSOffState];
785 [currentRemote switchToPlaylistAtIndex:playlist];
786 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
790 - (void)selectEQPreset:(id)sender
792 int curSet = [currentRemote currentEQPresetIndex];
793 int item = [[sender representedObject] intValue];
794 [currentRemote switchToEQAtIndex:item];
795 [[eqMenu itemAtIndex:curSet - 1] setState:NSOffState];
796 [[eqMenu itemAtIndex:item - 1] setState:NSOnState];
799 - (void)playPause:(id)sender
801 ITMTRemotePlayerState state = [currentRemote playerState];
803 if (state == ITMTRemotePlayerPlaying) {
804 [currentRemote pause];
805 [playPauseMenuItem setTitle:@"Play"];
806 } else if ((state == ITMTRemotePlayerForwarding) || (state == ITMTRemotePlayerRewinding)) {
807 [currentRemote pause];
808 [currentRemote play];
810 [currentRemote play];
811 [playPauseMenuItem setTitle:@"Pause"];
815 - (void)nextSong:(id)sender
817 [currentRemote goToNextSong];
820 - (void)prevSong:(id)sender
822 [currentRemote goToPreviousSong];
825 - (void)fastForward:(id)sender
827 [currentRemote forward];
828 [playPauseMenuItem setTitle:@"Play"];
831 - (void)rewind:(id)sender
833 [currentRemote rewind];
834 [playPauseMenuItem setTitle:@"Play"];
837 - (void)toggleEqualizer
839 [currentRemote setEqualizerEnabled:![currentRemote equalizerEnabled]];
842 - (IBAction)setSongRating:(id)sender
844 NSLog(@"%f", [currentRemote currentSongRating]);
845 NSLog(@"%f", (float)[sender tag] / 100.0);
846 [currentRemote setCurrentSongRating:(float)[sender tag] / 100.0];
851 // Plugin independent selectors
854 - (void)quitMenuTunes:(id)sender
856 [NSApp terminate:self];
859 - (void)showPreferences:(id)sender
861 if (!prefsController) {
862 prefsController = [[PreferencesController alloc] initWithMenuTunes:self];
867 - (void)closePreferences
869 if ( ( isAppRunning == ITMTRemotePlayerRunning) ) {
872 [prefsController release];
873 prefsController = nil;
878 // Show Current Track Info And Show Upcoming Songs Floaters
882 - (void)showCurrentTrackInfo
884 NSString *trackName = [currentRemote currentSongTitle];
885 if (!statusWindow && [trackName length]) {
886 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
887 NSString *stringToShow = @"";
889 if ([defaults boolForKey:@"showName"]) {
890 if ([defaults boolForKey:@"showArtist"]) {
891 NSString *trackArtist = [currentRemote currentSongArtist];
892 trackName = [NSString stringWithFormat:@"%@ - %@", trackArtist, trackName];
894 stringToShow = [stringToShow stringByAppendingString:trackName];
895 stringToShow = [stringToShow stringByAppendingString:@"\n"];
898 if ([defaults boolForKey:@"showAlbum"]) {
899 NSString *trackAlbum = [currentRemote currentSongAlbum];
900 if ([trackAlbum length]) {
901 stringToShow = [stringToShow stringByAppendingString:trackAlbum];
902 stringToShow = [stringToShow stringByAppendingString:@"\n"];
906 if ([defaults boolForKey:@"showTime"]) {
907 NSString *trackTime = [currentRemote currentSongLength];
908 if ([trackTime length]) {
909 stringToShow = [NSString stringWithFormat:@"%@Total Time: %@\n", stringToShow, trackTime];
914 int trackTimeLeft = [[currentRemote currentSongRemaining] intValue];
915 int minutes = trackTimeLeft / 60, seconds = trackTimeLeft % 60;
917 stringToShow = [stringToShow stringByAppendingString:
918 [NSString stringWithFormat:@"Time Remaining: %i:0%i", minutes, seconds]];
920 stringToShow = [stringToShow stringByAppendingString:
921 [NSString stringWithFormat:@"Time Remaining: %i:%i", minutes, seconds]];
925 [statusWindow setText:stringToShow];
926 [NSTimer scheduledTimerWithTimeInterval:3.0
928 selector:@selector(fadeAndCloseStatusWindow)
934 - (void)showUpcomingSongs
936 int curPlaylist = [currentRemote currentPlaylistIndex];
938 int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:curPlaylist];
941 int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
942 int curTrack = [currentRemote currentSongIndex];
944 NSString *songs = @"";
946 statusWindow = [ITTransientStatusWindow sharedWindow];
947 for (i = curTrack + 1; i <= curTrack + numSongsInAdvance; i++) {
949 NSString *curSong = [currentRemote songTitleAtIndex:i];
950 songs = [songs stringByAppendingString:curSong];
951 songs = [songs stringByAppendingString:@"\n"];
954 [statusWindow setText:songs];
955 [NSTimer scheduledTimerWithTimeInterval:3.0
957 selector:@selector(fadeAndCloseStatusWindow)
964 - (void)fadeAndCloseStatusWindow
966 [statusWindow orderOut:self];
969 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
970 onItem:(NSMenuItem *)item
972 unichar charcode = 'a';
974 long cocoaModifiers = 0;
975 static long carbonToCocoa[6][2] =
977 { cmdKey, NSCommandKeyMask },
978 { optionKey, NSAlternateKeyMask },
979 { controlKey, NSControlKeyMask },
980 { shiftKey, NSShiftKeyMask },
983 for (i = 0; i < 6; i++) {
984 if (modifiers & carbonToCocoa[i][0]) {
985 cocoaModifiers += carbonToCocoa[i][1];
988 [item setKeyEquivalentModifierMask:cocoaModifiers];
990 //Missing key combos for some keys. Must find them later.
1004 /*MenuRef menuRef = _NSGetCarbonMenu([item menu]);
1005 NSLog(@"%@", menuRef);
1006 SetMenuItemCommandKey(menuRef, 0, NO, 49);
1007 SetMenuItemModifiers(menuRef, 0, kMenuNoCommandModifier);
1008 SetMenuItemKeyGlyph(menuRef, 0, kMenuBlankGlyph);
1014 charcode = NSDeleteFunctionKey;
1030 charcode = NSF5FunctionKey;
1034 charcode = NSF6FunctionKey;
1038 charcode = NSF7FunctionKey;
1042 charcode = NSF3FunctionKey;
1046 charcode = NSF8FunctionKey;
1050 charcode = NSF9FunctionKey;
1054 charcode = NSF11FunctionKey;
1058 charcode = NSF3FunctionKey;
1062 charcode = NSF14FunctionKey;
1066 charcode = NSF10FunctionKey;
1070 charcode = NSF12FunctionKey;
1074 charcode = NSF13FunctionKey;
1078 charcode = NSInsertFunctionKey;
1082 charcode = NSHomeFunctionKey;
1086 charcode = NSPageUpFunctionKey;
1090 charcode = NSDeleteFunctionKey;
1094 charcode = NSF4FunctionKey;
1098 charcode = NSEndFunctionKey;
1102 charcode = NSF2FunctionKey;
1106 charcode = NSPageDownFunctionKey;
1110 charcode = NSF1FunctionKey;
1114 charcode = NSLeftArrowFunctionKey;
1118 charcode = NSRightArrowFunctionKey;
1122 charcode = NSDownArrowFunctionKey;
1126 charcode = NSUpArrowFunctionKey;
1130 if (charcode == 'a') {
1131 unsigned long state;
1136 kchr = (Ptr) GetScriptVariable(smCurrentScript, smKCHRCache);
1137 keyTrans = KeyTranslate(kchr, code, &state);
1138 charCode = keyTrans;
1139 [item setKeyEquivalent:[NSString stringWithCString:&charCode length:1]];
1140 } else if (charcode != 'b') {
1141 [item setKeyEquivalent:[NSString stringWithCharacters:&charcode length:1]];
1145 /*************************************************************************/
1147 #pragma mark NSApplication DELEGATE METHODS
1148 /*************************************************************************/
1150 - (void)applicationWillTerminate:(NSNotification *)note
1152 [self clearHotKeys];
1153 [[NSStatusBar systemStatusBar] removeStatusItem:statusItem];
1157 /*************************************************************************/
1159 #pragma mark DEALLOCATION METHODS
1160 /*************************************************************************/
1165 [refreshTimer invalidate];
1166 [refreshTimer release];
1169 [currentRemote halt];
1170 [statusItem release];