1 #import "ITPivotWindowEffect.h"
2 #import "ITCoreGraphicsHacks.h"
3 #import "ITTransientStatusWindow.h"
6 @interface ITPivotWindowEffect (Private)
7 - (void)setPivot:(float)angle;
8 - (void)performAppearFromProgress:(float)progress effectTime:(float)time;
11 - (void)performVanishFromProgress:(float)progress effectTime:(float)time;
17 @implementation ITPivotWindowEffect
20 + (NSString *)effectName
25 + (NSDictionary *)supportedPositions
27 return [NSDictionary dictionaryWithObjectsAndKeys:
28 [NSDictionary dictionaryWithObjectsAndKeys:
29 [NSNumber numberWithBool:YES], @"Left",
30 [NSNumber numberWithBool:NO], @"Center",
31 [NSNumber numberWithBool:YES], @"Right", nil] , @"Top" ,
32 [NSDictionary dictionaryWithObjectsAndKeys:
33 [NSNumber numberWithBool:NO], @"Left",
34 [NSNumber numberWithBool:NO], @"Center",
35 [NSNumber numberWithBool:NO], @"Right", nil] , @"Middle" ,
36 [NSDictionary dictionaryWithObjectsAndKeys:
37 [NSNumber numberWithBool:YES], @"Left",
38 [NSNumber numberWithBool:NO], @"Center",
39 [NSNumber numberWithBool:YES], @"Right", nil] , @"Bottom" , nil];
43 + (unsigned int)listOrder
49 /*************************************************************************/
51 #pragma mark APPEAR METHODS
52 /*************************************************************************/
58 [self setWindowVisibility:ITWindowAppearingState];
59 [self performAppearFromProgress:0.0 effectTime:_effectTime];
62 - (void)performAppearFromProgress:(float)progress effectTime:(float)time
64 [_window setEffectProgress:progress];
65 _effectSpeed = (1.0 / (EFFECT_FPS * time));
67 if ( progress == 0.0 ) {
68 [self setPivot:315.0];
69 [_window setAlphaValue:0.0];
72 [_window orderFront:self];
73 _effectTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / EFFECT_FPS)
75 selector:@selector(appearStep)
82 float interPivot = 0.0;
83 [_window setEffectProgress:([_window effectProgress] + _effectSpeed)];
84 [_window setEffectProgress:( ([_window effectProgress] < 1.0) ? [_window effectProgress] : 1.0)];
85 interPivot = (( sin(([_window effectProgress] * pi) - (pi / 2)) + 1 ) / 2);
86 [self setPivot:((interPivot * 45) + 315)];
87 [_window setAlphaValue:interPivot];
89 if ( [_window effectProgress] >= 1.0 ) {
96 [_effectTimer invalidate];
98 [self setWindowVisibility:ITWindowVisibleState];
102 if ( __shouldReleaseWhenIdle ) {
109 [self setWindowVisibility:ITWindowVanishingState];
111 [_effectTimer invalidate];
114 [self performVanishFromProgress:[_window effectProgress] effectTime:(_effectTime / 3.5)];
118 /*************************************************************************/
120 #pragma mark VANISH METHODS
121 /*************************************************************************/
123 - (void)performVanish
127 [self setWindowVisibility:ITWindowVanishingState];
128 [self performVanishFromProgress:1.0 effectTime:_effectTime];
131 - (void)performVanishFromProgress:(float)progress effectTime:(float)time
133 [_window setEffectProgress:progress];
134 _effectSpeed = (1.0 / (EFFECT_FPS * time));
135 if ( progress == 1.0 ) {
137 [_window setAlphaValue:1.0];
140 [_window orderFront:self];
141 _effectTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / EFFECT_FPS)
143 selector:@selector(vanishStep)
150 float interPivot = 1.0;
151 [_window setEffectProgress:([_window effectProgress] - _effectSpeed)];
152 [_window setEffectProgress:( ([_window effectProgress] > 0.0) ? [_window effectProgress] : 0.0)];
153 interPivot = (( sin(([_window effectProgress] * pi) - (pi / 2)) + 1 ) / 2);
154 [self setPivot:((interPivot * 45) + 315)];
155 [_window setAlphaValue:interPivot];
157 if ( [_window effectProgress] <= 0.0 ) {
164 [_effectTimer invalidate];
166 [_window orderOut:self];
167 [_window setAlphaValue:1.0];
169 [self setWindowVisibility:ITWindowHiddenState];
173 if ( __shouldReleaseWhenIdle ) {
180 [self setWindowVisibility:ITWindowAppearingState];
182 [_effectTimer invalidate];
185 [self performAppearFromProgress:[_window effectProgress] effectTime:(_effectTime / 3.5)];
189 /*************************************************************************/
191 #pragma mark PRIVATE METHOD IMPLEMENTATIONS
192 /*************************************************************************/
194 - (void)setPivot:(float)angle
198 CGAffineTransform transform;
200 if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) {
201 if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {
202 degAngle = (angle * (pi / 180));
203 } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) {
204 degAngle = (-angle * (pi / 180));
206 } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionRight ) {
207 if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {
208 degAngle = (angle * (pi / 180));
209 } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) {
210 degAngle = (angle * (pi / 180));
214 transform = CGAffineTransformMakeRotation(degAngle);
216 // Set pivot rotation point
217 //transform.tx = -( 32.0 + [[_window screen] visibleFrame].origin.x );
218 transform.ty = ( [_window frame].size.height + 32.0 + [[_window screen] visibleFrame].origin.y );
220 if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) {
221 appearPoint.x = -( 32.0 + [[_window screen] visibleFrame].origin.x );
222 transform.tx = -( 32.0 + [[_window screen] visibleFrame].origin.x );
223 } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionRight ) {
224 transform.tx = -( 32.0 + [[_window screen] visibleFrame].origin.x ) + [_window frame].size.width;
225 appearPoint.x = -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 64.0);
226 } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionCenter ) {
227 appearPoint.x = ( [_window frame].size.width - [[_window screen] visibleFrame].size.width ) / 2;
230 if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) {
231 appearPoint.y = ( [_window frame].size.height - [[_window screen] visibleFrame].size.height) / 2;
232 } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {
233 appearPoint.y = -( [[_window screen] frame].size.height - ([_window frame].origin.y) + 32.0 + [[_window screen] visibleFrame].origin.y) ;
234 }/* else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionMiddle ) {
235 appearPoint.y = ( [_window frame].size.height - [[_window screen] visibleFrame].size.height) / 2;
237 CGSSetWindowTransform([NSApp contextID],
238 (CGSWindowID)[_window windowNumber],
239 CGAffineTransformTranslate( transform,