X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/63956bb9f9984a26dc8147615be854e93ccc6b50..abdb0712ef9e62ff570497eb0e7072eb92b23722:/ITWindowEffect.m diff --git a/ITWindowEffect.m b/ITWindowEffect.m old mode 100755 new mode 100644 index 1e2e750..54a73bf --- a/ITWindowEffect.m +++ b/ITWindowEffect.m @@ -12,6 +12,9 @@ NSClassFromString(@"ITSlideHorizontallyWindowEffect"), NSClassFromString(@"ITSlideVerticallyWindowEffect"), NSClassFromString(@"ITPivotWindowEffect"), + NSClassFromString(@"ITZoomWindowEffect"), + NSClassFromString(@"ITSpinWindowEffect"), + NSClassFromString(@"ITSpinAndZoomWindowEffect"), nil]; return classes; @@ -27,7 +30,6 @@ __idle = YES; if ( [window conformsToProtocol:@protocol(ITWindowPositioning)] ) { - // Casts so the compiler won't gripe _verticalPosition = (ITVerticalWindowPosition)[(ITTransientStatusWindow *)window verticalPosition]; _horizontalPosition = (ITHorizontalWindowPosition)[(ITTransientStatusWindow *)window horizontalPosition]; } else { @@ -96,24 +98,30 @@ [NSNumber numberWithBool:NO], @"Right", nil] , @"Bottom" , nil]; } ++ (unsigned int)listOrder +{ + NSLog(@"ITWindowEffect does not implement +listOrder."); + return 0; +} + - (void)performAppear { - NSLog(@"ITWindowEffect does not implement performAppear."); + NSLog(@"ITWindowEffect does not implement -performAppear."); } - (void)performVanish { - NSLog(@"ITWindowEffect does not implement performVanish."); + NSLog(@"ITWindowEffect does not implement -performVanish."); } - (void)cancelAppear { - NSLog(@"ITWindowEffect does not implement cancelAppear."); + NSLog(@"ITWindowEffect does not implement -cancelAppear."); } - (void)cancelVanish { - NSLog(@"ITWindowEffect does not implement cancelVanish."); + NSLog(@"ITWindowEffect does not implement -cancelVanish."); } - (void)releaseWhenIdle;