X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/577abbc3a3ea97ee4db78fd638551956ae4847f7..8ae300a55b40e1d20cb094b5b19a76b90ee0a63e:/ITTabView.h diff --git a/ITTabView.h b/ITTabView.h index 1c109c8..278238a 100755 --- a/ITTabView.h +++ b/ITTabView.h @@ -7,7 +7,7 @@ * Responsibility : Matt Judy * Responsibility : Kent Sutherland * - * Copyright (c) 2002 iThink Software. + * Copyright (c) 2002 - 2003 iThink Software. * All Rights Reserved * */ @@ -16,17 +16,24 @@ * This subclass enables drag-and-drop for tab view items. */ + #import + @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