:( It got the best of me... Removing NSLog I had for testing
[MenuTunes.git] / StatusWindowController.m
index c22e2a5..49cbf89 100755 (executable)
 //
 
 #import "StatusWindowController.h"
+#import "StatusWindow.h"
 
+#import <ITKit/ITWindowEffect.h>
+#import <ITKit/ITCutWindowEffect.h>
+#import <ITKit/ITDissolveWindowEffect.h>
+#import <ITKit/ITSlideHorizontallyWindowEffect.h>
+#import <ITKit/ITSlideVerticallyWindowEffect.h>
+#import <ITKit/ITPivotWindowEffect.h>
 
 @implementation StatusWindowController
 
 
-- (void)showSongWindowWithTitle:(NSString *)title
-                          album:(NSString *)album
-                         artist:(NSString *)artist
-                           time:(NSString *)time  // FLOW: Should probably be NSDate or something.
-                    trackNumber:       (int)trackNumber
-                     trackTotal:       (int)trackTotal
-                         rating:       (int)rating
+- (id)init
 {
+    if ( ( self = [super init] ) ) {
+    
+        float exitDelay;
+        int entryTag;
+        int exitTag;
+        float entrySpeed;
+        float exitSpeed;
+        
+        ITWindowEffect *entryEffect;
+        ITWindowEffect *exitEffect;
+
+        _window = [[StatusWindow sharedWindow] retain];
+        df = [[NSUserDefaults standardUserDefaults] retain];
+
+        exitDelay  = [df floatForKey:@"statusWindowVanishDelay"];
+        entryTag   = [df integerForKey:@"statusWindowAppearanceEffect"];
+        exitTag    = [df integerForKey:@"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];
+        } 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];
+        } else {
+            exitEffect = [[[ITDissolveWindowEffect alloc] initWithWindow:_window] autorelease];
+        }
+
+        [_window setExitEffect:exitEffect];
+
+        [[_window entryEffect] setEffectTime:(entrySpeed ? entrySpeed : 0.8)];
+        [[_window exitEffect]  setEffectTime:(exitSpeed  ? exitSpeed  : 0.8)];
+    }
+    
+    return self;
+}
 
+- (void)dealloc
+{
+    [_window release];
+    [super dealloc];
+}
+
+- (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
+                               title:            (NSString *)title
+                               album:            (NSString *)album
+                              artist:            (NSString *)artist
+                                time:            (NSString *)time  // FLOW: Should probably be NSDate or something.
+                         trackNumber:                   (int)trackNumber
+                          trackTotal:                      (int)trackTotal
+                              rating:                   (int)rating
+{
+    [_window setImage:[NSImage imageNamed:@"Library"]];
+    [_window buildTextWindowWithString:title];
+    [_window appear:self];
 }
 
-- (void)showUpcomingSongsWithTitles:(NSArray *)titleStrings
+- (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings
 {
 
 }
 
-- (void)showVolumeWindowWithLevel:(int)level
+- (void)showVolumeWindowWithLevel:(float)level
+{
+    [_window setImage:[NSImage imageNamed:@"Volume"]];
+    [_window buildMeterWindowWithCharacter:[NSString stringWithUTF8String:"▊"]
+                                     count:10
+                                    active:( ceil(level * 100) / 10 )];
+    [_window appear:self];
+}
+
+- (void)showRatingWindowWithRating:(int)rating
 {
 
 }
 
-- (void)showRatingWindowWithLevel:(int)level
+- (void)showShuffleWindow:(BOOL)shuffle
 {
 
 }
 
-- (void)showShuffleWindowWithMode:(MTStatusWindowShuffleMode)mode
+- (void)showRepeatWindowWithMode:(StatusWindowRepeatMode)mode
 {
 
 }
 
-- (void)showLoopWindowWithMode:(MTStatusWindowLoopMode)mode
+- (void)showSetupQueryWindow
 {
 
 }
 
+
 @end
\ No newline at end of file