Added a new method, moveTab:toIndex:
[ITKit.git] / ITTabView.h
index 4a03809..1c109c8 100755 (executable)
 @interface ITTabView : NSTabView
 {
     NSTabViewItem *_draggedTab;
+    bool _allowsDragging;
 }
+
+- (void)setAllowsDragging:(bool)flag;
+- (bool)allowsDragging;
+
+- (void)moveTab:(NSTabViewItem *)tab toIndex:(int)index;
+
 @end