X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/577abbc3a3ea97ee4db78fd638551956ae4847f7..1d5525ced75adc1fe1508e8c19fcc31af129464e:/ITTabView.h diff --git a/ITTabView.h b/ITTabView.h index 1c109c8..89b5fef 100755 --- a/ITTabView.h +++ b/ITTabView.h @@ -4,10 +4,10 @@ * NSTabView subclass which includes convenience features * * Original Author : Kent Sutherland - * Responsibility : Matt Judy + * Responsibility : Matthew 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