aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h b/Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h
deleted file mode 100644
index 4ff4a737..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWAnchoredButtonBar.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// BWAnchoredButtonBar.h
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import <Cocoa/Cocoa.h>
-
-@interface BWAnchoredButtonBar : NSView
-{
- BOOL isResizable, isAtBottom, handleIsRightAligned;
- int selectedIndex;
- id splitViewDelegate;
-}
-
-@property BOOL isResizable, isAtBottom, handleIsRightAligned;
-@property int selectedIndex;
-
-// The mode of this bar with a resize handle makes use of some NSSplitView delegate methods. Use the splitViewDelegate for any custom delegate implementations
-// you'd like to provide.
-@property (assign) id splitViewDelegate;
-
-+ (BOOL)wasBorderedBar;
-
-@end