X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/703be04ff6d1a493d2920adc9a07911c587aea14..82086d6a95408227f929ca149591c6fc3962f043:/StatusWindowController.m diff --git a/StatusWindowController.m b/StatusWindowController.m index 117c205..fac506c 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -11,10 +11,8 @@ #import #import - static StatusWindowController *sharedController; - @implementation StatusWindowController @@ -105,6 +103,7 @@ static StatusWindowController *sharedController; 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 @@ -114,16 +113,7 @@ static StatusWindowController *sharedController; 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 ) { @@ -146,6 +136,9 @@ static StatusWindowController *sharedController; if ( artist ) { text = [text stringByAppendingString:[@"\n" stringByAppendingString:artist]]; } + if ( composer ) { + text = [text stringByAppendingString:[@"\n" stringByAppendingString:composer]]; + } if ( time ) { text = [text stringByAppendingString:[@"\n" stringByAppendingString:time]]; } @@ -275,7 +268,7 @@ static StatusWindowController *sharedController; { 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"