X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/8cd402b5d3e43c95046af7ac0e4cb3cde2d622bc..fb7602562afcd4350ae64c7e2a81fdd7eb2b4a15:/StatusWindowController.m diff --git a/StatusWindowController.m b/StatusWindowController.m index 269681d..db04626 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -193,6 +193,7 @@ static StatusWindowController *sharedController; [_window buildTextWindowWithString:text]; [_window appear:self]; + [text release]; } - (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings @@ -254,6 +255,14 @@ static StatusWindowController *sharedController; [_window appear:self]; } +- (void)showSongShufflabilityWindow:(BOOL)shufflable +{ + [_window setImage:[NSImage imageNamed:@"Shuffle"]]; + [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]]; + [_window buildTextWindowWithString:( !shufflable ? NSLocalizedString(@"shufflableOn", @"Current Song Skipped When Shuffling") : NSLocalizedString(@"shufflableOff", @"Current Song Not Skipped When Shuffling"))]; + [_window appear:self]; +} + - (void)showSetupQueryWindow { NSString *message = NSLocalizedString(@"autolaunch_msg", @"Would you like MenuTunes to launch\nautomatically at startup?");