Changed the NSMenu category from NSMenuItem * to id <NSMenuItem>
[ITKit.git] / ITWindowPositioning.h
index bdb28f3..c43a7f4 100755 (executable)
@@ -3,9 +3,8 @@
  *  ITWindowPositioning
  *    Protocol which defines methods for window positioning presets.
  *
- *  Original Author : Kent Sutherland <joseph.spiros@ithinksw.com>
- *  Original Author : Matt Judy <mjudy@ithinksw.com>
- *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *  Original Author : Matthew Judy <mjudy@ithinksw.com>
+ *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
  *
  *  Copyright (c) 2002 - 2003 iThink Software.
 
 
 typedef enum {
-    ITWindowPositionLeft,
-    ITWindowPositionCenter,
-    ITWindowPositionRight,
+    ITWindowPositionLeft   = 0,
+    ITWindowPositionCenter = 1,
+    ITWindowPositionRight  = 2,
 } ITHorizontalWindowPosition;
 
 typedef enum {
-    ITWindowPositionTop,
-    ITWindowPositionMiddle,
-    ITWindowPositionBottom,
+    ITWindowPositionTop    = 0,
+    ITWindowPositionMiddle = 1,
+    ITWindowPositionBottom = 2,
 } ITVerticalWindowPosition;