aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m59
1 files changed, 59 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m b/Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m
new file mode 100644
index 00000000..b2e79b02
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWAddSmallBottomBarIntegration.m
@@ -0,0 +1,59 @@
+//
+// BWAddSmallBottomBarIntegration.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
+#import "BWAddSmallBottomBar.h"
+#import "BWAddRegularBottomBar.h"
+#import "BWAddMiniBottomBar.h"
+#import "BWAddSheetBottomBar.h"
+#import "NSWindow+BWAdditions.h"
+
+@interface NSWindow (BWBBPrivate)
+- (void)setBottomCornerRounded:(BOOL)flag;
+@end
+
+@implementation BWAddSmallBottomBar ( BWAddSmallBottomBarIntegration )
+
+- (void)ibDidAddToDesignableDocument:(IBDocument *)document
+{
+ [super ibDidAddToDesignableDocument:document];
+
+ [self performSelector:@selector(addBottomBar) withObject:nil afterDelay:0];
+ [self performSelector:@selector(removeOtherBottomBarViewsInDocument:) withObject:document afterDelay:0];
+}
+
+- (void)addBottomBar
+{
+ if ([[self window] isTextured] == NO)
+ {
+ [[self window] setContentBorderThickness:24 forEdge:NSMinYEdge];
+
+ // Private method
+ if ([[self window] respondsToSelector:@selector(setBottomCornerRounded:)])
+ [[self window] setBottomCornerRounded:YES];
+ }
+}
+
+- (void)removeOtherBottomBarViewsInDocument:(IBDocument *)document
+{
+ NSArray *subviews = [[[self window] contentView] subviews];
+
+ int i;
+ for (i = 0; i < [subviews count]; i++)
+ {
+ NSView *view = [subviews objectAtIndex:i];
+ if (view != self && ([view isKindOfClass:[BWAddRegularBottomBar class]] || [view isKindOfClass:[BWAddSmallBottomBar class]] || [view isKindOfClass:[BWAddMiniBottomBar class]] || [view isKindOfClass:[BWAddSheetBottomBar class]]))
+ {
+ [document removeObject:view];
+ [view removeFromSuperview];
+ }
+ }
+}
+
+
+@end