aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h b/Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h
new file mode 100644
index 00000000..29edb975
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWAnchoredButton.h
@@ -0,0 +1,21 @@
+//
+// BWAnchoredButton.h
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface BWAnchoredButton : NSButton
+{
+ BOOL isAtLeftEdgeOfBar;
+ BOOL isAtRightEdgeOfBar;
+ NSPoint topAndLeftInset;
+}
+
+@property BOOL isAtLeftEdgeOfBar;
+@property BOOL isAtRightEdgeOfBar;
+
+@end