X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/2589c16f443dd6fe9df554eb533df464b5bb919b..ceb1dcca2b608f56e53188b5bb623755c4eeddbb:/ITWindowEffect.h diff --git a/ITWindowEffect.h b/ITWindowEffect.h index bb1c3b8..9b6c0bd 100755 --- a/ITWindowEffect.h +++ b/ITWindowEffect.h @@ -3,8 +3,8 @@ * ITWindowEffect * Protocal and abstract superclass for performing effects on windows. * - * Original Author : Matt Judy - * Responsibility : Matt Judy + * Original Author : Matthew Judy + * Responsibility : Matthew Judy * * Copyright (c) 2002 - 2003 iThink Software. * All Rights Reserved @@ -13,27 +13,67 @@ #import +#import "ITWindowPositioning.h" +@class ITTransientStatusWindow; -@protocol ITWindowEffect +#define EFFECT_FPS 30.0 +#define DEFAULT_EFFECT_TIME 0.75 + + +typedef enum { + ITWindowHiddenState, + ITWindowAppearingState, + ITWindowVisibleState, + ITWindowVanishingState +} ITWindowVisibilityState; + +@protocol ITWindowEffect ++ (NSString *)effectName; ++ (NSDictionary *)supportedPositions; ++ (unsigned int)listOrder; - (void)performAppear; - (void)performVanish; +- (void)cancelAppear; +- (void)cancelVanish; +@end + +@protocol ITWindowMotility +- (ITWindowVisibilityState)visibilityState; +- (void)setVisibilityState:(ITWindowVisibilityState)newState; +- (float)effectProgress; +- (void)setEffectProgress:(float)newProgress; @end @interface ITWindowEffect : NSObject { - NSWindow *_window; + ITTransientStatusWindow *_window; + float _effectTime; + float _effectSpeed; + ITVerticalWindowPosition _verticalPosition; + ITHorizontalWindowPosition _horizontalPosition; + NSTimer *_effectTimer; + BOOL __idle; + BOOL __shouldReleaseWhenIdle; } ++ (NSArray *)effectClasses; + // Designated initializer - (id)initWithWindow:(NSWindow *)window; - (NSWindow *)window; -// setWindow: does not retain or release its window. It simply references it. - (void)setWindow:(NSWindow *)newWindow; +- (void)setWindowVisibility:(ITWindowVisibilityState)visibilityState; + +- (float)effectTime; +- (void)setEffectTime:(float)newTime; + +- (void)releaseWhenIdle; + @end