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