5 // Created by Joseph Spiros on Wed Apr 30 2003.
6 // Copyright (c) 2003 iThink Software. All rights reserved.
9 #import "MenuController.h"
10 #import "MainController.h"
11 #import <ITFoundation/ITDebug.h>
12 #import <ITKit/ITHotKeyCenter.h>
13 #import <ITKit/ITHotKey.h>
14 #import <ITKit/ITKeyCombo.h>
15 #import <ITKit/ITCategory-NSMenu.h>
17 @interface MenuController (SubmenuMethods)
18 - (NSMenu *)ratingMenu;
19 - (NSMenu *)upcomingSongsMenu;
20 - (NSMenu *)playlistsMenu;
22 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
23 onItem:(NSMenuItem *)item;
26 @implementation MenuController
30 if ( (self = [super init]) ) {
31 _menuLayout = [[NSMutableArray alloc] initWithCapacity:0];
38 NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
39 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
40 NSArray *menuArray = [defaults arrayForKey:@"menu"];
41 NSEnumerator *enumerator = [menuArray objectEnumerator];
44 NSEnumerator *itemEnum;
46 NSArray *hotKeys = [[ITHotKeyCenter sharedCenter] allHotKeys];
49 _currentPlaylist = [currentRemote currentPlaylistIndex];
50 _playingRadio = ([currentRemote currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
52 ITDebugLog(@"Reset menu if required.");
54 //Kill the old submenu items
55 if ( (tempItem = [_currentMenu itemWithTag:1]) ) {
56 ITDebugLog(@"Removing \"Song Rating\" submenu.");
57 [tempItem setSubmenu:nil];
60 if ( (tempItem = [_currentMenu itemWithTag:2]) ) {
61 ITDebugLog(@"Removing \"Upcoming Songs\" submenu.");
62 [tempItem setSubmenu:nil];
65 if ( (tempItem = [_currentMenu itemWithTag:3]) ) {
66 ITDebugLog(@"Removing \"Playlists\" submenu.");
67 [tempItem setSubmenu:nil];
70 if ( (tempItem = [_currentMenu itemWithTag:4]) ) {
71 ITDebugLog(@"Removing \"EQ Presets\" submenu.");
72 [tempItem setSubmenu:nil];
75 ITDebugLog(@"Begin building menu.");
78 while ( (nextObject = [enumerator nextObject]) ) {
80 if ([nextObject isEqualToString:@"playPause"]) {
81 ITDebugLog(@"Add \"Play\"/\"Pause\" menu item.");
82 tempItem = [menu addItemWithTitle:NSLocalizedString(@"play", @"Play")
83 action:@selector(performMainMenuAction:)
85 [tempItem setTag:MTMenuPlayPauseItem];
86 [tempItem setTarget:self];
88 itemEnum = [hotKeys objectEnumerator];
89 while ( (hotKey = [itemEnum nextObject]) ) {
90 if ([[hotKey name] isEqualToString:@"PlayPause"]) {
91 ITKeyCombo *combo = [hotKey keyCombo];
92 [self setKeyEquivalentForCode:[combo keyCode]
93 andModifiers:[combo modifiers]
98 ITDebugLog(@"Set \"Play\"/\"Pause\" menu item's title to correct state.");
99 switch ([currentRemote playerPlayingState]) {
100 case ITMTRemotePlayerPlaying:
101 [tempItem setTitle:NSLocalizedString(@"pause", @"Pause")];
103 case ITMTRemotePlayerRewinding:
104 case ITMTRemotePlayerForwarding:
105 [tempItem setTitle:NSLocalizedString(@"resume", @"Resume")];
110 } else if ([nextObject isEqualToString:@"nextTrack"]) {
111 ITDebugLog(@"Add \"Next Track\" menu item.");
112 tempItem = [menu addItemWithTitle:NSLocalizedString(@"nextTrack", @"Next Track")
113 action:@selector(performMainMenuAction:)
116 itemEnum = [hotKeys objectEnumerator];
117 while ( (hotKey = [itemEnum nextObject]) ) {
118 if ([[hotKey name] isEqualToString:@"NextTrack"]) {
119 ITKeyCombo *combo = [hotKey keyCombo];
120 [self setKeyEquivalentForCode:[combo keyCode]
121 andModifiers:[combo modifiers]
126 if (_currentPlaylist) {
127 [tempItem setTag:MTMenuNextTrackItem];
128 [tempItem setTarget:self];
130 } else if ([nextObject isEqualToString:@"prevTrack"]) {
131 ITDebugLog(@"Add \"Previous Track\" menu item.");
132 tempItem = [menu addItemWithTitle:NSLocalizedString(@"prevTrack", @"Previous Track")
133 action:@selector(performMainMenuAction:)
136 itemEnum = [hotKeys objectEnumerator];
137 while ( (hotKey = [itemEnum nextObject]) ) {
138 if ([[hotKey name] isEqualToString:@"PrevTrack"]) {
139 ITKeyCombo *combo = [hotKey keyCombo];
140 [self setKeyEquivalentForCode:[combo keyCode]
141 andModifiers:[combo modifiers]
146 if (_currentPlaylist) {
147 [tempItem setTag:MTMenuPreviousTrackItem];
148 [tempItem setTarget:self];
150 } else if ([nextObject isEqualToString:@"fastForward"]) {
151 ITDebugLog(@"Add \"Fast Forward\" menu item.");
152 tempItem = [menu addItemWithTitle:NSLocalizedString(@"fastForward", @"Fast Forward")
153 action:@selector(performMainMenuAction:)
155 if (_currentPlaylist) {
156 [tempItem setTag:MTMenuFastForwardItem];
157 [tempItem setTarget:self];
159 } else if ([nextObject isEqualToString:@"rewind"]) {
160 ITDebugLog(@"Add \"Rewind\" menu item.");
161 tempItem = [menu addItemWithTitle:NSLocalizedString(@"rewind", @"Rewind")
162 action:@selector(performMainMenuAction:)
164 if (_currentPlaylist) {
165 [tempItem setTag:MTMenuRewindItem];
166 [tempItem setTarget:self];
168 } else if ([nextObject isEqualToString:@"showPlayer"]) {
169 ITDebugLog(@"Add \"Show Player\" menu item.");
170 tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@",
171 NSLocalizedString(@"show", @"Show"),
172 [[[MainController sharedController] currentRemote] playerSimpleName]]
173 action:@selector(performMainMenuAction:)
176 itemEnum = [hotKeys objectEnumerator];
177 while ( (hotKey = [itemEnum nextObject]) ) {
178 if ([[hotKey name] isEqualToString:@"ShowPlayer"]) {
179 ITKeyCombo *combo = [hotKey keyCombo];
180 [self setKeyEquivalentForCode:[combo keyCode]
181 andModifiers:[combo modifiers]
186 [tempItem setTarget:self];
187 [tempItem setTag:MTMenuShowPlayerItem];
188 } else if ([nextObject isEqualToString:@"preferences"]) {
189 ITDebugLog(@"Add \"Preferences...\" menu item.");
190 tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...")
191 action:@selector(performMainMenuAction:)
193 [tempItem setTag:MTMenuPreferencesItem];
194 [tempItem setTarget:self];
195 } else if ([nextObject isEqualToString:@"quit"]) {
196 if ([[MainController sharedController] blingBling] == NO) {
197 ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
198 tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
199 [tempItem setTag:MTMenuRegisterItem];
200 [tempItem setTarget:self];
202 ITDebugLog(@"Add \"Quit\" menu item.");
203 tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit")
204 action:@selector(performMainMenuAction:)
206 [tempItem setTag:MTMenuQuitItem];
207 [tempItem setTarget:self];
208 } else if ([nextObject isEqualToString:@"trackInfo"]) {
209 ITDebugLog(@"Check to see if a Track is playing...");
210 //Handle playing radio too
211 if (_currentPlaylist) {
212 NSString *title = [currentRemote currentSongTitle];
213 ITDebugLog(@"A Track is Playing, Add \"Track Info\" menu items.");
214 ITDebugLog(@"Add \"Now Playing\" menu item.");
215 [menu addItemWithTitle:NSLocalizedString(@"nowPlaying", @"Now Playing") action:NULL keyEquivalent:@""];
217 if ([title length] > 0) {
218 ITDebugLog(@"Add Track Title (\"%@\") menu item.", title);
220 [menu addItemWithTitle:title action:nil keyEquivalent:@""]];
223 if (!_playingRadio) {
224 if ([defaults boolForKey:@"showAlbum"]) {
225 NSString *curAlbum = [currentRemote currentSongAlbum];
226 ITDebugLog(@"Add Track Album (\"%@\") menu item.", curAlbum);
229 [menu addItemWithTitle:curAlbum action:nil keyEquivalent:@""]];
233 if ([defaults boolForKey:@"showArtist"]) {
234 NSString *curArtist = [currentRemote currentSongArtist];
235 ITDebugLog(@"Add Track Artist (\"%@\") menu item.", curArtist);
238 [menu addItemWithTitle:curArtist action:nil keyEquivalent:@""]];
242 if ([defaults boolForKey:@"showTrackNumber"]) {
243 int track = [currentRemote currentSongTrack];
244 ITDebugLog(@"Add Track Number (\"Track %i\") menu item.", track);
247 [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %i", NSLocalizedString(@"track", @"Track"), track] action:nil keyEquivalent:@""]];
252 if ([defaults boolForKey:@"showTime"] && ( ([currentRemote currentSongElapsed] != nil) || ([currentRemote currentSongLength] != nil) )) {
253 ITDebugLog(@"Add Track Elapsed (\"%@/%@\") menu item.", [currentRemote currentSongElapsed], [currentRemote currentSongLength]);
254 [menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"%@/%@", [currentRemote currentSongElapsed], [currentRemote currentSongLength]] action:nil keyEquivalent:@""]];
257 if (!_playingRadio) {
258 if ([defaults boolForKey:@"showTrackRating"] && ( [currentRemote currentSongRating] != -1.0 )) {
259 NSString *string = nil;
260 switch ((int)([currentRemote currentSongRating] * 5)) {
262 string = [NSString stringWithUTF8String:"☆☆☆☆☆"];
265 string = [NSString stringWithUTF8String:"★☆☆☆☆"];
268 string = [NSString stringWithUTF8String:"★★☆☆☆"];
271 string = [NSString stringWithUTF8String:"★★★☆☆"];
274 string = [NSString stringWithUTF8String:"★★★★☆"];
277 string = [NSString stringWithUTF8String:"★★★★★"];
280 ITDebugLog(@"Add Track Rating (\"%@\") menu item.", string);
281 [menu indentItem:[menu addItemWithTitle:string action:nil keyEquivalent:@""]];
285 ITDebugLog(@"No Track is Playing, Add \"No Song\" menu item.");
286 [menu addItemWithTitle:NSLocalizedString(@"noSong", @"No Song") action:NULL keyEquivalent:@""];
288 } else if ([nextObject isEqualToString:@"separator"]) {
289 ITDebugLog(@"Add a separator menu item.");
290 [menu addItem:[NSMenuItem separatorItem]];
292 } else if ([nextObject isEqualToString:@"playlists"]) {
293 ITDebugLog(@"Add \"Playlists\" submenu.");
294 tempItem = [menu addItemWithTitle:NSLocalizedString(@"playlists", @"Playlists")
297 [tempItem setSubmenu:_playlistsMenu];
299 } else if ([nextObject isEqualToString:@"eqPresets"]) {
300 ITDebugLog(@"Add \"EQ Presets\" submenu.");
301 tempItem = [menu addItemWithTitle:NSLocalizedString(@"eqPresets", @"EQ Presets")
304 [tempItem setSubmenu:_eqMenu];
307 itemEnum = [[_eqMenu itemArray] objectEnumerator];
308 while ( (tempItem = [itemEnum nextObject]) ) {
309 [tempItem setState:NSOffState];
311 [[_eqMenu itemAtIndex:([currentRemote currentEQPresetIndex] - 1)] setState:NSOnState];
312 } else if ([nextObject isEqualToString:@"songRating"] && ( [currentRemote currentSongRating] != -1 )) {
313 ITDebugLog(@"Add \"Song Rating\" submenu.");
314 tempItem = [menu addItemWithTitle:NSLocalizedString(@"songRating", @"Song Rating")
317 [tempItem setSubmenu:_ratingMenu];
319 if (_playingRadio || !_currentPlaylist) {
320 [tempItem setEnabled:NO];
323 itemEnum = [[_ratingMenu itemArray] objectEnumerator];
324 while ( (tempItem = [itemEnum nextObject]) ) {
325 [tempItem setState:NSOffState];
328 [[_ratingMenu itemAtIndex:([currentRemote currentSongRating] * 5)] setState:NSOnState];
329 } else if ([nextObject isEqualToString:@"upcomingSongs"]) {
330 ITDebugLog(@"Add \"Upcoming Songs\" submenu.");
331 tempItem = [menu addItemWithTitle:NSLocalizedString(@"upcomingSongs", @"Upcoming Songs")
334 [tempItem setSubmenu:_upcomingSongsMenu];
336 if (_playingRadio || !_currentPlaylist) {
337 [tempItem setEnabled:NO];
341 ITDebugLog(@"Finished building menu.");
342 [_currentMenu release];
347 - (NSMenu *)menuForNoPlayer
349 NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
350 NSMenuItem *tempItem;
351 ITDebugLog(@"Creating menu for when player isn't running.");
352 ITDebugLog(@"Add \"Open %@\" menu item.", [[[MainController sharedController] currentRemote] playerSimpleName]);
353 tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"open", @"Open"), [[[MainController sharedController] currentRemote] playerSimpleName]] action:@selector(performMainMenuAction:) keyEquivalent:@""];
354 [tempItem setTag:MTMenuShowPlayerItem];
355 [tempItem setTarget:self];
356 ITDebugLog(@"Add a separator menu item.");
357 [menu addItem:[NSMenuItem separatorItem]];
358 ITDebugLog(@"Add \"Preferences...\" menu item.");
359 tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
360 [tempItem setTag:MTMenuPreferencesItem];
361 [tempItem setTarget:self];
362 if ([[MainController sharedController] blingBling] == NO) {
363 ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
364 tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
365 [tempItem setTag:MTMenuRegisterItem];
366 [tempItem setTarget:self];
368 ITDebugLog(@"Add \"Quit\" menu item.");
369 tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit") action:@selector(performMainMenuAction:) keyEquivalent:@""];
370 [tempItem setTag:MTMenuQuitItem];
371 [tempItem setTarget:self];
372 return [menu autorelease];
375 - (void)rebuildSubmenus
377 ITDebugLog(@"Rebuilding all of the submenus.");
379 currentRemote = [[MainController sharedController] currentRemote];
380 _currentPlaylist = [currentRemote currentPlaylistIndex];
381 _currentTrack = [currentRemote currentSongIndex];
382 _playingRadio = ([currentRemote currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
384 [_ratingMenu release];
385 [_upcomingSongsMenu release];
386 [_playlistsMenu release];
388 ITDebugLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
389 _ratingMenu = [self ratingMenu];
390 ITDebugLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
391 _upcomingSongsMenu = [self upcomingSongsMenu];
392 ITDebugLog(@"Beginning Rebuild of \"Playlists\" submenu.");
393 _playlistsMenu = [self playlistsMenu];
394 ITDebugLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
395 _eqMenu = [self eqMenu];
396 ITDebugLog(@"Done rebuilding all of the submenus.");
399 - (NSMenu *)ratingMenu
401 NSMenu *ratingMenu = [[NSMenu alloc] initWithTitle:@""];
402 NSEnumerator *itemEnum;
405 SEL itemSelector = @selector(performRatingMenuAction:);
407 ITDebugLog(@"Building \"Song Rating\" menu.");
409 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"☆☆☆☆☆"] action:nil keyEquivalent:@""];
410 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★☆☆☆☆"] action:nil keyEquivalent:@""];
411 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★☆☆☆"] action:nil keyEquivalent:@""];
412 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★☆☆"] action:nil keyEquivalent:@""];
413 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★☆"] action:nil keyEquivalent:@""];
414 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★★"] action:nil keyEquivalent:@""];
416 itemEnum = [[ratingMenu itemArray] objectEnumerator];
417 while ( (anItem = [itemEnum nextObject]) ) {
418 ITDebugLog(@"Setting up \"%@\" menu item.", [anItem title]);
419 [anItem setAction:itemSelector];
420 [anItem setTarget:self];
421 [anItem setTag:itemTag];
424 ITDebugLog(@"Done Building \"Song Rating\" menu.");
428 - (NSMenu *)upcomingSongsMenu
430 NSMenu *upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
431 int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:_currentPlaylist];
432 int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
434 ITDebugLog(@"Building \"Upcoming Songs\" menu.");
436 if (_currentPlaylist && !_playingRadio) {
440 for (i = _currentTrack + 1; i <= _currentTrack + numSongsInAdvance; i++) {
442 NSString *curSong = [currentRemote songTitleAtIndex:i];
443 NSMenuItem *songItem;
444 ITDebugLog(@"Adding song: %@", curSong);
445 songItem = [upcomingSongsMenu addItemWithTitle:curSong action:@selector(performUpcomingSongsMenuAction:) keyEquivalent:@""];
447 [songItem setTarget:self];
454 ITDebugLog(@"Done Building \"Upcoming Songs\" menu.");
455 return upcomingSongsMenu;
458 - (NSMenu *)playlistsMenu
460 NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
461 NSArray *playlists = [currentRemote playlists];
462 NSMenuItem *tempItem;
465 ITDebugLog(@"Building \"Playlists\" menu.");
467 for (i = 0; i < [playlists count]; i++) {
468 NSString *curPlaylist = [playlists objectAtIndex:i];
469 ITDebugLog(@"Adding playlist: %@", curPlaylist);
470 tempItem = [playlistsMenu addItemWithTitle:curPlaylist action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
471 [tempItem setTag:i + 1];
472 [tempItem setTarget:self];
475 if (!_playingRadio && _currentPlaylist) {
476 [[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
478 ITDebugLog(@"Done Building \"Playlists\" menu");
479 return playlistsMenu;
484 NSMenu *eqMenu = [[NSMenu alloc] initWithTitle:@""];
485 NSArray *eqPresets = [currentRemote eqPresets];
486 NSMenuItem *tempItem;
489 ITDebugLog(@"Building \"EQ Presets\" menu.");
491 for (i = 0; i < [eqPresets count]; i++) {
493 if ( ( name = [eqPresets objectAtIndex:i] ) ) {
494 ITDebugLog(@"Adding EQ Preset: %@", name);
495 tempItem = [eqMenu addItemWithTitle:name
496 action:@selector(performEqualizerMenuAction:)
499 [tempItem setTarget:self];
502 ITDebugLog(@"Done Building \"EQ Presets\" menu");
506 - (void)performMainMenuAction:(id)sender
508 switch ( [sender tag] )
510 case MTMenuPlayPauseItem:
511 ITDebugLog(@"Performing Menu Action: Play/Pause");
512 [[MainController sharedController] playPause];
514 case MTMenuFastForwardItem:
515 ITDebugLog(@"Performing Menu Action: Fast Forward");
516 [[MainController sharedController] fastForward];
518 case MTMenuRewindItem:
519 ITDebugLog(@"Performing Menu Action: Rewind");
520 [[MainController sharedController] rewind];
522 case MTMenuPreviousTrackItem:
523 ITDebugLog(@"Performing Menu Action: Previous Track");
524 [[MainController sharedController] prevSong];
526 case MTMenuNextTrackItem:
527 ITDebugLog(@"Performing Menu Action: Next Track");
528 [[MainController sharedController] nextSong];
530 case MTMenuShowPlayerItem:
531 ITDebugLog(@"Performing Menu Action: Show Main Interface");
532 [[MainController sharedController] showPlayer];
534 case MTMenuPreferencesItem:
535 ITDebugLog(@"Performing Menu Action: Preferences...");
536 [[MainController sharedController] showPreferences];
539 ITDebugLog(@"Performing Menu Action: Quit");
540 [[MainController sharedController] quitMenuTunes];
542 case MTMenuRegisterItem:
543 ITDebugLog(@"Performing Menu Action: Register");
544 [[MainController sharedController] blingNow];
547 ITDebugLog(@"Performing Menu Action: Unimplemented Menu Item OR Child-bearing Menu Item");
552 - (void)performRatingMenuAction:(id)sender
554 ITDebugLog(@"Rating action selected on item with tag %i", [sender tag]);
555 [[MainController sharedController] selectSongRating:[sender tag]];
558 - (void)performPlaylistMenuAction:(id)sender
560 ITDebugLog(@"Playlist action selected on item with tag %i", [sender tag]);
561 [[MainController sharedController] selectPlaylistAtIndex:[sender tag]];
564 - (void)performEqualizerMenuAction:(id)sender
566 ITDebugLog(@"EQ action selected on item with tag %i", [sender tag]);
567 [[MainController sharedController] selectEQPresetAtIndex:[sender tag]];
570 - (void)performUpcomingSongsMenuAction:(id)sender
572 ITDebugLog(@"Song action selected on item with tag %i", [sender tag]);
573 [[MainController sharedController] selectSongAtIndex:[sender tag]];
578 ITDebugLog(@"Update Menu");
579 [_currentMenu update];
582 - (BOOL)validateMenuItem:(id <NSMenuItem>)menuItem
587 //This is never used I know, keep it though
588 - (NSString *)systemUIColor
590 NSDictionary *tmpDict;
592 if ( (tmpDict = [NSDictionary dictionaryWithContentsOfFile:[@"~/Library/Preferences/.GlobalPreferences.plist" stringByExpandingTildeInPath]]) ) {
593 if ( (tmpNumber = [tmpDict objectForKey:@"AppleAquaColorVariant"]) ) {
594 if ( ([tmpNumber intValue] == 1) ) {
607 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
608 onItem:(NSMenuItem *)item
610 unichar charcode = 'a';
612 long cocoaModifiers = 0;
613 static long carbonToCocoa[6][2] =
615 { cmdKey, NSCommandKeyMask },
616 { optionKey, NSAlternateKeyMask },
617 { controlKey, NSControlKeyMask },
618 { shiftKey, NSShiftKeyMask },
621 ITDebugLog(@"Setting Key Equivelent on menu item \"%@\".", [item title]);
623 for (i = 0; i < 6; i++) {
624 if (modifiers & carbonToCocoa[i][0]) {
625 cocoaModifiers += carbonToCocoa[i][1];
628 [item setKeyEquivalentModifierMask:cocoaModifiers];
630 //Missing key combos for some keys. Must find them later.
634 ITDebugLog(@"Keycode for menu item \"%@\": 36 (Return)", [item title]);
639 ITDebugLog(@"Keycode for menu item \"%@\": 48 (Tab)", [item title]);
646 ITDebugLog(@"Keycode for menu item \"%@\": 49 (Space)", [item title]);
647 // Haven't tested this, though it should work.
648 // This doesn't work. :'(
650 //[[NSString stringWithString:@"Space"] getCharacters:&buffer];
652 /*MenuRef menuRef = _NSGetCarbonMenu([item menu]);
653 ITDebugLog(@"%@", menuRef);
654 SetMenuItemCommandKey(menuRef, 0, NO, 49);
655 SetMenuItemModifiers(menuRef, 0, kMenuNoCommandModifier);
656 SetMenuItemKeyGlyph(menuRef, 0, kMenuBlankGlyph);
659 [[NSString stringWithString:@" "] getCharacters:&buffer]; // this will have to do for now :(
665 ITDebugLog(@"Keycode for menu item \"%@\": 51 (Delete)", [item title]);
666 charcode = NSDeleteFunctionKey;
670 ITDebugLog(@"Keycode for menu item \"%@\": 53 (Escape)", [item title]);
675 ITDebugLog(@"Keycode for menu item \"%@\": 71 (Escape)", [item title]);
680 ITDebugLog(@"Keycode for menu item \"%@\": 76 (Return)", [item title]);
685 ITDebugLog(@"Keycode for menu item \"%@\": 96 (F5)", [item title]);
686 charcode = NSF5FunctionKey;
690 ITDebugLog(@"Keycode for menu item \"%@\": 97 (F6)", [item title]);
691 charcode = NSF6FunctionKey;
695 ITDebugLog(@"Keycode for menu item \"%@\": 98 (F7)", [item title]);
696 charcode = NSF7FunctionKey;
700 ITDebugLog(@"Keycode for menu item \"%@\": 99 (F3)", [item title]);
701 charcode = NSF3FunctionKey;
705 ITDebugLog(@"Keycode for menu item \"%@\": 100 (F8)", [item title]);
706 charcode = NSF8FunctionKey;
710 ITDebugLog(@"Keycode for menu item \"%@\": 101 (F9)", [item title]);
711 charcode = NSF9FunctionKey;
715 ITDebugLog(@"Keycode for menu item \"%@\": 103 (F11)", [item title]);
716 charcode = NSF11FunctionKey;
720 ITDebugLog(@"Keycode for menu item \"%@\": 105 (F13)", [item title]);
721 charcode = NSF13FunctionKey;
725 ITDebugLog(@"Keycode for menu item \"%@\": 107 (F14)", [item title]);
726 charcode = NSF14FunctionKey;
730 ITDebugLog(@"Keycode for menu item \"%@\": 109 (F10)", [item title]);
731 charcode = NSF10FunctionKey;
735 ITDebugLog(@"Keycode for menu item \"%@\": 111 (F12)", [item title]);
736 charcode = NSF12FunctionKey;
740 ITDebugLog(@"Keycode for menu item \"%@\": 113 (F13)", [item title]);
741 charcode = NSF13FunctionKey;
745 ITDebugLog(@"Keycode for menu item \"%@\": 114 (Insert)", [item title]);
746 charcode = NSInsertFunctionKey;
750 ITDebugLog(@"Keycode for menu item \"%@\": 115 (Home)", [item title]);
751 charcode = NSHomeFunctionKey;
755 ITDebugLog(@"Keycode for menu item \"%@\": 116 (PgUp)", [item title]);
756 charcode = NSPageUpFunctionKey;
760 ITDebugLog(@"Keycode for menu item \"%@\": 117 (Delete)", [item title]);
761 charcode = NSDeleteFunctionKey;
765 ITDebugLog(@"Keycode for menu item \"%@\": 118 (F4)", [item title]);
766 charcode = NSF4FunctionKey;
770 ITDebugLog(@"Keycode for menu item \"%@\": 119 (End)", [item title]);
771 charcode = NSEndFunctionKey;
775 ITDebugLog(@"Keycode for menu item \"%@\": 120 (F2)", [item title]);
776 charcode = NSF2FunctionKey;
780 ITDebugLog(@"Keycode for menu item \"%@\": 121 (PgDown)", [item title]);
781 charcode = NSPageDownFunctionKey;
785 ITDebugLog(@"Keycode for menu item \"%@\": 122 (F1)", [item title]);
786 charcode = NSF1FunctionKey;
790 ITDebugLog(@"Keycode for menu item \"%@\": 123 (Left Arrow)", [item title]);
791 charcode = NSLeftArrowFunctionKey;
795 ITDebugLog(@"Keycode for menu item \"%@\": 124 (Right Arrow)", [item title]);
796 charcode = NSRightArrowFunctionKey;
800 ITDebugLog(@"Keycode for menu item \"%@\": 125 (Down Arrow)", [item title]);
801 charcode = NSDownArrowFunctionKey;
805 ITDebugLog(@"Keycode for menu item \"%@\": 126 (Up Arrow)", [item title]);
806 charcode = NSUpArrowFunctionKey;
810 if (charcode == 'a') {
816 kchr = (Ptr) GetScriptVariable(smCurrentScript, smKCHRCache);
817 keyTrans = KeyTranslate(kchr, code, &state);
819 ITDebugLog(@"Keycode for menu item \"%@\": %i (%c)", [item title], code, charCode);
820 [item setKeyEquivalent:[NSString stringWithCString:&charCode length:1]];
821 } else if (charcode != 'b') {
822 [item setKeyEquivalent:[NSString stringWithCharacters:&charcode length:1]];
824 ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);