#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
if ( art != nil ) {
image = art;
- [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationLow];
- [image setScalesWhenResized:YES];
- [image setSize:NSMakeSize(110, 110)];
- /*if (size.width > 110 && size.width > size.height) {
- [image setSize:NSMakeSize(110, (size.width / size.height) * 110)];
- } else if (size.height > 110 && size.height > size.width) {
- [image setSize:NSMakeSize((size.height / size.width) * 110, 110)];
- }*/
} 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]];
}
{
NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?.";
- [_window setImage:[NSImage imageNamed:@"Register"]];
+ [_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:@"Reconnect"