Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITWindowPositioning.h
index 0d83c42..e546b3c 100644 (file)
@@ -4,23 +4,20 @@
  *
  *     Protocol which defines methods for window positioning presets.
  *
- *     Copyright (c) 2005 by iThink Software.
- *     All Rights Reserved.
- *
- *     $Id$
+ *     Copyright (c) 2005 iThink Software
  *
  */
 
 typedef enum {
-    ITWindowPositionLeft = 0,
-    ITWindowPositionCenter = 1,
-    ITWindowPositionRight = 2
+       ITWindowPositionLeft = 0,
+       ITWindowPositionCenter = 1,
+       ITWindowPositionRight = 2
 } ITHorizontalWindowPosition;
 
 typedef enum {
-    ITWindowPositionTop = 0,
-    ITWindowPositionMiddle = 1,
-    ITWindowPositionBottom = 2
+       ITWindowPositionTop = 0,
+       ITWindowPositionMiddle = 1,
+       ITWindowPositionBottom = 2
 } ITVerticalWindowPosition;
 
 @protocol ITWindowPositioning