1 #import "PreferencesController.h"
2 #import "MainController.h"
3 #import "HotKeyCenter.h"
4 #import <ITKit/ITWindowPositioning.h>
6 #define SENDER_STATE (([sender state] == NSOnState) ? YES : NO)
8 /*************************************************************************/
10 #pragma mark PRIVATE INTERFACE
11 /*************************************************************************/
13 @interface PreferencesController (Private)
15 - (void)setupCustomizationTables;
16 - (void)setupMenuItems;
18 - (IBAction)changeMenus:(id)sender;
19 - (void)setLaunchesAtLogin:(BOOL)flag;
23 @implementation PreferencesController
26 /*************************************************************************/
28 #pragma mark STATIC VARIABLES
29 /*************************************************************************/
31 static PreferencesController *prefs = nil;
34 /*************************************************************************/
36 #pragma mark INITIALIZATION METHODS
37 /*************************************************************************/
39 + (PreferencesController *)sharedPrefs;
42 prefs = [[self alloc] init];
49 if ( (self = [super init]) ) {
50 df = [[NSUserDefaults standardUserDefaults] retain];
51 hotKeysDictionary = [[NSMutableDictionary alloc] init];
58 /*************************************************************************/
60 #pragma mark ACCESSOR METHODS
61 /*************************************************************************/
68 - (void)setController:(id)object
70 [controller autorelease];
71 controller = [object retain];
75 /*************************************************************************/
77 #pragma mark INSTANCE METHODS
78 /*************************************************************************/
80 - (IBAction)showPrefsWindow:(id)sender
82 if (! window) { // If window does not exist yet, then the nib hasn't been loaded.
83 [self setupWindow]; // Load in the nib, and perform any initial setup.
84 [self setupCustomizationTables]; // Setup the DnD manu config tables.
85 [self setupMenuItems]; // Setup the arrays of menu items
86 [self setupUI]; // Sets up additional UI
87 [window setDelegate:self];
90 [window setLevel:NSStatusWindowLevel];
92 [window makeKeyAndOrderFront:self];
93 [NSApp activateIgnoringOtherApps:YES];
96 - (IBAction)changeGeneralSetting:(id)sender
98 BOOL rebuildRequired = NO;
100 if ( [sender tag] == 1010) {
101 [self setLaunchesAtLogin:SENDER_STATE];
102 } else if ( [sender tag] == 1020) {
103 [df setBool:SENDER_STATE forKey:@"LaunchPlayerWithMT"];
104 } else if ( [sender tag] == 1030) {
105 [df setInteger:[sender intValue] forKey:@"SongsInAdvance"];
106 rebuildRequired = YES;
107 } else if ( [sender tag] == 1040) {
108 // This will not be executed. Song info always shows the title of the song.
109 // [df setBool:SENDER_STATE forKey:@"showName"];
110 // rebuildRequired = YES;
111 } else if ( [sender tag] == 1050) {
112 [df setBool:SENDER_STATE forKey:@"showArtist"];
113 rebuildRequired = YES;
114 } else if ( [sender tag] == 1060) {
115 [df setBool:SENDER_STATE forKey:@"showAlbum"];
116 rebuildRequired = YES;
117 } else if ( [sender tag] == 1070) {
118 [df setBool:SENDER_STATE forKey:@"showTime"];
119 rebuildRequired = YES;
120 } else if ( [sender tag] == 1080) {
121 [df setBool:SENDER_STATE forKey:@"showTrackNumber"];
122 rebuildRequired = YES;
123 } else if ( [sender tag] == 1090) {
124 [df setBool:SENDER_STATE forKey:@"showTrackRating"];
125 rebuildRequired = YES;
128 if ( rebuildRequired ) {
129 [controller rebuildMenu];
130 // redraw song info status window, or upcoming songs here
136 - (IBAction)changeStatusWindowSetting:(id)sender
138 if ( [sender tag] == 2010) {
139 [df setInteger:[sender selectedRow] forKey:@"statusWindowVerticalPosition"];
140 [df setInteger:[sender selectedColumn] forKey:@"statusWindowHorizontalPosition"];
141 // update the window's position here
142 } else if ( [sender tag] == 2020) {
143 // update screen selection
144 } else if ( [sender tag] == 2030) {
145 // Update appearance effect
146 } else if ( [sender tag] == 2040) {
147 // Update Vanish Effect
148 } else if ( [sender tag] == 2050) {
149 // Update appearance speed
150 } else if ( [sender tag] == 2060) {
151 // Update vanish speed
152 } else if ( [sender tag] == 2070) {
153 // Update vanish delay
154 } else if ( [sender tag] == 2080) {
155 // Update "Song Info window when song changes" setting.
156 [df setBool:SENDER_STATE forKey:@"showSongInfoOnChange"];
160 - (IBAction)changeHotKey:(id)sender
162 switch ([sender tag])
165 [self setKeyCombo:[hotKeysDictionary objectForKey:@"PlayPause"]];
166 [self setCurrentHotKey:@"PlayPause"];
169 [self setKeyCombo:[hotKeysDictionary objectForKey:@"NextTrack"]];
170 [self setCurrentHotKey:@"NextTrack"];
173 [self setKeyCombo:[hotKeysDictionary objectForKey:@"PrevTrack"]];
174 [self setCurrentHotKey:@"PrevTrack"];
177 [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleVisualizer"]];
178 [self setCurrentHotKey:@"ToggleVisualizer"];
181 [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleLoop"]];
182 [self setCurrentHotKey:@"ToggleLoop"];
185 [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleShuffle"]];
186 [self setCurrentHotKey:@"ToggleShuffle"];
189 [self setKeyCombo:[hotKeysDictionary objectForKey:@"TrackInfo"]];
190 [self setCurrentHotKey:@"TrackInfo"];
193 [self setKeyCombo:[hotKeysDictionary objectForKey:@"UpcomingSongs"]];
194 [self setCurrentHotKey:@"UpcomingSongs"];
197 [self setKeyCombo:[hotKeysDictionary objectForKey:@"IncrementVolume"]];
198 [self setCurrentHotKey:@"IncrementVolume"];
201 [self setKeyCombo:[hotKeysDictionary objectForKey:@"DecrementVolume"]];
202 [self setCurrentHotKey:@"DecrementVolume"];
205 [self setKeyCombo:[hotKeysDictionary objectForKey:@"IncrementRating"]];
206 [self setCurrentHotKey:@"IncrementRating"];
209 [self setKeyCombo:[hotKeysDictionary objectForKey:@"DecrementRating"]];
210 [self setCurrentHotKey:@"DecrementRating"];
215 - (void)registerDefaults
218 NSMutableDictionary *loginWindow;
219 NSMutableArray *loginArray;
220 NSEnumerator *loginEnum;
223 [df setObject:[NSArray arrayWithObjects:
238 @"Current Track Info",
239 nil] forKey:@"menu"];
241 [df setInteger:5 forKey:@"SongsInAdvance"];
242 // [df setBool:YES forKey:@"showName"]; // Song info will always show song title.
243 [df setBool:YES forKey:@"showArtist"];
244 [df setBool:NO forKey:@"showAlbum"];
245 [df setBool:NO forKey:@"showTime"];
249 loginWindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
250 loginArray = [loginWindow objectForKey:@"AutoLaunchedApplicationDictionary"];
251 loginEnum = [loginArray objectEnumerator];
253 while ( (anItem = [loginEnum nextObject]) ) {
254 if ( [[[anItem objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]] ) {
259 [loginWindow release];
262 // We must fix it so it is no longer suxy
264 if (NSRunInformationalAlertPanel(@"Auto-launch MenuTunes", @"Would you like MenuTunes to automatically launch at login?", @"Yes", @"No", nil) == NSOKButton) {
265 AEDesc scriptDesc, resultDesc;
266 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]];
267 ComponentInstance asComponent = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);
269 AECreateDesc(typeChar, [script cString], [script cStringLength],
272 OSADoScript(asComponent, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
274 AEDisposeDesc(&scriptDesc);
275 AEDisposeDesc(&resultDesc);
277 CloseComponent(asComponent);
282 - (IBAction)cancelHotKey:(id)sender
284 [[NSNotificationCenter defaultCenter] removeObserver:self];
285 [NSApp endSheet:keyComboPanel];
286 [keyComboPanel orderOut:nil];
289 - (IBAction)clearHotKey:(id)sender
291 [self setKeyCombo:[KeyCombo clearKeyCombo]];
294 - (IBAction)okHotKey:(id)sender
296 NSString *string = [combo userDisplayRep];
297 NSEnumerator *enumerator = [hotKeysDictionary keyEnumerator];
299 BOOL duplicateCombo = NO;
305 while ( (enumKey = [enumerator nextObject]) ) {
306 if (![enumKey isEqualToString:currentHotKey]) {
307 if (![combo isEqual:[KeyCombo clearKeyCombo]] &&
308 [combo isEqual:[hotKeysDictionary objectForKey:enumKey]]) {
309 [window setLevel:NSNormalWindowLevel];
310 if ( NSRunAlertPanel(@"Duplicate Key Combo", @"The specified key combo is already in use...", @"Replace", @"Cancel", nil) ) {
311 [hotKeysDictionary setObject:[KeyCombo clearKeyCombo] forKey:currentHotKey];
312 if ([enumKey isEqualToString:@"PlayPause"]) {
313 [playPauseButton setTitle:@""];
314 } else if ([enumKey isEqualToString:@"NextTrack"]) {
315 [nextTrackButton setTitle:@""];
316 } else if ([enumKey isEqualToString:@"PrevTrack"]) {
317 [previousTrackButton setTitle:@""];
318 } else if ([enumKey isEqualToString:@"ToggleVisualizer"]) {
319 [visualizerButton setTitle:@""];
320 } else if ([enumKey isEqualToString:@"TrackInfo"]) {
321 [trackInfoButton setTitle:@""];
322 } else if ([enumKey isEqualToString:@"UpcomingSongs"]) {
323 [upcomingSongsButton setTitle:@""];
324 } else if ([enumKey isEqualToString:@"IncrementVolume"]) {
325 [volumeIncrementButton setTitle:@""];
326 } else if ([enumKey isEqualToString:@"DecrementVolume"]) {
327 [volumeDecrementButton setTitle:@""];
328 } else if ([enumKey isEqualToString:@"IncrementRating"]) {
329 [ratingIncrementButton setTitle:@""];
330 } else if ([enumKey isEqualToString:@"DecrementRating"]) {
331 [ratingDecrementButton setTitle:@""];
332 } else if ([enumKey isEqualToString:@"ToggleShuffle"]) {
333 [toggleShuffleButton setTitle:@""];
334 } else if ([enumKey isEqualToString:@"ToggleLoop"]) {
335 [toggleLoopButton setTitle:@""];
337 [df setKeyCombo:[KeyCombo clearKeyCombo] forKey:enumKey];
341 [window setLevel:NSStatusWindowLevel];
346 if (!duplicateCombo) {
347 [hotKeysDictionary setObject:combo forKey:currentHotKey];
348 [df setKeyCombo:combo forKey:currentHotKey];
350 if ([currentHotKey isEqualToString:@"PlayPause"]) {
351 [playPauseButton setTitle:string];
352 } else if ([currentHotKey isEqualToString:@"NextTrack"]) {
353 [nextTrackButton setTitle:string];
354 } else if ([currentHotKey isEqualToString:@"PrevTrack"]) {
355 [previousTrackButton setTitle:string];
356 } else if ([currentHotKey isEqualToString:@"ToggleVisualizer"]) {
357 [visualizerButton setTitle:string];
358 } else if ([currentHotKey isEqualToString:@"TrackInfo"]) {
359 [trackInfoButton setTitle:string];
360 } else if ([currentHotKey isEqualToString:@"UpcomingSongs"]) {
361 [upcomingSongsButton setTitle:string];
362 } else if ([currentHotKey isEqualToString:@"IncrementVolume"]) {
363 [volumeIncrementButton setTitle:string];
364 } else if ([currentHotKey isEqualToString:@"DecrementVolume"]) {
365 [volumeDecrementButton setTitle:string];
366 } else if ([currentHotKey isEqualToString:@"IncrementRating"]) {
367 [ratingIncrementButton setTitle:string];
368 } else if ([currentHotKey isEqualToString:@"DecrementRating"]) {
369 [ratingDecrementButton setTitle:string];
370 } else if ([currentHotKey isEqualToString:@"ToggleShuffle"]) {
371 [toggleShuffleButton setTitle:string];
372 } else if ([currentHotKey isEqualToString:@"ToggleLoop"]) {
373 [toggleLoopButton setTitle:string];
375 //[controller rebuildMenu];
377 [self cancelHotKey:sender];
382 /*************************************************************************/
384 #pragma mark HOTKEY SUPPORT METHODS
385 /*************************************************************************/
387 - (void)setCurrentHotKey:(NSString *)key
389 [currentHotKey autorelease];
390 currentHotKey = [key copy];
391 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyEvent:) name:@"KeyBroadcasterEvent" object:nil];
392 [NSApp beginSheet:keyComboPanel modalForWindow:window modalDelegate:self didEndSelector:nil contextInfo:nil];
395 - (void)keyEvent:(NSNotification *)note
397 NSDictionary *info = [note userInfo];
402 keyCode = [[info objectForKey:@"KeyCode"] shortValue];
403 modifiers = [[info objectForKey:@"Modifiers"] longValue];
405 newCombo = [[KeyCombo alloc] initWithKeyCode:keyCode andModifiers:modifiers];
406 [self setKeyCombo:newCombo];
409 - (void)setKeyCombo:(KeyCombo *)newCombo
413 combo = [newCombo copy];
415 string = [combo userDisplayRep];
419 [keyComboField setStringValue:string];
423 /*************************************************************************/
425 #pragma mark PRIVATE METHOD IMPLEMENTATIONS
426 /*************************************************************************/
430 if ( ! [NSBundle loadNibNamed:@"Preferences" owner:self] ) {
431 NSLog( @"Failed to load Preferences.nib" );
437 - (void)setupCustomizationTables
439 NSImageCell *imgCell = [[[NSImageCell alloc] initImageCell:nil] autorelease];
441 // Set the table view cells up
442 [imgCell setImageScaling:NSScaleNone];
443 [[menuTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
444 [[allTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
446 // Register for drag and drop
447 [menuTableView registerForDraggedTypes:[NSArray arrayWithObjects:
448 @"MenuTableViewPboardType",
449 @"AllTableViewPboardType",
451 [allTableView registerForDraggedTypes:[NSArray arrayWithObjects:
452 @"MenuTableViewPboardType",
453 @"AllTableViewPboardType",
457 - (void)setupMenuItems
459 NSEnumerator *itemEnum;
461 // Set the list of items you can have.
462 availableItems = [[NSMutableArray alloc] initWithObjects:
463 @"Current Track Info",
477 // Get our preferred menu
478 myItems = [[df arrayForKey:@"menu"] mutableCopy];
480 // Delete items in the availableItems array that are already part of the menu
481 itemEnum = [myItems objectEnumerator];
482 while ( (anItem = [itemEnum nextObject]) ) {
483 if ( ! [anItem isEqualToString:@"<separator>"] ) {
484 [availableItems removeObject:anItem];
488 // Items that show should a submenu image
489 submenuItems = [[NSArray alloc] initWithObjects:
499 NSMutableDictionary *loginwindow;
500 NSMutableArray *loginarray;
501 NSEnumerator *loginEnum;
504 // Fill in the number of songs in advance to show field
505 [songsInAdvance setIntValue:[df integerForKey:@"SongsInAdvance"]];
507 // Fill in hot key buttons
508 if ([df objectForKey:@"PlayPause"]){
509 anItem = [df keyComboForKey:@"PlayPause"];
510 [hotKeysDictionary setObject:anItem forKey:@"PlayPause"];
511 [playPauseButton setTitle:[anItem userDisplayRep]];
513 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PlayPause"];
516 if ([df objectForKey:@"NextTrack"]) {
517 anItem = [df keyComboForKey:@"NextTrack"];
518 [hotKeysDictionary setObject:anItem forKey:@"NextTrack"];
519 [nextTrackButton setTitle:[anItem userDisplayRep]];
521 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"NextTrack"];
524 if ([df objectForKey:@"PrevTrack"]) {
525 anItem = [df keyComboForKey:@"PrevTrack"];
526 [hotKeysDictionary setObject:anItem forKey:@"PrevTrack"];
527 [previousTrackButton setTitle:[anItem userDisplayRep]];
529 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PrevTrack"];
532 if ([df objectForKey:@"ToggleVisualizer"]) {
533 anItem = [df keyComboForKey:@"ToggleVisualizer"];
534 [hotKeysDictionary setObject:anItem forKey:@"ToggleVisualizer"];
535 [visualizerButton setTitle:[anItem userDisplayRep]];
537 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleVisualizer"];
540 if ([df objectForKey:@"TrackInfo"]) {
541 anItem = [df keyComboForKey:@"TrackInfo"];
542 [hotKeysDictionary setObject:anItem forKey:@"TrackInfo"];
543 [trackInfoButton setTitle:[anItem userDisplayRep]];
545 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"TrackInfo"];
548 if ([df objectForKey:@"UpcomingSongs"]) {
549 anItem = [df keyComboForKey:@"UpcomingSongs"];
550 [hotKeysDictionary setObject:anItem forKey:@"UpcomingSongs"];
551 [upcomingSongsButton setTitle:[anItem userDisplayRep]];
553 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"UpcomingSongs"];
556 if ([df objectForKey:@"IncrementVolume"]) {
557 anItem = [df keyComboForKey:@"IncrementVolume"];
558 [hotKeysDictionary setObject:anItem forKey:@"IncrementVolume"];
559 [volumeIncrementButton setTitle:[anItem userDisplayRep]];
561 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementVolume"];
564 if ([df objectForKey:@"DecrementVolume"]) {
565 anItem = [df keyComboForKey:@"DecrementVolume"];
566 [hotKeysDictionary setObject:anItem forKey:@"DecrementVolume"];
567 [volumeDecrementButton setTitle:[anItem userDisplayRep]];
569 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementVolume"];
572 if ([df objectForKey:@"IncrementRating"]) {
573 anItem = [df keyComboForKey:@"IncrementRating"];
574 [hotKeysDictionary setObject:anItem forKey:@"IncrementRating"];
575 [ratingIncrementButton setTitle:[anItem userDisplayRep]];
577 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementRating"];
580 if ([df objectForKey:@"DecrementRating"]) {
581 anItem = [df keyComboForKey:@"DecrementRating"];
582 [hotKeysDictionary setObject:anItem forKey:@"DecrementRating"];
583 [ratingDecrementButton setTitle:[anItem userDisplayRep]];
585 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementRating"];
588 if ([df objectForKey:@"ToggleLoop"]) {
589 anItem = [df keyComboForKey:@"ToggleLoop"];
590 [hotKeysDictionary setObject:anItem forKey:@"ToggleLoop"];
591 [toggleLoopButton setTitle:[anItem userDisplayRep]];
593 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleLoop"];
596 if ([df objectForKey:@"ToggleShuffle"]) {
597 anItem = [df keyComboForKey:@"ToggleShuffle"];
598 [hotKeysDictionary setObject:anItem forKey:@"ToggleShuffle"];
599 [toggleShuffleButton setTitle:[anItem userDisplayRep]];
601 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleShuffle"];
604 // Check current track info buttons
605 [albumCheckbox setState:[df boolForKey:@"showAlbum"] ? NSOnState : NSOffState];
606 [nameCheckbox setState:NSOnState]; // Song info will ALWAYS show song title.
607 [nameCheckbox setEnabled:NO]; // Song info will ALWAYS show song title.
608 [artistCheckbox setState:[df boolForKey:@"showArtist"] ? NSOnState : NSOffState];
609 [trackTimeCheckbox setState:[df boolForKey:@"showTime"] ? NSOnState : NSOffState];
611 // Set the launch at login checkbox state
613 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
614 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
616 loginEnum = [loginarray objectEnumerator];
617 while ( (anItem = [loginEnum nextObject]) ) {
618 if ([[[anItem objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
619 [launchAtLoginCheckbox setState:NSOnState];
624 - (IBAction)changeMenus:(id)sender
626 [df setObject:myItems forKey:@"menu"];
628 [controller rebuildMenu];
631 - (void)setLaunchesAtLogin:(BOOL)flag
634 NSMutableDictionary *loginwindow;
635 NSMutableArray *loginarray;
636 ComponentInstance temp = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);;
641 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
642 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
644 for (i = 0; i < [loginarray count]; i++) {
645 NSDictionary *tempDict = [loginarray objectAtIndex:i];
646 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
652 AEDesc scriptDesc, resultDesc;
653 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]];
655 AECreateDesc(typeChar, [script cString], [script cStringLength],
658 OSADoScript(temp, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
660 AEDisposeDesc(&scriptDesc);
661 AEDisposeDesc(&resultDesc);
662 CloseComponent(temp);
666 NSMutableDictionary *loginwindow;
667 NSMutableArray *loginarray;
671 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
672 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
674 for (i = 0; i < [loginarray count]; i++) {
675 NSDictionary *tempDict = [loginarray objectAtIndex:i];
676 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
677 [loginarray removeObjectAtIndex:i];
678 [df setPersistentDomain:loginwindow forName:@"loginwindow"];
687 /*************************************************************************/
689 #pragma mark NSWindow DELEGATE METHODS
690 /*************************************************************************/
692 - (void)windowWillClose:(NSNotification *)note
694 [(MainController *)controller closePreferences];
698 /*************************************************************************/
700 #pragma mark NSTableView DATASOURCE METHODS
701 /*************************************************************************/
703 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
705 if (aTableView == menuTableView) {
706 return [myItems count];
708 return [availableItems count];
712 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
714 if (aTableView == menuTableView) {
715 if ([[aTableColumn identifier] isEqualToString:@"name"]) {
716 NSString *object = [myItems objectAtIndex:rowIndex];
717 if ([object isEqualToString:@"Show Player"]) {
718 return [NSString stringWithFormat:@"Show %@", [[controller currentRemote] playerSimpleName]];
722 if ([submenuItems containsObject:[myItems objectAtIndex:rowIndex]])
724 return [NSImage imageNamed:@"submenu"];
730 if ([[aTableColumn identifier] isEqualToString:@"name"]) {
731 return [availableItems objectAtIndex:rowIndex];
733 if ([submenuItems containsObject:[availableItems objectAtIndex:rowIndex]]) {
734 return [NSImage imageNamed:@"submenu"];
742 - (BOOL)tableView:(NSTableView *)tableView writeRows:(NSArray*)rows toPasteboard:(NSPasteboard*)pboard
744 if (tableView == menuTableView) {
745 [pboard declareTypes:[NSArray arrayWithObjects:@"MenuTableViewPboardType", nil] owner:self];
746 [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"MenuTableViewPboardType"];
750 if (tableView == allTableView) {
751 [pboard declareTypes:[NSArray arrayWithObjects:@"AllTableViewPboardType", nil] owner:self];
752 [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"AllTableViewPboardType"];
758 - (BOOL)tableView:(NSTableView*)tableView acceptDrop:(id <NSDraggingInfo>)info row:(int)row dropOperation:(NSTableViewDropOperation)operation
762 NSString *dragData, *temp;
764 pb = [info draggingPasteboard];
766 if ([[pb types] containsObject:@"MenuTableViewPboardType"]) {
767 dragData = [pb stringForType:@"MenuTableViewPboardType"];
768 dragRow = [dragData intValue];
769 temp = [myItems objectAtIndex:dragRow];
770 [myItems removeObjectAtIndex:dragRow];
772 if (tableView == menuTableView) {
774 [myItems insertObject:temp atIndex:row - 1];
776 [myItems insertObject:temp atIndex:row];
779 if (![temp isEqualToString:@"<separator>"]) {
780 [availableItems addObject:temp];
783 } else if ([[pb types] containsObject:@"AllTableViewPboardType"]) {
784 dragData = [pb stringForType:@"AllTableViewPboardType"];
785 dragRow = [dragData intValue];
786 temp = [availableItems objectAtIndex:dragRow];
788 if (![temp isEqualToString:@"<separator>"]) {
789 [availableItems removeObjectAtIndex:dragRow];
791 [myItems insertObject:temp atIndex:row];
794 [menuTableView reloadData];
795 [allTableView reloadData];
796 [self changeMenus:self];
800 - (NSDragOperation)tableView:(NSTableView*)tableView validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)operation
802 if (tableView == allTableView) {
803 if ([[[info draggingPasteboard] types] containsObject:@"AllTableViewPboardType"]) {
804 return NSDragOperationNone;
807 if ([[[info draggingPasteboard] types] containsObject:@"MenuTableViewPboardType"]) {
808 NSString *item = [myItems objectAtIndex:[[[info draggingPasteboard] stringForType:@"MenuTableViewPboardType"] intValue]];
809 if ([item isEqualToString:@"PreferencesÉ"] || [item isEqualToString:@"Quit"]) {
810 return NSDragOperationNone;
814 [tableView setDropRow:-1 dropOperation:NSTableViewDropOn];
815 return NSDragOperationGeneric;
818 if (operation == NSTableViewDropOn || row == -1)
820 return NSDragOperationNone;
823 return NSDragOperationGeneric;
827 /*************************************************************************/
829 #pragma mark DEALLOCATION METHODS
830 /*************************************************************************/
834 [self setKeyCombo:nil];
835 [hotKeysDictionary release];
836 [keyComboPanel release];
837 [menuTableView setDataSource:nil];
838 [allTableView setDataSource:nil];
839 [controller release];
840 [availableItems release];
841 [submenuItems release];