#import "PreferencesController.h"
#import "MainController.h"
+#import <ITKit/ITTSWBackgroundView.h>
#import <ITKit/ITWindowEffect.h>
#import <ITKit/ITCutWindowEffect.h>
#import <ITKit/ITDissolveWindowEffect.h>
- (id)init
{
if ( ( self = [super init] ) ) {
-
+
float exitDelay;
- int entryTag;
- int exitTag;
+ NSString *entryClass;
+ NSString *exitClass;
+ NSArray *classList = [ITWindowEffect effectClasses];
float entrySpeed;
float exitSpeed;
+ NSData *colorData;
+
ITWindowEffect *entryEffect;
ITWindowEffect *exitEffect;
-
+
_window = [[StatusWindow sharedWindow] retain];
df = [[NSUserDefaults standardUserDefaults] retain];
-
+
exitDelay = [df floatForKey:@"statusWindowVanishDelay"];
- entryTag = [df integerForKey:@"statusWindowAppearanceEffect"];
- exitTag = [df integerForKey:@"statusWindowVanishEffect"];
+ entryClass = [df stringForKey:@"statusWindowAppearanceEffect"];
+ exitClass = [df stringForKey:@"statusWindowVanishEffect"];
entrySpeed = [df floatForKey:@"statusWindowAppearanceSpeed"];
exitSpeed = [df floatForKey:@"statusWindowVanishSpeed"];
-
+
[_window setExitMode:ITTransientStatusWindowExitAfterDelay];
[_window setExitDelay:(exitDelay ? exitDelay : 4.0)];
-
- if ( entryTag == 2101 ) {
- entryEffect = [[[ITDissolveWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( entryTag == 2102 ) {
- entryEffect = [[[ITSlideVerticallyWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( entryTag == 2103 ) {
- entryEffect = [[[ITSlideHorizontallyWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( entryTag == 2104 ) {
- entryEffect = [[[ITPivotWindowEffect alloc] initWithWindow:_window] autorelease];
+
+ [_window setHorizontalPosition:[df integerForKey:@"statusWindowHorizontalPosition"]];
+ [_window setVerticalPosition:[df integerForKey:@"statusWindowVerticalPosition"]];
+
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
+
+ if ( [classList containsObject:NSClassFromString(entryClass)] ) {
+ entryEffect = [[[NSClassFromString(entryClass) alloc] initWithWindow:_window] autorelease];
} else {
entryEffect = [[[ITCutWindowEffect alloc] initWithWindow:_window] autorelease];
}
-
- [_window setEntryEffect:entryEffect];
-
- if ( exitTag == 2100 ) {
- exitEffect = [[[ITCutWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( exitTag == 2102 ) {
- exitEffect = [[[ITSlideVerticallyWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( exitTag == 2103 ) {
- exitEffect = [[[ITSlideHorizontallyWindowEffect alloc] initWithWindow:_window] autorelease];
- } else if ( exitTag == 2104 ) {
- exitEffect = [[[ITPivotWindowEffect 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;
text = [text stringByAppendingString:[@"\n" stringByAppendingString:ratingString]];
}
+
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:text];
[_window appear:self];
}
NSString *bull = [NSString stringWithUTF8String:"♪ "];
NSString *end = [@"\n" stringByAppendingString:bull];
[_window setImage:[NSImage imageNamed:@"Upcoming"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:[bull stringByAppendingString:[titleStrings componentsJoinedByString:end]]];
[_window appear:self];
}
- (void)showVolumeWindowWithLevel:(float)level
{
[_window setImage:[NSImage imageNamed:@"Volume"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildMeterWindowWithCharacter:[NSString stringWithUTF8String:"▊"]
size:18
count:10
- (void)showRatingWindowWithRating:(float)rating
{
[_window setImage:[NSImage imageNamed:@"Rating"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildMeterWindowWithCharacter:[NSString stringWithUTF8String:"★"]
size:48
count:5
- (void)showShuffleWindow:(BOOL)shuffle
{
[_window setImage:[NSImage imageNamed:@"Shuffle"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:( shuffle ? @"Shuffle On" : @"Shuffle Off")];
[_window appear:self];
}
}
[_window setImage:[NSImage imageNamed:@"Repeat"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:string];
[_window appear:self];
}
NSString *message = @"Would you like MenuTunes to launch\nautomatically at startup?";
[_window setImage:[NSImage imageNamed:@"Setup"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:@"Launch at Startup"
alternateButton:@"Launch Manually"
NSString *message = @"Your 7-day unlimited trial period has elapsed.\nYou must register to continue using MenuTunes.";
[_window setImage:[NSImage imageNamed:@"Register"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:@"Register Now"
alternateButton:@"Quit MenuTunes"
NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?.";
[_window setImage:[NSImage imageNamed:@"Register"]];
+ [_window setSizing:(StatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:@"Reconnect"
alternateButton:@"Ignore"
[_window setLocked:YES];
}
+
@end
\ No newline at end of file