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, 0 insertions, 52 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m b/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m
deleted file mode 100644
index d2750c5b..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonContainerIntegration.m
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// 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