Project fixes so that stuff builds, updates to the Background view, tweaks all over.
[ITKit.git] / ITTabView.h
index 4a03809..278238a 100755 (executable)
@@ -7,7 +7,7 @@
  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
  *   Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
  *
- *  Copyright (c) 2002 iThink Software.
+ *  Copyright (c) 2002 - 2003 iThink Software.
  *  All Rights Reserved
  *
  */
  *     This subclass enables drag-and-drop for tab view items.
  */
 
+
 #import <Cocoa/Cocoa.h>
 
+
 @interface ITTabView : NSTabView
 {
     NSTabViewItem *_draggedTab;
+    bool _allowsDragging;
+    unsigned int _requiredModifiers;
 }
+
+- (void)setAllowsDragging:(bool)flag;
+- (bool)allowsDragging;
+
+- (void)setRequiredModifiers:(unsigned int)modifiers;
+- (unsigned int)requiredModifiers;
+
+- (void)moveTab:(NSTabViewItem *)tab toIndex:(int)index;
+
+
 @end