Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITSlideHorizontallyWindowEffect.m
old mode 100755 (executable)
new mode 100644 (file)
index f0e5d78..60122fd
 {
     CGAffineTransform transform;
     NSPoint translation;
-    
+    NSRect winFrame = [_window frame];
+       
     if ( [_window horizontalPosition] == ITWindowPositionLeft ) {
-        translation.x = ( -([_window frame].origin.x) + distance ) ;
+        translation.x = ( -(winFrame.origin.x) + distance ) ;
     } else if ( [_window horizontalPosition] == ITWindowPositionRight ) {
-        translation.x = ( -([_window frame].origin.x) - distance ) ;
+        translation.x = ( -(winFrame.origin.x) - distance ) ;
+    } else {
+        translation.x = ( -(winFrame.origin.x) ) ;
     }
     
-    translation.y = -( [[_window screen] frame].size.height - [_window frame].origin.y - [_window frame].size.height );
+       translation.y = winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height;
     
     transform = CGAffineTransformMakeTranslation( translation.x, translation.y );
     
                           (CGSWindowID)[_window windowNumber],
                           transform);
 }
+
+
 @end