1 #import "PreferencesController.h"
2 #import "NewMainController.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];
304 while ( (enumKey = [enumerator nextObject]) ) {
305 if (![enumKey isEqualToString:currentHotKey]) {
306 if (![combo isEqual:[KeyCombo clearKeyCombo]] &&
307 [combo isEqual:[hotKeysDictionary objectForKey:enumKey]]) {
308 [window setLevel:NSNormalWindowLevel];
309 if ( NSRunAlertPanel(@"Duplicate Key Combo", @"The specified key combo is already in use...", @"Replace", @"Cancel", nil) ) {
310 [hotKeysDictionary setObject:[KeyCombo clearKeyCombo] forKey:currentHotKey];
311 if ([enumKey isEqualToString:@"PlayPause"]) {
312 [playPauseButton setTitle:@""];
313 } else if ([enumKey isEqualToString:@"NextTrack"]) {
314 [nextTrackButton setTitle:@""];
315 } else if ([enumKey isEqualToString:@"PrevTrack"]) {
316 [previousTrackButton setTitle:@""];
317 } else if ([enumKey isEqualToString:@"ToggleVisualizer"]) {
318 [visualizerButton setTitle:@""];
319 } else if ([enumKey isEqualToString:@"TrackInfo"]) {
320 [trackInfoButton setTitle:@""];
321 } else if ([enumKey isEqualToString:@"UpcomingSongs"]) {
322 [upcomingSongsButton setTitle:@""];
323 } else if ([enumKey isEqualToString:@"IncrementVolume"]) {
324 [volumeIncrementButton setTitle:@""];
325 } else if ([enumKey isEqualToString:@"DecrementVolume"]) {
326 [volumeDecrementButton setTitle:@""];
327 } else if ([enumKey isEqualToString:@"IncrementRating"]) {
328 [ratingIncrementButton setTitle:@""];
329 } else if ([enumKey isEqualToString:@"DecrementRating"]) {
330 [ratingDecrementButton setTitle:@""];
331 } else if ([enumKey isEqualToString:@"ToggleShuffle"]) {
332 [toggleShuffleButton setTitle:@""];
333 } else if ([enumKey isEqualToString:@"ToggleLoop"]) {
334 [toggleLoopButton setTitle:@""];
336 [df setKeyCombo:[KeyCombo clearKeyCombo] forKey:enumKey];
340 [window setLevel:NSStatusWindowLevel];
345 [hotKeysDictionary setObject:combo forKey:currentHotKey];
346 [df setKeyCombo:combo forKey:currentHotKey];
348 if ([currentHotKey isEqualToString:@"PlayPause"]) {
349 [playPauseButton setTitle:string];
350 [[HotKeyCenter sharedCenter] addHotKey:@"PlayPause" combo:combo target:[MainController sharedController] action:@selector(playPause)];
351 } else if ([currentHotKey isEqualToString:@"NextTrack"]) {
352 [nextTrackButton setTitle:string];
353 [[HotKeyCenter sharedCenter] addHotKey:@"NextTrack" combo:combo target:[MainController sharedController] action:@selector(nextSong)];
354 } else if ([currentHotKey isEqualToString:@"PrevTrack"]) {
355 [previousTrackButton setTitle:string];
356 [[HotKeyCenter sharedCenter] addHotKey:@"PrevTrack" combo:combo target:[MainController sharedController] action:@selector(prevSong)];
357 } else if ([currentHotKey isEqualToString:@"ToggleVisualizer"]) {
358 [visualizerButton setTitle:string];
359 //[[HotKeyCenter sharedCenter] addHotKey:@"ToggleVisualizer" combo:combo target:[MainController sharedController] selector:@selector(NULL)];
360 } else if ([currentHotKey isEqualToString:@"TrackInfo"]) {
361 [trackInfoButton setTitle:string];
362 [[HotKeyCenter sharedCenter] addHotKey:@"TrackInfo" combo:combo target:[MainController sharedController] action:@selector(showCurrentTrackInfo)];
363 } else if ([currentHotKey isEqualToString:@"UpcomingSongs"]) {
364 [upcomingSongsButton setTitle:string];
365 [[HotKeyCenter sharedCenter] addHotKey:@"UpcomingSongs" combo:combo target:[MainController sharedController] action:@selector(showUpcomingSongs)];
366 } else if ([currentHotKey isEqualToString:@"IncrementVolume"]) {
367 [volumeIncrementButton setTitle:string];
368 [[HotKeyCenter sharedCenter] addHotKey:@"IncrementVolume" combo:combo target:[MainController sharedController] action:@selector(incrementVolume)];
369 } else if ([currentHotKey isEqualToString:@"DecrementVolume"]) {
370 [volumeDecrementButton setTitle:string];
371 [[HotKeyCenter sharedCenter] addHotKey:@"DecrementVolume" combo:combo target:[MainController sharedController] action:@selector(decrementVolume)];
372 } else if ([currentHotKey isEqualToString:@"IncrementRating"]) {
373 [ratingIncrementButton setTitle:string];
374 [[HotKeyCenter sharedCenter] addHotKey:@"IncrementRating" combo:combo target:[MainController sharedController] action:@selector(incrementRating)];
375 } else if ([currentHotKey isEqualToString:@"DecrementRating"]) {
376 [ratingDecrementButton setTitle:string];
377 [[HotKeyCenter sharedCenter] addHotKey:@"DecrementRating" combo:combo target:[MainController sharedController] action:@selector(decrementRating)];
378 } else if ([currentHotKey isEqualToString:@"ToggleShuffle"]) {
379 [toggleShuffleButton setTitle:string];
380 [[HotKeyCenter sharedCenter] addHotKey:@"ToggleShuffle" combo:combo target:[MainController sharedController] action:@selector(toggleShuffle)];
381 } else if ([currentHotKey isEqualToString:@"ToggleLoop"]) {
382 [toggleLoopButton setTitle:string];
383 [[HotKeyCenter sharedCenter] addHotKey:@"ToggleLoop" combo:combo target:[MainController sharedController] action:@selector(toggleLoop)];
385 [self cancelHotKey:sender];
390 /*************************************************************************/
392 #pragma mark HOTKEY SUPPORT METHODS
393 /*************************************************************************/
395 - (void)setCurrentHotKey:(NSString *)key
397 [currentHotKey autorelease];
398 currentHotKey = [key copy];
399 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyEvent:) name:@"KeyBroadcasterEvent" object:nil];
400 [NSApp beginSheet:keyComboPanel modalForWindow:window modalDelegate:self didEndSelector:nil contextInfo:nil];
403 - (void)keyEvent:(NSNotification *)note
405 NSDictionary *info = [note userInfo];
410 keyCode = [[info objectForKey:@"KeyCode"] shortValue];
411 modifiers = [[info objectForKey:@"Modifiers"] longValue];
413 newCombo = [[KeyCombo alloc] initWithKeyCode:keyCode andModifiers:modifiers];
414 [self setKeyCombo:newCombo];
417 - (void)setKeyCombo:(KeyCombo *)newCombo
421 combo = [newCombo copy];
423 string = [combo userDisplayRep];
427 [keyComboField setStringValue:string];
431 /*************************************************************************/
433 #pragma mark PRIVATE METHOD IMPLEMENTATIONS
434 /*************************************************************************/
438 if ( ! [NSBundle loadNibNamed:@"Preferences" owner:self] ) {
439 NSLog( @"Failed to load Preferences.nib" );
445 - (void)setupCustomizationTables
447 NSImageCell *imgCell = [[[NSImageCell alloc] initImageCell:nil] autorelease];
449 // Set the table view cells up
450 [imgCell setImageScaling:NSScaleNone];
451 [[menuTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
452 [[allTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
454 // Register for drag and drop
455 [menuTableView registerForDraggedTypes:[NSArray arrayWithObjects:
456 @"MenuTableViewPboardType",
457 @"AllTableViewPboardType",
459 [allTableView registerForDraggedTypes:[NSArray arrayWithObjects:
460 @"MenuTableViewPboardType",
461 @"AllTableViewPboardType",
465 - (void)setupMenuItems
467 NSEnumerator *itemEnum;
469 // Set the list of items you can have.
470 availableItems = [[NSMutableArray alloc] initWithObjects:
471 @"Current Track Info",
485 // Get our preferred menu
486 myItems = [[df arrayForKey:@"menu"] mutableCopy];
488 // Delete items in the availableItems array that are already part of the menu
489 itemEnum = [myItems objectEnumerator];
490 while ( (anItem = [itemEnum nextObject]) ) {
491 if ( ! [anItem isEqualToString:@"<separator>"] ) {
492 [availableItems removeObject:anItem];
496 // Items that show should a submenu image
497 submenuItems = [[NSArray alloc] initWithObjects:
507 NSMutableDictionary *loginwindow;
508 NSMutableArray *loginarray;
509 NSEnumerator *loginEnum;
512 // Fill in the number of songs in advance to show field
513 [songsInAdvance setIntValue:[df integerForKey:@"SongsInAdvance"]];
515 // Fill in hot key buttons
516 if ([df objectForKey:@"PlayPause"]){
517 anItem = [df keyComboForKey:@"PlayPause"];
518 [hotKeysDictionary setObject:anItem forKey:@"PlayPause"];
519 [playPauseButton setTitle:[anItem userDisplayRep]];
521 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PlayPause"];
524 if ([df objectForKey:@"NextTrack"]) {
525 anItem = [df keyComboForKey:@"NextTrack"];
526 [hotKeysDictionary setObject:anItem forKey:@"NextTrack"];
527 [nextTrackButton setTitle:[anItem userDisplayRep]];
529 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"NextTrack"];
532 if ([df objectForKey:@"PrevTrack"]) {
533 anItem = [df keyComboForKey:@"PrevTrack"];
534 [hotKeysDictionary setObject:anItem forKey:@"PrevTrack"];
535 [previousTrackButton setTitle:[anItem userDisplayRep]];
537 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PrevTrack"];
540 if ([df objectForKey:@"ToggleVisualizer"]) {
541 anItem = [df keyComboForKey:@"ToggleVisualizer"];
542 [hotKeysDictionary setObject:anItem forKey:@"ToggleVisualizer"];
543 [visualizerButton setTitle:[anItem userDisplayRep]];
545 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleVisualizer"];
548 if ([df objectForKey:@"TrackInfo"]) {
549 anItem = [df keyComboForKey:@"TrackInfo"];
550 [hotKeysDictionary setObject:anItem forKey:@"TrackInfo"];
551 [trackInfoButton setTitle:[anItem userDisplayRep]];
553 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"TrackInfo"];
556 if ([df objectForKey:@"UpcomingSongs"]) {
557 anItem = [df keyComboForKey:@"UpcomingSongs"];
558 [hotKeysDictionary setObject:anItem forKey:@"UpcomingSongs"];
559 [upcomingSongsButton setTitle:[anItem userDisplayRep]];
561 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"UpcomingSongs"];
564 if ([df objectForKey:@"IncrementVolume"]) {
565 anItem = [df keyComboForKey:@"IncrementVolume"];
566 [hotKeysDictionary setObject:anItem forKey:@"IncrementVolume"];
567 [volumeIncrementButton setTitle:[anItem userDisplayRep]];
569 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementVolume"];
572 if ([df objectForKey:@"DecrementVolume"]) {
573 anItem = [df keyComboForKey:@"DecrementVolume"];
574 [hotKeysDictionary setObject:anItem forKey:@"DecrementVolume"];
575 [volumeDecrementButton setTitle:[anItem userDisplayRep]];
577 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementVolume"];
580 if ([df objectForKey:@"IncrementRating"]) {
581 anItem = [df keyComboForKey:@"IncrementRating"];
582 [hotKeysDictionary setObject:anItem forKey:@"IncrementRating"];
583 [ratingIncrementButton setTitle:[anItem userDisplayRep]];
585 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementRating"];
588 if ([df objectForKey:@"DecrementRating"]) {
589 anItem = [df keyComboForKey:@"DecrementRating"];
590 [hotKeysDictionary setObject:anItem forKey:@"DecrementRating"];
591 [ratingDecrementButton setTitle:[anItem userDisplayRep]];
593 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementRating"];
596 if ([df objectForKey:@"ToggleLoop"]) {
597 anItem = [df keyComboForKey:@"ToggleLoop"];
598 [hotKeysDictionary setObject:anItem forKey:@"ToggleLoop"];
599 [toggleLoopButton setTitle:[anItem userDisplayRep]];
601 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleLoop"];
604 if ([df objectForKey:@"ToggleShuffle"]) {
605 anItem = [df keyComboForKey:@"ToggleShuffle"];
606 [hotKeysDictionary setObject:anItem forKey:@"ToggleShuffle"];
607 [toggleShuffleButton setTitle:[anItem userDisplayRep]];
609 [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleShuffle"];
612 // Check current track info buttons
613 [albumCheckbox setState:[df boolForKey:@"showAlbum"] ? NSOnState : NSOffState];
614 [nameCheckbox setState:NSOnState]; // Song info will ALWAYS show song title.
615 [nameCheckbox setEnabled:NO]; // Song info will ALWAYS show song title.
616 [artistCheckbox setState:[df boolForKey:@"showArtist"] ? NSOnState : NSOffState];
617 [trackTimeCheckbox setState:[df boolForKey:@"showTime"] ? NSOnState : NSOffState];
619 // Set the launch at login checkbox state
621 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
622 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
624 loginEnum = [loginarray objectEnumerator];
625 while ( (anItem = [loginEnum nextObject]) ) {
626 if ([[[anItem objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
627 [launchAtLoginCheckbox setState:NSOnState];
632 - (IBAction)changeMenus:(id)sender
634 [df setObject:myItems forKey:@"menu"];
638 - (void)setLaunchesAtLogin:(BOOL)flag
641 NSMutableDictionary *loginwindow;
642 NSMutableArray *loginarray;
643 ComponentInstance temp = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);;
648 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
649 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
651 for (i = 0; i < [loginarray count]; i++) {
652 NSDictionary *tempDict = [loginarray objectAtIndex:i];
653 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
659 AEDesc scriptDesc, resultDesc;
660 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]];
662 AECreateDesc(typeChar, [script cString], [script cStringLength],
665 OSADoScript(temp, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
667 AEDisposeDesc(&scriptDesc);
668 AEDisposeDesc(&resultDesc);
669 CloseComponent(temp);
673 NSMutableDictionary *loginwindow;
674 NSMutableArray *loginarray;
678 loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
679 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
681 for (i = 0; i < [loginarray count]; i++) {
682 NSDictionary *tempDict = [loginarray objectAtIndex:i];
683 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
684 [loginarray removeObjectAtIndex:i];
685 [df setPersistentDomain:loginwindow forName:@"loginwindow"];
694 /*************************************************************************/
696 #pragma mark NSWindow DELEGATE METHODS
697 /*************************************************************************/
699 - (void)windowWillClose:(NSNotification *)note
701 [(MainController *)controller closePreferences];
705 /*************************************************************************/
707 #pragma mark NSTableView DATASOURCE METHODS
708 /*************************************************************************/
710 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
712 if (aTableView == menuTableView) {
713 return [myItems count];
715 return [availableItems count];
719 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
721 if (aTableView == menuTableView) {
722 if ([[aTableColumn identifier] isEqualToString:@"name"]) {
723 NSString *object = [myItems objectAtIndex:rowIndex];
724 if ([object isEqualToString:@"Show Player"]) {
725 return [NSString stringWithFormat:@"Show %@", [[controller currentRemote] playerSimpleName]];
729 if ([submenuItems containsObject:[myItems objectAtIndex:rowIndex]])
731 return [NSImage imageNamed:@"submenu"];
737 if ([[aTableColumn identifier] isEqualToString:@"name"]) {
738 return [availableItems objectAtIndex:rowIndex];
740 if ([submenuItems containsObject:[availableItems objectAtIndex:rowIndex]]) {
741 return [NSImage imageNamed:@"submenu"];
749 - (BOOL)tableView:(NSTableView *)tableView writeRows:(NSArray*)rows toPasteboard:(NSPasteboard*)pboard
751 if (tableView == menuTableView) {
752 [pboard declareTypes:[NSArray arrayWithObjects:@"MenuTableViewPboardType", nil] owner:self];
753 [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"MenuTableViewPboardType"];
757 if (tableView == allTableView) {
758 [pboard declareTypes:[NSArray arrayWithObjects:@"AllTableViewPboardType", nil] owner:self];
759 [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"AllTableViewPboardType"];
765 - (BOOL)tableView:(NSTableView*)tableView acceptDrop:(id <NSDraggingInfo>)info row:(int)row dropOperation:(NSTableViewDropOperation)operation
769 NSString *dragData, *temp;
771 pb = [info draggingPasteboard];
773 if ([[pb types] containsObject:@"MenuTableViewPboardType"]) {
774 dragData = [pb stringForType:@"MenuTableViewPboardType"];
775 dragRow = [dragData intValue];
776 temp = [myItems objectAtIndex:dragRow];
777 [myItems removeObjectAtIndex:dragRow];
779 if (tableView == menuTableView) {
781 [myItems insertObject:temp atIndex:row - 1];
783 [myItems insertObject:temp atIndex:row];
786 if (![temp isEqualToString:@"<separator>"]) {
787 [availableItems addObject:temp];
790 } else if ([[pb types] containsObject:@"AllTableViewPboardType"]) {
791 dragData = [pb stringForType:@"AllTableViewPboardType"];
792 dragRow = [dragData intValue];
793 temp = [availableItems objectAtIndex:dragRow];
795 if (![temp isEqualToString:@"<separator>"]) {
796 [availableItems removeObjectAtIndex:dragRow];
798 [myItems insertObject:temp atIndex:row];
801 [menuTableView reloadData];
802 [allTableView reloadData];
803 [self changeMenus:self];
807 - (NSDragOperation)tableView:(NSTableView*)tableView validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)operation
809 if (tableView == allTableView) {
810 if ([[[info draggingPasteboard] types] containsObject:@"AllTableViewPboardType"]) {
811 return NSDragOperationNone;
814 if ([[[info draggingPasteboard] types] containsObject:@"MenuTableViewPboardType"]) {
815 NSString *item = [myItems objectAtIndex:[[[info draggingPasteboard] stringForType:@"MenuTableViewPboardType"] intValue]];
816 if ([item isEqualToString:@"Preferences"] || [item isEqualToString:@"Quit"]) {
817 return NSDragOperationNone;
821 [tableView setDropRow:-1 dropOperation:NSTableViewDropOn];
822 return NSDragOperationGeneric;
825 if (operation == NSTableViewDropOn || row == -1)
827 return NSDragOperationNone;
830 return NSDragOperationGeneric;
834 /*************************************************************************/
836 #pragma mark DEALLOCATION METHODS
837 /*************************************************************************/
841 [self setKeyCombo:nil];
842 [hotKeysDictionary release];
843 [keyComboPanel release];
844 [menuTableView setDataSource:nil];
845 [allTableView setDataSource:nil];
846 [controller release];
847 [availableItems release];
848 [submenuItems release];