X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/079b33aed3d1c849f1f46022040813d6394100f2..8639150b59e399e5ce15e0535f149eeb6b015cc6:/ITWindowEffect.m diff --git a/ITWindowEffect.m b/ITWindowEffect.m index 9eb75a6..c1bdf0e 100755 --- a/ITWindowEffect.m +++ b/ITWindowEffect.m @@ -9,10 +9,11 @@ { if ( (self = [super init]) ) { - _window = [window retain]; - _effectTime = DEFAULT_EFFECT_TIME; - _effectProgress = 0.00; - _effectTimer = nil; + _window = [window retain]; + _effectTime = DEFAULT_EFFECT_TIME; + _effectTimer = nil; + __shouldReleaseWhenIdle = NO; + __idle = YES; if ( [window conformsToProtocol:@protocol(ITWindowPositioning)] ) { // Casts so the compiler won't gripe @@ -40,7 +41,7 @@ - (void)setWindowVisibility:(ITWindowVisibilityState)visibilityState { - if ( [_window conformsToProtocol:@protocol(ITWindowVisibility)] ) { + if ( [_window conformsToProtocol:@protocol(ITWindowMotility)] ) { // Cast so the compiler won't gripe [(ITTransientStatusWindow *)_window setVisibilityState:visibilityState]; } else { @@ -48,6 +49,16 @@ } } +- (float)effectTime +{ + return _effectTime; +} + +- (void)setEffectTime:(float)newTime +{ + _effectTime = newTime; +} + - (void)performAppear { NSLog(@"ITWindowEffect does not implement performAppear."); @@ -68,6 +79,15 @@ NSLog(@"ITWindowEffect does not implement cancelVanish."); } +- (void)releaseWhenIdle; +{ + if ( __idle ) { + [self release]; + } else { + __shouldReleaseWhenIdle = YES; + } +} + - (void)dealloc { [_window release];