#import <ITKit/ITSlideVerticallyWindowEffect.h>
#import <ITKit/ITPivotWindowEffect.h>
-
static StatusWindowController *sharedController;
-
@implementation StatusWindowController
title: (NSString *)title
album: (NSString *)album
artist: (NSString *)artist
+ composer: (NSString *)composer
time: (NSString *)time // FLOW: Should probably be NSDate or something.
track: (NSString *)track
rating: (int)rating
+ playCount: (int)playCount
image: (NSImage *)art
{
NSImage *image = nil;
NSString *text = title;
if ( art != nil ) {
- NSSize oldSize, newSize;
- image = art;
- [image setScalesWhenResized:YES];
- oldSize = [image size];
- if (oldSize.width > oldSize.height) newSize = NSMakeSize(110,oldSize.height * (110.0f / oldSize.width));
- else newSize = NSMakeSize(oldSize.width * (110.0f / oldSize.height),110);
- [image setSize:newSize];
+ image = art;
} else if ( source == ITMTRemoteLibrarySource ) {
image = [NSImage imageNamed:@"Library"];
} else if ( source == ITMTRemoteCDSource ) {
if ( artist ) {
text = [text stringByAppendingString:[@"\n" stringByAppendingString:artist]];
}
+ if ( composer ) {
+ text = [text stringByAppendingString:[@"\n" stringByAppendingString:composer]];
+ }
if ( time ) {
text = [text stringByAppendingString:[@"\n" stringByAppendingString:time]];
}
if ( track ) {
text = [text stringByAppendingString:[@"\n" stringByAppendingString:track]];
}
+ if (playCount > -1) {
+ text = [text stringByAppendingString:[NSString stringWithFormat:@"\nPlay Count: %i", playCount]];
+ }
if ( rating > -1 ) {
NSString *ratingString = [NSString string];
text = [text stringByAppendingString:[@"\n" stringByAppendingString:ratingString]];
}
-
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:text];
[_window appear:self];
- (void)showReconnectQueryWindow
{
- NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?.";
-
+ 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
[_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.";