#import "ITPivotWindowEffect.h"
#import "ITCoreGraphicsHacks.h"
+#import "ITTransientStatusWindow.h"
+
+
+@interface ITPivotWindowEffect (Private)
+- (void)setPivot:(float)angle;
+- (void)appearFinish;
+- (void)vanishFinish;
+@end
-@implementation ITPivotWindowEffect
+@implementation ITPivotWindowEffect
- (void)performAppear
{
- NSLog(@"ITPivotWindowEffect does not implement performAppear.");
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowAppearingState];
+ [self setPivot:315.0];
+ _effectProgress = 0.0;
+ [_window setAlphaValue:0.0];
+ [_window orderFront:self];
+ _effectTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / EFFECT_FPS)
+ target:self
+ selector:@selector(appearStep)
+ userInfo:nil
+ repeats:YES];
}
- (void)performVanish
{
- NSLog(@"ITPivotWindowEffect does not implement performVanish.");
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowVanishingState];
+ [self setPivot:0.0];
+ _effectProgress = 1.0;
+ [_window setAlphaValue:1.0];
+ [_window orderFront:self];
+ _effectTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / EFFECT_FPS)
+ target:self
+ selector:@selector(vanishStep)
+ userInfo:nil
+ repeats:YES];
}
-- (void)pivotEffect
+- (void)cancelAppear
{
- if ( YES ) {
- [self setPivot:315.0];
- _effectProgress = 0.0;
- [_window setAlphaValue:0.0];
- [_window orderFront:self];
- _effectTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / EFFECT_FPS)
- target:self
- selector:@selector(pivotStep)
- userInfo:nil
- repeats:YES];
- } else {
- [_window orderOut:self];
- }
+ [self appearFinish];
+ [_window orderOut:self];
+ [self setPivot:0.0];
+ [_window setAlphaValue:1.0];
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowHiddenState];
+}
+
+- (void)cancelVanish
+{
+ [self vanishFinish];
+ [self setPivot:0.0];
+ [_window setAlphaValue:1.0];
+ [_window orderFront:self];
+ [_window display];
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowVisibleState];
}
-- (void)pivotStep
+- (void)appearStep
{
- if ( YES ) {
- float interPivot = 0.0;
- _effectProgress += (1.0 / (EFFECT_FPS * _effectTime));
- _effectProgress = (_effectProgress < 1.0 ? _effectProgress : 1.0);
- interPivot = (( sin((_effectProgress * pi) - (pi / 2)) + 1 ) / 2);
- [self setPivot:((interPivot * 45) + 315)];
- [_window setAlphaValue:interPivot];
- if ( _effectProgress >= 1.0 ) {
- [self pivotFinish];
- }
- } else {
- //backwards
+ float interPivot = 0.0;
+ _effectProgress += (1.0 / (EFFECT_FPS * _effectTime));
+ _effectProgress = (_effectProgress < 1.0 ? _effectProgress : 1.0);
+ interPivot = (( sin((_effectProgress * pi) - (pi / 2)) + 1 ) / 2);
+ [self setPivot:((interPivot * 45) + 315)];
+ [_window setAlphaValue:interPivot];
+
+ if ( _effectProgress >= 1.0 ) {
+ [self appearFinish];
}
}
-- (void)pivotFinish
+- (void)vanishStep
{
- if ( YES ) {
- [_effectTimer invalidate];
- _effectTimer = nil;
- _effectProgress = 0.0;
- } else {
- //backwards
+ float interPivot = 1.0;
+ _effectProgress -= (1.0 / (EFFECT_FPS * _effectTime));
+ _effectProgress = (_effectProgress > 0.0 ? _effectProgress : 0.0);
+ interPivot = (( sin((_effectProgress * pi) - (pi / 2)) + 1 ) / 2);
+ [self setPivot:((interPivot * 45) + 315)];
+ [_window setAlphaValue:interPivot];
+
+ if ( _effectProgress <= 0.0 ) {
+ [self vanishFinish];
}
}
+- (void)appearFinish
+{
+ [_effectTimer invalidate];
+ _effectTimer = nil;
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowVisibleState];
+}
+
+- (void)vanishFinish
+{
+ [_effectTimer invalidate];
+ _effectTimer = nil;
+ // Cast so the compiler won't gripe
+ [(ITTransientStatusWindow *)_window setVisibilityState:ITTransientStatusWindowHiddenState];
+}
- (void)setPivot:(float)angle
{
float degAngle = (angle * (pi / 180));
CGAffineTransform transform = CGAffineTransformMakeRotation(degAngle);
- // Set pivot point
+ // Set pivot rotation point
transform.tx = -32.0;
transform.ty = [_window frame].size.height + 32.0;