X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/3055b035aa851467097d35d886890f272dc90ee7..HEAD:/ITSpinWindowEffect.m diff --git a/ITSpinWindowEffect.m b/ITSpinWindowEffect.m old mode 100755 new mode 100644 index ef8aaf6..0de4f56 --- a/ITSpinWindowEffect.m +++ b/ITSpinWindowEffect.m @@ -193,27 +193,19 @@ - (void)setSpin:(float)progress { - //int hPos = [_window horizontalPosition]; float radAngle = (progress * 4 * pi); CGAffineTransform transform; NSPoint translation; - NSRect screenFrame = [[_window screen] frame]; + NSRect winFrame = [_window frame]; - translation.x = /*screenFrame.origin.x + */([_window frame].size.width / 2.0); - translation.y = /*screenFrame.origin.y + */([_window frame].size.height / 2.0); + translation.x = (winFrame.size.width / 2.0); + translation.y = (winFrame.size.height / 2.0); transform = CGAffineTransformMakeTranslation(translation.x, translation.y); transform = CGAffineTransformRotate(transform, radAngle); transform = CGAffineTransformTranslate(transform, -translation.x, -translation.y); - /*if (hPos == ITWindowPositionLeft) { - translation.x = -[_window frame].origin.x; - } else if (hPos == ITWindowPositionRight) { - translation.x = -[_window frame].origin.x; - } else { - translation.x = -[_window frame].origin.x; - }*/ - translation.x = -[_window frame].origin.x; - translation.y = -( screenFrame.size.height - [_window frame].origin.y - [_window frame].size.height ); + translation.x = -winFrame.origin.x; + translation.y = winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height; transform = CGAffineTransformTranslate(transform, translation.x, translation.y); CGSSetWindowTransform([NSApp contextID],