Cleaning up the track art code (It still doesn't work right, but it's cleaner!)
[MenuTunes.git] / StatusWindowController.m
index 85d94df..8946095 100755 (executable)
@@ -114,12 +114,20 @@ static StatusWindowController *sharedController;
     NSString *text  = title;
     
     if ( art != nil ) {
-        image = art;
-        NSSize size = [image size];
-        if (size.width > 110) {
-            [image setScalesWhenResized:YES];
-            [image setSize:NSMakeSize(110, (size.width / size.height) * 110)];
+       /*
+        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;
+       [image setScalesWhenResized:YES];
+       [image setSize:NSMakeSize(110,110)];
     } else if ( source == ITMTRemoteLibrarySource ) {
         image = [NSImage imageNamed:@"Library"];
     } else if ( source == ITMTRemoteCDSource ) {
@@ -271,7 +279,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"