+- (void)vanishStep
+{
+ float interSlide = 1.0;
+ [_window setEffectProgress:([_window effectProgress] - _effectSpeed)];
+ [_window setEffectProgress:( ([_window effectProgress] > 0.0) ? [_window effectProgress] : 0.0)];
+ interSlide = (( sin(([_window effectProgress] * pi) - (pi / 2)) + 1 ) / 2);
+ [self setSlide:(interSlide * [_window frame].size.height)];
+ [_window setAlphaValue:interSlide];
+
+ if ( [_window effectProgress] <= 0.0 ) {
+ [self vanishFinish];
+ }
+}
+
+- (void)vanishFinish
+{
+ [_effectTimer invalidate];
+ _effectTimer = nil;
+ [_window orderOut:self];
+ [_window setAlphaValue:1.0];
+ [self setSlide:[_window frame].size.height];
+ [self setWindowVisibility:ITWindowHiddenState];
+
+ __idle = YES;
+
+ if ( __shouldReleaseWhenIdle ) {
+ [self release];
+ }
+}
+
+- (void)cancelVanish
+{
+ [self setWindowVisibility:ITWindowAppearingState];
+
+ [_effectTimer invalidate];
+ _effectTimer = nil;
+
+ [self performAppearFromProgress:[_window effectProgress] effectTime:(_effectTime / 4.0)];
+}
+
+- (void)setSlide:(float)distance
+{
+ CGAffineTransform transform;
+ if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {
+ transform = CGAffineTransformMakeTranslation( ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) ? -( 32.0 + [[_window screen] visibleFrame].origin.x ) : -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 32.0 - [_window frame].size.width),
+ -( [[_window screen] frame].size.height - ( distance + 32.0 + [[_window screen] visibleFrame].origin.y ) ) );
+ } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) {
+ transform = CGAffineTransformMakeTranslation( ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) ? -( 32.0 + [[_window screen] visibleFrame].origin.x ) : -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 32.0 - [_window frame].size.width),
+ [[_window screen] visibleFrame].origin.y - distance + 64.0 );
+ }
+
+ CGSSetWindowTransform([NSApp contextID],
+ (CGSWindowID)[_window windowNumber],
+ transform);
+}