Added more the MenuController. All of the main menu things are added in now.
[MenuTunes.git] / PreferencesController.m
1 #import "PreferencesController.h"
2 #import "MainController.h"
3 #import "HotKeyCenter.h"
4 #import <ITKit/ITWindowPositioning.h>
5
6 #define SENDER_STATE (([sender state] == NSOnState) ? YES : NO)
7
8 /*************************************************************************/
9 #pragma mark -
10 #pragma mark PRIVATE INTERFACE
11 /*************************************************************************/
12
13 @interface PreferencesController (Private)
14 - (void)setupWindow;
15 - (void)setupCustomizationTables;
16 - (void)setupMenuItems;
17 - (void)setupUI;
18 - (IBAction)changeMenus:(id)sender;
19 - (void)setLaunchesAtLogin:(BOOL)flag;
20 @end
21
22
23 @implementation PreferencesController
24
25
26 /*************************************************************************/
27 #pragma mark -
28 #pragma mark STATIC VARIABLES
29 /*************************************************************************/
30
31 static PreferencesController *prefs = nil;
32
33
34 /*************************************************************************/
35 #pragma mark -
36 #pragma mark INITIALIZATION METHODS
37 /*************************************************************************/
38
39 + (PreferencesController *)sharedPrefs;
40 {
41     if (! prefs) {
42         prefs = [[self alloc] init];
43     }
44     return prefs;
45 }
46
47 - (id)init
48 {
49     if ( (self = [super init]) ) {
50         df = [[NSUserDefaults standardUserDefaults] retain];
51         hotKeysDictionary = [[NSMutableDictionary alloc] init];
52         controller = nil;
53     }
54     return self;
55 }
56
57
58 /*************************************************************************/
59 #pragma mark -
60 #pragma mark ACCESSOR METHODS
61 /*************************************************************************/
62
63 - (id)controller
64 {
65     return controller;
66 }
67
68 - (void)setController:(id)object
69 {
70     [controller autorelease];
71     controller = [object retain];
72 }
73
74
75 /*************************************************************************/
76 #pragma mark -
77 #pragma mark INSTANCE METHODS
78 /*************************************************************************/
79
80 - (IBAction)showPrefsWindow:(id)sender
81 {
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];
88     }
89     
90     [window setLevel:NSStatusWindowLevel];
91     [window center];
92     [window makeKeyAndOrderFront:self];
93     [NSApp activateIgnoringOtherApps:YES];
94 }
95
96 - (IBAction)changeGeneralSetting:(id)sender
97 {
98     BOOL rebuildRequired = NO;
99
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;
126     }
127
128     if ( rebuildRequired ) {
129         //[controller rebuildMenu];
130         // redraw song info status window, or upcoming songs here
131     }
132
133     [df synchronize];
134 }
135
136 - (IBAction)changeStatusWindowSetting:(id)sender
137 {
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"];
157     }
158 }
159
160 - (IBAction)changeHotKey:(id)sender
161 {
162     switch ([sender tag])
163     {
164         case 4010:
165             [self setKeyCombo:[hotKeysDictionary objectForKey:@"PlayPause"]];
166             [self setCurrentHotKey:@"PlayPause"];
167             break;
168         case 4020:
169             [self setKeyCombo:[hotKeysDictionary objectForKey:@"NextTrack"]];
170             [self setCurrentHotKey:@"NextTrack"];
171             break;
172         case 4030:
173             [self setKeyCombo:[hotKeysDictionary objectForKey:@"PrevTrack"]];
174             [self setCurrentHotKey:@"PrevTrack"];
175             break;
176         case 4035:
177             [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleVisualizer"]];
178             [self setCurrentHotKey:@"ToggleVisualizer"];
179             break;
180         case 4040:
181             [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleLoop"]];
182             [self setCurrentHotKey:@"ToggleLoop"];
183             break;
184         case 4050:
185             [self setKeyCombo:[hotKeysDictionary objectForKey:@"ToggleShuffle"]];
186             [self setCurrentHotKey:@"ToggleShuffle"];
187             break;
188         case 4060:
189             [self setKeyCombo:[hotKeysDictionary objectForKey:@"TrackInfo"]];
190             [self setCurrentHotKey:@"TrackInfo"];
191             break;
192         case 4070:
193             [self setKeyCombo:[hotKeysDictionary objectForKey:@"UpcomingSongs"]];
194             [self setCurrentHotKey:@"UpcomingSongs"];
195             break;
196         case 4080:
197             [self setKeyCombo:[hotKeysDictionary objectForKey:@"IncrementVolume"]];
198             [self setCurrentHotKey:@"IncrementVolume"];
199             break;
200         case 4090:
201             [self setKeyCombo:[hotKeysDictionary objectForKey:@"DecrementVolume"]];
202             [self setCurrentHotKey:@"DecrementVolume"];
203             break;
204         case 4100:
205             [self setKeyCombo:[hotKeysDictionary objectForKey:@"IncrementRating"]];
206             [self setCurrentHotKey:@"IncrementRating"];
207             break;
208         case 4110:
209             [self setKeyCombo:[hotKeysDictionary objectForKey:@"DecrementRating"]];
210             [self setCurrentHotKey:@"DecrementRating"];
211             break;
212     }
213 }
214
215 - (void)registerDefaults
216 {
217     BOOL found = NO;
218     NSMutableDictionary *loginWindow;
219     NSMutableArray *loginArray;
220     NSEnumerator *loginEnum;
221     id anItem;
222
223     [df setObject:[NSArray arrayWithObjects:
224         @"Play/Pause",
225         @"Next Track",
226         @"Previous Track",
227         @"Fast Forward",
228         @"Rewind",
229         @"Show Player",
230         @"<separator>",
231         @"Upcoming Songs",
232         @"Playlists",
233         @"Song Rating",
234         @"<separator>",
235         @"Preferences",
236         @"Quit",
237         @"<separator>",
238         @"Current Track Info",
239         nil] forKey:@"menu"];
240
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"];
246
247     [df synchronize];
248     
249     loginWindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
250     loginArray = [loginWindow objectForKey:@"AutoLaunchedApplicationDictionary"];
251     loginEnum = [loginArray objectEnumerator];
252
253     while ( (anItem = [loginEnum nextObject]) ) {
254         if ( [[[anItem objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]] ) {
255             found = YES;
256         }
257     }
258
259     [loginWindow release];
260     
261     // This is teh sux
262     // We must fix it so it is no longer suxy
263     if (!found) {
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);
268
269             AECreateDesc(typeChar, [script cString], [script cStringLength],
270                          &scriptDesc);
271
272             OSADoScript(asComponent, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
273
274             AEDisposeDesc(&scriptDesc);
275             AEDisposeDesc(&resultDesc);
276
277             CloseComponent(asComponent);
278         }
279     }
280 }
281
282 - (IBAction)cancelHotKey:(id)sender
283 {
284     [[NSNotificationCenter defaultCenter] removeObserver:self];
285     [NSApp endSheet:keyComboPanel];
286     [keyComboPanel orderOut:nil];
287 }
288
289 - (IBAction)clearHotKey:(id)sender
290 {
291     [self setKeyCombo:[KeyCombo clearKeyCombo]];
292 }
293
294 - (IBAction)okHotKey:(id)sender
295 {
296     NSString *string = [combo userDisplayRep];
297     NSEnumerator *enumerator = [hotKeysDictionary keyEnumerator];
298     NSString *enumKey;
299     BOOL duplicateCombo = NO;
300     
301     if (string == nil) {
302         string = @"";
303     }
304     
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:@""];
336                     }
337                     [df setKeyCombo:[KeyCombo clearKeyCombo] forKey:enumKey];
338                 } else {
339                     return;
340                 }
341                 [window setLevel:NSStatusWindowLevel];
342             }
343         }
344     }
345     
346     if (!duplicateCombo) {
347         [hotKeysDictionary setObject:combo forKey:currentHotKey];
348         [df setKeyCombo:combo forKey:currentHotKey];
349         
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];
374         }
375     }
376     [self cancelHotKey:sender];
377 }
378
379
380
381 /*************************************************************************/
382 #pragma mark -
383 #pragma mark HOTKEY SUPPORT METHODS
384 /*************************************************************************/
385
386 - (void)setCurrentHotKey:(NSString *)key
387 {
388     [currentHotKey autorelease];
389     currentHotKey = [key copy];
390     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyEvent:) name:@"KeyBroadcasterEvent" object:nil];
391     [NSApp beginSheet:keyComboPanel modalForWindow:window modalDelegate:self didEndSelector:nil contextInfo:nil];
392 }
393
394 - (void)keyEvent:(NSNotification *)note
395 {
396     NSDictionary *info = [note userInfo];
397     short keyCode;
398     long modifiers;
399     KeyCombo *newCombo;
400     
401     keyCode = [[info objectForKey:@"KeyCode"] shortValue];
402     modifiers = [[info objectForKey:@"Modifiers"] longValue];
403     
404     newCombo = [[KeyCombo alloc] initWithKeyCode:keyCode andModifiers:modifiers];
405     [self setKeyCombo:newCombo];
406 }
407
408 - (void)setKeyCombo:(KeyCombo *)newCombo
409 {
410     NSString *string;
411     [combo release];
412     combo = [newCombo copy];
413     
414     string = [combo userDisplayRep];
415     if (string == nil) {
416         string = @"";
417     }
418     [keyComboField setStringValue:string];
419 }
420
421
422 /*************************************************************************/
423 #pragma mark -
424 #pragma mark PRIVATE METHOD IMPLEMENTATIONS
425 /*************************************************************************/
426
427 - (void)setupWindow
428 {
429     if ( ! [NSBundle loadNibNamed:@"Preferences" owner:self] ) {
430         NSLog( @"Failed to load Preferences.nib" );
431         NSBeep();
432         return;
433     }
434 }
435
436 - (void)setupCustomizationTables
437 {
438     NSImageCell *imgCell = [[[NSImageCell alloc] initImageCell:nil] autorelease];
439     
440     // Set the table view cells up
441     [imgCell setImageScaling:NSScaleNone];
442     [[menuTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
443     [[allTableView tableColumnWithIdentifier:@"submenu"] setDataCell:imgCell];
444
445     // Register for drag and drop
446     [menuTableView registerForDraggedTypes:[NSArray arrayWithObjects:
447         @"MenuTableViewPboardType",
448         @"AllTableViewPboardType",
449         nil]];
450     [allTableView registerForDraggedTypes:[NSArray arrayWithObjects:
451         @"MenuTableViewPboardType",
452         @"AllTableViewPboardType",
453         nil]];
454 }
455
456 - (void)setupMenuItems
457 {
458     NSEnumerator *itemEnum;
459     id            anItem;
460     // Set the list of items you can have.
461     availableItems = [[NSMutableArray alloc] initWithObjects:
462         @"Current Track Info",
463         @"Upcoming Songs",
464         @"Playlists",
465         @"EQ Presets",
466         @"Song Rating",
467         @"Play/Pause",
468         @"Next Track",
469         @"Previous Track",
470         @"Fast Forward",
471         @"Rewind",
472         @"Show Player",
473         @"<separator>",
474         nil];
475     
476     // Get our preferred menu
477     myItems = [[df arrayForKey:@"menu"] mutableCopy];
478     
479     // Delete items in the availableItems array that are already part of the menu
480     itemEnum = [myItems objectEnumerator];
481     while ( (anItem = [itemEnum nextObject]) ) {
482         if ( ! [anItem isEqualToString:@"<separator>"] ) {
483             [availableItems removeObject:anItem];
484         }
485     }
486     
487     // Items that show should a submenu image
488     submenuItems = [[NSArray alloc] initWithObjects:
489         @"Upcoming Songs",
490         @"Playlists",
491         @"EQ Presets",
492         @"Song Rating",
493         nil];
494 }
495
496 - (void)setupUI
497 {
498     NSMutableDictionary *loginwindow;
499     NSMutableArray *loginarray;
500     NSEnumerator *loginEnum;
501     id anItem;
502     
503     // Fill in the number of songs in advance to show field
504     [songsInAdvance setIntValue:[df integerForKey:@"SongsInAdvance"]];
505     
506     // Fill in hot key buttons
507     if ([df objectForKey:@"PlayPause"]){
508         anItem = [df keyComboForKey:@"PlayPause"];
509         [hotKeysDictionary setObject:anItem forKey:@"PlayPause"];
510         [playPauseButton setTitle:[anItem userDisplayRep]];
511     } else {
512         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PlayPause"];
513     }
514     
515     if ([df objectForKey:@"NextTrack"]) {
516         anItem = [df keyComboForKey:@"NextTrack"];
517         [hotKeysDictionary setObject:anItem forKey:@"NextTrack"];
518         [nextTrackButton setTitle:[anItem userDisplayRep]];
519     } else {
520         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"NextTrack"];
521     }
522     
523     if ([df objectForKey:@"PrevTrack"]) {
524         anItem = [df keyComboForKey:@"PrevTrack"];
525         [hotKeysDictionary setObject:anItem forKey:@"PrevTrack"];
526         [previousTrackButton setTitle:[anItem userDisplayRep]];
527     } else {
528         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"PrevTrack"];
529     }
530     
531     if ([df objectForKey:@"ToggleVisualizer"]) {
532         anItem = [df keyComboForKey:@"ToggleVisualizer"];
533         [hotKeysDictionary setObject:anItem forKey:@"ToggleVisualizer"];
534         [visualizerButton setTitle:[anItem userDisplayRep]];
535     } else {
536         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleVisualizer"];
537     }
538     
539     if ([df objectForKey:@"TrackInfo"]) {
540         anItem = [df keyComboForKey:@"TrackInfo"];
541         [hotKeysDictionary setObject:anItem forKey:@"TrackInfo"];
542         [trackInfoButton setTitle:[anItem userDisplayRep]];
543     } else {
544         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"TrackInfo"];
545     }
546     
547     if ([df objectForKey:@"UpcomingSongs"]) {
548         anItem = [df keyComboForKey:@"UpcomingSongs"];
549         [hotKeysDictionary setObject:anItem forKey:@"UpcomingSongs"];
550         [upcomingSongsButton setTitle:[anItem userDisplayRep]];
551     } else {
552         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"UpcomingSongs"];
553     }
554     
555     if ([df objectForKey:@"IncrementVolume"]) {
556         anItem = [df keyComboForKey:@"IncrementVolume"];
557         [hotKeysDictionary setObject:anItem forKey:@"IncrementVolume"];
558         [volumeIncrementButton setTitle:[anItem userDisplayRep]];
559     } else {
560         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementVolume"];
561     }
562     
563     if ([df objectForKey:@"DecrementVolume"]) {
564         anItem = [df keyComboForKey:@"DecrementVolume"];
565         [hotKeysDictionary setObject:anItem forKey:@"DecrementVolume"];
566         [volumeDecrementButton setTitle:[anItem userDisplayRep]];
567     } else {
568         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementVolume"];
569     }
570     
571     if ([df objectForKey:@"IncrementRating"]) {
572         anItem = [df keyComboForKey:@"IncrementRating"];
573         [hotKeysDictionary setObject:anItem forKey:@"IncrementRating"];
574         [ratingIncrementButton setTitle:[anItem userDisplayRep]];
575     } else {
576         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"IncrementRating"];
577     }
578     
579     if ([df objectForKey:@"DecrementRating"]) {
580         anItem = [df keyComboForKey:@"DecrementRating"];
581         [hotKeysDictionary setObject:anItem forKey:@"DecrementRating"];
582         [ratingDecrementButton setTitle:[anItem userDisplayRep]];
583     } else {
584         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"DecrementRating"];
585     }
586     
587     if ([df objectForKey:@"ToggleLoop"]) {
588         anItem = [df keyComboForKey:@"ToggleLoop"];
589         [hotKeysDictionary setObject:anItem forKey:@"ToggleLoop"];
590         [toggleLoopButton setTitle:[anItem userDisplayRep]];
591     } else {
592         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleLoop"];
593     }
594     
595     if ([df objectForKey:@"ToggleShuffle"]) {
596         anItem = [df keyComboForKey:@"ToggleShuffle"];
597         [hotKeysDictionary setObject:anItem forKey:@"ToggleShuffle"];
598         [toggleShuffleButton setTitle:[anItem userDisplayRep]];
599     } else {
600         [hotKeysDictionary setObject:[KeyCombo keyCombo] forKey:@"ToggleShuffle"];
601     }
602     
603     // Check current track info buttons
604     [albumCheckbox setState:[df boolForKey:@"showAlbum"] ? NSOnState : NSOffState];
605     [nameCheckbox setState:NSOnState];  // Song info will ALWAYS show song title.
606     [nameCheckbox setEnabled:NO];  // Song info will ALWAYS show song title.
607     [artistCheckbox setState:[df boolForKey:@"showArtist"] ? NSOnState : NSOffState];
608     [trackTimeCheckbox setState:[df boolForKey:@"showTime"] ? NSOnState : NSOffState];
609     
610     // Set the launch at login checkbox state
611     [df synchronize];
612     loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
613     loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
614     
615     loginEnum = [loginarray objectEnumerator];
616     while ( (anItem = [loginEnum nextObject]) ) {
617         if ([[[anItem objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
618             [launchAtLoginCheckbox setState:NSOnState];
619         }
620     }
621 }
622
623 - (IBAction)changeMenus:(id)sender
624 {
625     [df setObject:myItems forKey:@"menu"];
626     [df synchronize];
627 }
628
629 - (void)setLaunchesAtLogin:(BOOL)flag
630 {
631     if ( flag ) {
632         NSMutableDictionary *loginwindow;
633         NSMutableArray *loginarray;
634         ComponentInstance temp = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);;
635         int i;
636         BOOL skip = NO;
637
638         [df synchronize];
639         loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
640         loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
641
642         for (i = 0; i < [loginarray count]; i++) {
643             NSDictionary *tempDict = [loginarray objectAtIndex:i];
644             if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
645                 skip = YES;
646             }
647         }
648
649         if (!skip) {
650             AEDesc scriptDesc, resultDesc;
651             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]];
652
653             AECreateDesc(typeChar, [script cString], [script cStringLength],
654                          &scriptDesc);
655
656             OSADoScript(temp, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
657
658             AEDisposeDesc(&scriptDesc);
659             AEDisposeDesc(&resultDesc);
660             CloseComponent(temp);
661         }
662
663     } else {
664         NSMutableDictionary *loginwindow;
665         NSMutableArray *loginarray;
666         int i;
667
668         [df synchronize];
669         loginwindow = [[df persistentDomainForName:@"loginwindow"] mutableCopy];
670         loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
671
672         for (i = 0; i < [loginarray count]; i++) {
673             NSDictionary *tempDict = [loginarray objectAtIndex:i];
674             if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
675                 [loginarray removeObjectAtIndex:i];
676                 [df setPersistentDomain:loginwindow forName:@"loginwindow"];
677                 [df synchronize];
678                 break;
679             }
680         }
681     }
682 }
683
684
685 /*************************************************************************/
686 #pragma mark -
687 #pragma mark NSWindow DELEGATE METHODS
688 /*************************************************************************/
689
690 - (void)windowWillClose:(NSNotification *)note
691 {
692     [(MainController *)controller closePreferences]; 
693 }
694
695
696 /*************************************************************************/
697 #pragma mark -
698 #pragma mark NSTableView DATASOURCE METHODS
699 /*************************************************************************/
700
701 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
702 {
703     if (aTableView == menuTableView) {
704         return [myItems count];
705     } else {
706         return [availableItems count];
707     }
708 }
709
710 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
711 {
712     if (aTableView == menuTableView) {
713         if ([[aTableColumn identifier] isEqualToString:@"name"]) {
714             NSString *object = [myItems objectAtIndex:rowIndex];
715             if ([object isEqualToString:@"Show Player"]) {
716                 return [NSString stringWithFormat:@"Show %@", [[controller currentRemote] playerSimpleName]];
717             }
718             return object;
719         } else {
720             if ([submenuItems containsObject:[myItems objectAtIndex:rowIndex]])
721             {
722                 return [NSImage imageNamed:@"submenu"];
723             } else {
724                 return nil;
725             }
726         }
727     } else {
728         if ([[aTableColumn identifier] isEqualToString:@"name"]) {
729             return [availableItems objectAtIndex:rowIndex];
730         } else {
731             if ([submenuItems containsObject:[availableItems objectAtIndex:rowIndex]]) {
732                 return [NSImage imageNamed:@"submenu"];
733             } else {
734                 return nil;
735             }
736         }
737     }
738 }
739
740 - (BOOL)tableView:(NSTableView *)tableView writeRows:(NSArray*)rows toPasteboard:(NSPasteboard*)pboard
741 {
742     if (tableView == menuTableView) {
743         [pboard declareTypes:[NSArray arrayWithObjects:@"MenuTableViewPboardType", nil] owner:self];
744         [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"MenuTableViewPboardType"];
745         return YES;
746     }
747     
748     if (tableView == allTableView) {
749         [pboard declareTypes:[NSArray arrayWithObjects:@"AllTableViewPboardType", nil] owner:self];
750         [pboard setString:[[rows objectAtIndex:0] stringValue] forType:@"AllTableViewPboardType"];
751         return YES;
752     }
753     return NO;
754 }
755
756 - (BOOL)tableView:(NSTableView*)tableView acceptDrop:(id <NSDraggingInfo>)info row:(int)row dropOperation:(NSTableViewDropOperation)operation
757 {
758     NSPasteboard *pb;
759     int dragRow;
760     NSString *dragData, *temp;
761     
762     pb = [info draggingPasteboard];
763     
764     if ([[pb types] containsObject:@"MenuTableViewPboardType"]) {
765         dragData = [pb stringForType:@"MenuTableViewPboardType"];
766         dragRow = [dragData intValue];
767         temp = [myItems objectAtIndex:dragRow];
768         [myItems removeObjectAtIndex:dragRow];
769         
770         if (tableView == menuTableView) {
771             if (row > dragRow) {
772                 [myItems insertObject:temp atIndex:row - 1];
773             } else {
774                 [myItems insertObject:temp atIndex:row];
775             }
776         } else {
777             if (![temp isEqualToString:@"<separator>"]) {
778                 [availableItems addObject:temp];
779             }
780         }
781     } else if ([[pb types] containsObject:@"AllTableViewPboardType"]) {
782         dragData = [pb stringForType:@"AllTableViewPboardType"];
783         dragRow = [dragData intValue];
784         temp = [availableItems objectAtIndex:dragRow];
785         
786         if (![temp isEqualToString:@"<separator>"]) {
787             [availableItems removeObjectAtIndex:dragRow];
788         }
789         [myItems insertObject:temp atIndex:row];
790     }
791     
792     [menuTableView reloadData];
793     [allTableView reloadData];
794     [self changeMenus:self];
795     return YES;
796 }
797
798 - (NSDragOperation)tableView:(NSTableView*)tableView validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)operation
799 {
800     if (tableView == allTableView) {
801         if ([[[info draggingPasteboard] types] containsObject:@"AllTableViewPboardType"]) {
802             return NSDragOperationNone;
803         }
804         
805         if ([[[info draggingPasteboard] types] containsObject:@"MenuTableViewPboardType"]) {
806             NSString *item = [myItems objectAtIndex:[[[info draggingPasteboard] stringForType:@"MenuTableViewPboardType"] intValue]];
807             if ([item isEqualToString:@"Preferences"] || [item isEqualToString:@"Quit"]) {
808                 return NSDragOperationNone;
809             }
810         }
811         
812         [tableView setDropRow:-1 dropOperation:NSTableViewDropOn];
813         return NSDragOperationGeneric;
814     }
815     
816     if (operation == NSTableViewDropOn || row == -1)
817     {
818         return NSDragOperationNone;
819     }
820     
821     return NSDragOperationGeneric;
822 }
823
824
825 /*************************************************************************/
826 #pragma mark -
827 #pragma mark DEALLOCATION METHODS
828 /*************************************************************************/
829
830 - (void)dealloc
831 {
832     [self setKeyCombo:nil];
833     [hotKeysDictionary release];
834     [keyComboPanel release];
835     [menuTableView setDataSource:nil];
836     [allTableView setDataSource:nil];
837     [controller release];
838     [availableItems release];
839     [submenuItems release];
840     [myItems release];
841     [df release];
842 }
843
844
845 @end