#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
NSString *text = title;
if ( art != nil ) {
- NSImageRep *artRep = [art bestRepresentationForDevice:nil];
- image = [[NSImage alloc] initWithSize:NSMakeSize(110, 110)];
- [image lockFocus];
- {
- [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationHigh];
- [[NSGraphicsContext currentContext] setShouldAntialias:YES];
- [artRep drawInRect:NSMakeRect(3, 3, 104, 104)];
- }
- [image unlockFocus];
- [image autorelease];
+ 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]];
}
- (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 setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];