aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m45
1 files changed, 0 insertions, 45 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m b/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m
deleted file mode 100644
index 8a86b052..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWUnanchoredButtonIntegration.m
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-// BWUnanchoredButtonIntegration.m
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
-#import "BWUnanchoredButton.h"
-
-@implementation BWUnanchoredButton ( BWUnanchoredButtonIntegration )
-
-- (NSSize)ibMinimumSize
-{
- return NSMakeSize(0,22);
-}
-
-- (NSSize)ibMaximumSize
-{
- return NSMakeSize(100000,22);
-}
-
-- (IBInset)ibLayoutInset
-{
- IBInset inset;
- inset.bottom = 1;
- inset.right = 0;
- inset.top = 1;
- inset.left = 0;
-
- return inset;
-}
-
-- (NSInteger)ibBaselineCount
-{
- return 1;
-}
-
-- (CGFloat)ibBaselineAtIndex:(NSInteger)index
-{
- return 15;
-}
-
-@end