X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/dc685d1d1cffcfd6bb95dd948c30f1dc315919e0..bc4fa9cf6435c18c42de06c478480c6f6673ca4b:/StatusWindowController.m diff --git a/StatusWindowController.m b/StatusWindowController.m index cd14b33..6ad04a1 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -267,7 +267,7 @@ static StatusWindowController *sharedController; - (void)showReconnectQueryWindow { NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?"; - + [_window setLocked:NO]; [_window setImage:[NSImage imageNamed:@"Setup"]]; [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]]; [_window buildDialogWindowWithMessage:message @@ -281,6 +281,23 @@ static StatusWindowController *sharedController; [_window setLocked:YES]; } +- (void)showNetworkErrorQueryWindow +{ + NSString *message = @"The remote MenuTunes server is unreachable.\nMenuTunes will revert back to the local player."; + + [_window setImage:[NSImage imageNamed:@"Setup"]]; + [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]]; + [_window buildDialogWindowWithMessage:message + defaultButton:@" OK " + alternateButton:nil + target:[MainController sharedController] + defaultAction:@selector(cancelReconnect) + alternateAction:nil]; + + [_window appear:self]; + [_window setLocked:YES]; +} + - (void)showPreferencesUpdateWindow { NSString *message = @"The new features in this version of MenuTunes\nrequire you to reconfigure your preferences.";