git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
CoreImage effect loads only with OS X 10.4.0 through 10.4.5. It crashes 10.4.6 currently.
[ITKit.git]
/
ITTabView.h
diff --git
a/ITTabView.h
b/ITTabView.h
old mode 100755
(executable)
new mode 100644
(file)
index
1c109c8
..
36d1ca6
--- a/
ITTabView.h
+++ b/
ITTabView.h
@@
-1,32
+1,30
@@
/*
* ITKit
/*
* ITKit
- * ITTabView
- * NSTabView subclass which includes convenience features
+ * ITTabView.h
*
*
- * Original Author : Kent Sutherland <kent.sutherland@ithinksw.com>
- * Responsibility : Matt Judy <mjudy@ithinksw.com>
- * Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
+ * NSTabView subclass which allows dragging (reordering) of tab view items.
*
*
- * Copyright (c) 2002 iThink Software.
- * All Rights Reserved
+ * Copyright (c) 2005 by iThink Software.
+ * All Rights Reserved.
+ *
+ * $Id$
*
*
- */
-
-/*
- * This subclass enables drag-and-drop for tab view items.
*/
#import <Cocoa/Cocoa.h>
*/
#import <Cocoa/Cocoa.h>
-@interface ITTabView : NSTabView
-{
-
NSTabViewItem *_draggedTab
;
-
bool _allowsDragging
;
+@interface ITTabView : NSTabView
{
+ NSTabViewItem *_draggedTab;
+
BOOL _allowsDragging
;
+
unsigned int _requiredModifiers
;
}
}
-- (void)setAllowsDragging:(bool)flag;
-- (bool)allowsDragging;
+- (void)setAllowsDragging:(BOOL)flag;
+- (BOOL)allowsDragging;
+
+- (void)setRequiredModifiers:(unsigned int)modifiers;
+- (unsigned int)requiredModifiers;
- (void)moveTab:(NSTabViewItem *)tab toIndex:(int)index;
- (void)moveTab:(NSTabViewItem *)tab toIndex:(int)index;
-@end
+@end
\ No newline at end of file