Adding Kent's ITTabView class to the ITKit. Please add this class to ITKitTester.
[ITKit.git] / ITTabView.h
diff --git a/ITTabView.h b/ITTabView.h
new file mode 100755 (executable)
index 0000000..7f86e74
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ *     ITKit
+ *  ITTabView
+ *    NSTabView subclass which includes convenience features
+ *
+ *  Original Author : Joseph Spiros <kent.sutherland@ithinksw.com>
+ *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *   Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
+ *
+ *  Copyright (c) 2002 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
+/*
+ *     This subclass enables drag-and-drop for tab view items.
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@interface ITTabView : NSTabView
+{
+    NSTabViewItem *_draggedTab;
+}
+@end