aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m45
1 files changed, 0 insertions, 45 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m b/Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m
deleted file mode 100644
index 3e365b34..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWCustomViewIntegration.m
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-// BWGradientSplitViewSubviewIntegration.m
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
-#import "BWCustomView.h"
-#import "IBColor.h"
-
-@implementation BWCustomView ( BWCustomViewIntegration )
-
-- (NSView *)ibDesignableContentView
-{
- return self;
-}
-
-- (NSColor *)containerCustomViewBackgroundColor
-{
- return [IBColor containerCustomViewBackgroundColor];
-}
-
-- (NSColor *)childlessCustomViewBackgroundColor
-{
- return [IBColor childlessCustomViewBackgroundColor];
-}
-
-- (NSColor *)customViewDarkTexturedBorderColor
-{
- return [IBColor customViewDarkTexturedBorderColor];
-}
-
-- (NSColor *)customViewDarkBorderColor
-{
- return [IBColor customViewDarkBorderColor];
-}
-
-- (NSColor *)customViewLightBorderColor
-{
- return [IBColor customViewLightBorderColor];
-}
-
-@end