- // Set pivot rotation point
- transform.tx = -32.0;
- transform.ty = [_window frame].size.height + 32.0;
-
- CGSSetWindowTransform([NSApp contextID],
- (CGSWindowID)[_window windowNumber],
- CGAffineTransformTranslate(transform,
- (([_window frame].origin.x - 32.0) * -1),
- (([[_window screen] frame].size.height - ([_window frame].origin.y) + 32.0) * -1) ));
+ CGAffineTransform transform;
+ NSPoint translation;
+
+ translation.x = -winFrame.origin.x;
+ translation.y = winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height;
+
+ transform = CGAffineTransformMakeTranslation( translation.x, translation.y );
+
+ CGSSetWindowTransform([NSApp contextID],
+ (CGSWindowID)[_window windowNumber],
+ transform);
+ } else {
+ float degAngle;
+ CGAffineTransform transform;
+
+ if ( vPos == ITWindowPositionBottom ) {
+ if ( hPos == ITWindowPositionLeft ) {
+ angle = angle;
+ } else if ( hPos == ITWindowPositionRight ) {
+ angle = ( 45 - -(315 - angle) );
+ }
+ } else if ( vPos == ITWindowPositionTop ) {
+ if ( hPos == ITWindowPositionLeft ) {
+ angle = ( 45 - -(315 - angle) );
+ } else if ( hPos == ITWindowPositionRight ) {
+ angle = angle;
+ }
+ }
+
+ degAngle = (angle * (pi / 180));
+ transform = CGAffineTransformMakeRotation(degAngle);
+
+ if ( vPos == ITWindowPositionBottom ) {
+ transform.ty = winFrame.size.height;
+ } else if ( vPos == ITWindowPositionTop ) {
+ transform.ty = 0;
+ }
+
+ if ( hPos == ITWindowPositionLeft ) {
+ transform.tx = 0;
+ } else if ( hPos == ITWindowPositionRight ) {
+ transform.tx = winFrame.size.width;
+ }
+
+ transform = CGAffineTransformTranslate(transform, -winFrame.origin.x - transform.tx, winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height - transform.ty);
+ CGSSetWindowTransform([NSApp contextID],
+ (CGSWindowID)[_window windowNumber],
+ transform );
+ }