aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m52
1 files changed, 52 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m b/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m
new file mode 100644
index 00000000..d2750c5b
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m
@@ -0,0 +1,52 @@
+//
+// BWUnanchoredButtonContainerIntegration.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
+#import "BWUnanchoredButtonContainer.h"
+#import "BWUnanchoredButton.h"
+
+@implementation BWUnanchoredButtonContainer ( BWUnanchoredButtonContainerIntegration )
+
+- (NSSize)ibMinimumSize
+{
+ return NSMakeSize(45,22);
+}
+
+- (NSSize)ibMaximumSize
+{
+ return NSMakeSize(45,22);
+}
+
+- (BOOL)ibIsChildInitiallySelectable:(id)child
+{
+ return NO;
+}
+
+- (NSArray *)ibDefaultChildren
+{
+ return [self subviews];
+}
+
+- (NSView *)ibDesignableContentView
+{
+ return self;
+}
+
+- (IBInset)ibLayoutInset
+{
+ IBInset inset;
+
+ inset.left = 0;
+ inset.top = 1;
+ inset.bottom = 1;
+ inset.right = 0;
+
+ return inset;
+}
+
+@end