aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h')
-rw-r--r--Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h
new file mode 100644
index 00000000..4ff4a737
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h
@@ -0,0 +1,27 @@
+//
+// 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