X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/5cf6107f7fb51538c33d2839a2485493a7446c43..6927398d4cafaae8c6977280433be86431272986:/ITSlideVerticallyWindowEffect.m?ds=inline diff --git a/ITSlideVerticallyWindowEffect.m b/ITSlideVerticallyWindowEffect.m index 023e276..6f2f47a 100755 --- a/ITSlideVerticallyWindowEffect.m +++ b/ITSlideVerticallyWindowEffect.m @@ -17,6 +17,35 @@ @implementation ITSlideVerticallyWindowEffect ++ (NSString *)effectName +{ + return @"Slide Vertically"; +} + ++ (NSDictionary *)supportedPositions +{ + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSDictionary dictionaryWithObjectsAndKeys: + [NSNumber numberWithBool:YES], @"Left", + [NSNumber numberWithBool:YES], @"Center", + [NSNumber numberWithBool:YES], @"Right", nil] , @"Top" , + [NSDictionary dictionaryWithObjectsAndKeys: + [NSNumber numberWithBool:NO], @"Left", + [NSNumber numberWithBool:NO], @"Center", + [NSNumber numberWithBool:NO], @"Right", nil] , @"Middle" , + [NSDictionary dictionaryWithObjectsAndKeys: + [NSNumber numberWithBool:YES], @"Left", + [NSNumber numberWithBool:YES], @"Center", + [NSNumber numberWithBool:YES], @"Right", nil] , @"Bottom" , nil]; +} + + ++ (unsigned int)listOrder +{ + return 300; +} + + /*************************************************************************/ #pragma mark - #pragma mark APPEAR METHODS