X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/63956bb9f9984a26dc8147615be854e93ccc6b50..HEAD:/ITSlideHorizontallyWindowEffect.m diff --git a/ITSlideHorizontallyWindowEffect.m b/ITSlideHorizontallyWindowEffect.m old mode 100755 new mode 100644 index 26f8db7..60122fd --- a/ITSlideHorizontallyWindowEffect.m +++ b/ITSlideHorizontallyWindowEffect.m @@ -40,6 +40,12 @@ } ++ (unsigned int)listOrder +{ + return 400; +} + + /*************************************************************************/ #pragma mark - #pragma mark APPEAR METHODS @@ -180,29 +186,25 @@ - (void)setSlide:(float)distance { CGAffineTransform transform; - float yPoint; - - if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) { - yPoint = ( 64.0 + [[_window screen] visibleFrame].origin.y - [_window frame].size.height ); - } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) { - yPoint = -( [[_window screen] frame].size.height - ( [_window frame].size.height + 32.0 + [[_window screen] visibleFrame].origin.y) ); - } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionMiddle ) { - yPoint = ( [_window frame].size.height - [[_window screen] visibleFrame].size.height) / 2; + NSPoint translation; + NSRect winFrame = [_window frame]; + + if ( [_window horizontalPosition] == ITWindowPositionLeft ) { + translation.x = ( -(winFrame.origin.x) + distance ) ; + } else if ( [_window horizontalPosition] == ITWindowPositionRight ) { + translation.x = ( -(winFrame.origin.x) - distance ) ; + } else { + translation.x = ( -(winFrame.origin.x) ) ; } - /*if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) { - transform = CGAffineTransformMakeTranslation((distance - (32.0 + [[_window screen] visibleFrame].origin.x)), - ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) ? -( [[_window screen] frame].size.height - ( [_window frame].size.height + 32.0 + [[_window screen] visibleFrame].origin.y) ) : ( 64.0 + [[_window screen] visibleFrame].origin.y - [_window frame].size.height ) ); - } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionRight ) { - transform = CGAffineTransformMakeTranslation(-((([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) + distance) - 32.0 - [_window frame].size.width), - ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) ? -( [[_window screen] frame].size.height - ( [_window frame].size.height + 32.0 + [[_window screen] visibleFrame].origin.y) ) : ( 64.0 + [[_window screen] visibleFrame].origin.y - [_window frame].size.height ) ); - }*/ + translation.y = winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height; - transform = CGAffineTransformMakeTranslation( ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) ? (distance - (32.0 + [[_window screen] visibleFrame].origin.x)) : -((([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) + distance) - 32.0 - [_window frame].size.width), - yPoint); + transform = CGAffineTransformMakeTranslation( translation.x, translation.y ); CGSSetWindowTransform([NSApp contextID], (CGSWindowID)[_window windowNumber], transform); } + + @end