++ (StatusWindowController *)sharedController
+{
+ if ( ! sharedController ) {
+ sharedController = [[StatusWindowController alloc] init];
+ }
+
+ return sharedController;
+}
+
+
+- (id)init
+{
+ if ( ( self = [super init] ) ) {
+
+ float exitDelay;
+ NSString *entryClass;
+ NSString *exitClass;
+ NSArray *classList = [ITWindowEffect effectClasses];
+ float entrySpeed;
+ float exitSpeed;
+ NSArray *screens = [NSScreen screens];
+ int screenIndex;
+
+ NSData *colorData;
+
+ ITWindowEffect *entryEffect;
+ ITWindowEffect *exitEffect;
+
+ _currentType = StatusWindowNoType;
+
+ _window = [[StatusWindow sharedWindow] retain];
+ df = [[NSUserDefaults standardUserDefaults] retain];
+
+ exitDelay = [df floatForKey:@"statusWindowVanishDelay"];
+ entryClass = [df stringForKey:@"statusWindowAppearanceEffect"];
+ exitClass = [df stringForKey:@"statusWindowVanishEffect"];
+ entrySpeed = [df floatForKey:@"statusWindowAppearanceSpeed"];
+ exitSpeed = [df floatForKey:@"statusWindowVanishSpeed"];
+
+ screenIndex = [df integerForKey:@"statusWindowScreenIndex"];
+ if (screenIndex >= [screens count]) {
+ screenIndex = 0;
+ }
+ [_window setScreen:[screens objectAtIndex:screenIndex]];
+
+ [_window setExitMode:ITTransientStatusWindowExitAfterDelay];
+ [_window setExitDelay:(exitDelay ? exitDelay : 4.0)];
+
+ [_window setHorizontalPosition:[df integerForKey:@"statusWindowHorizontalPosition"]];
+ [_window setVerticalPosition:[df integerForKey:@"statusWindowVerticalPosition"]];
+
+ [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
+
+ if ( [classList containsObject:NSClassFromString(entryClass)] ) {
+ entryEffect = [[[NSClassFromString(entryClass) alloc] initWithWindow:_window] autorelease];
+ } else {
+ entryEffect = [[[ITCutWindowEffect alloc] initWithWindow:_window] autorelease];
+ }
+
+ if ( [classList containsObject:NSClassFromString(exitClass)] ) {
+ exitEffect = [[[NSClassFromString(exitClass) alloc] initWithWindow:_window] autorelease];
+ } else {
+ exitEffect = [[[ITDissolveWindowEffect alloc] initWithWindow:_window] autorelease];
+ }
+
+ [_window setEntryEffect:entryEffect];
+ [_window setExitEffect:exitEffect];
+
+ [[_window entryEffect] setEffectTime:(entrySpeed ? entrySpeed : 0.8)];
+ [[_window exitEffect] setEffectTime:(exitSpeed ? exitSpeed : 0.8)];
+
+ [(ITTSWBackgroundView *)[_window contentView]setBackgroundMode:
+ (ITTSWBackgroundMode)[df integerForKey:@"statusWindowBackgroundMode"]];
+
+ colorData = [df dataForKey:@"statusWindowBackgroundColor"];
+
+ if ( colorData ) {
+ [(ITTSWBackgroundView *)[_window contentView] setBackgroundColor:
+ (NSColor *)[NSUnarchiver unarchiveObjectWithData:colorData]];
+ } else {
+ [(ITTSWBackgroundView *)[_window contentView] setBackgroundColor:[NSColor blueColor]];
+ }
+ }
+
+ return self;
+}
+
+- (void)dealloc
+{
+ [_window release];
+ [super dealloc];
+}
+
+- (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
+ 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;
+ NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:title];
+
+ if ( art != nil ) {
+ image = art;
+ } else if ( source == ITMTRemoteLibrarySource ) {
+ image = [NSImage imageNamed:@"Library"];
+ } else if ( source == ITMTRemoteCDSource ) {
+ image = [NSImage imageNamed:@"CD"];
+ } else if ( source == ITMTRemoteRadioSource ) {
+ image = [NSImage imageNamed:@"Radio"];
+ } else if ( source == ITMTRemoteiPodSource ) {
+ image = [NSImage imageNamed:@"iPod"];
+ } else if ( source == ITMTRemoteGenericDeviceSource ) {
+ image = [NSImage imageNamed:@"MP3Player"];
+ } else if ( source == ITMTRemoteSharedLibrarySource ) {
+ image = [NSImage imageNamed:@"Library"];
+ }
+
+ [_window setImage:image];
+ [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
+
+ if ( album ) {
+ [[text mutableString] appendFormat:@"\n%@", album];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:album]];
+ }
+ if ( artist ) {
+ [[text mutableString] appendFormat:@"\n%@", artist];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:artist]];
+ }
+ if ( composer ) {
+ [[text mutableString] appendFormat:@"\n%@", composer];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:composer]];
+ }
+ if ( time ) {
+ _timeRange = NSMakeRange([[text mutableString] length] + 1, [time length]);
+ [[text mutableString] appendFormat:@"\n%@", time];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:time]];
+ }
+ if ( track ) {
+ [[text mutableString] appendFormat:@"\n%@", track];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:track]];
+ }
+ if (playCount > -1) {
+ [[text mutableString] appendFormat:@"\n%@: %i", NSLocalizedString(@"playCount", @"Play Count"), playCount];
+ //text = [text stringByAppendingString:[NSString stringWithFormat:@"\n%@: %i", NSLocalizedString(@"playCount", @"Play Count"), playCount]];
+ }
+ if ( rating > -1 ) {
+
+ NSString *ratingString = [NSString string];
+ NSString *emptyChar = [NSString stringWithUTF8String:"☆"];
+ NSString *fullChar = [NSString stringWithUTF8String:"★"];
+ int i, start = [[text mutableString] length], size = 18;
+
+ for ( i = 1; i < 6; i++ ) {
+
+ if ( rating >= i ) {
+ ratingString = [ratingString stringByAppendingString:fullChar];
+ } else {
+ ratingString = [ratingString stringByAppendingString:emptyChar];
+ }
+ }
+
+ [[text mutableString] appendFormat:@"\n%@", ratingString];
+ if ([_window sizing] == ITTransientStatusWindowSmall) {
+ size /= SMALL_DIVISOR;
+ } else if ([_window sizing] == ITTransientStatusWindowMini) {
+ size /= MINI_DIVISOR;
+ }
+ [text setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSFont fontWithName:@"AppleGothic" size:size], NSFontAttributeName, nil, nil] range:NSMakeRange(start + 1, 5)];
+ //text = [text stringByAppendingString:[@"\n" stringByAppendingString:ratingString]];
+ }
+
+ _currentType = StatusWindowTrackInfoType;
+ [_window buildTextWindowWithString:text];
+ [_window appear:self];
+ [text release];
+}
+
+- (void)showAlbumArtWindowWithImage:(NSImage *)image