aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m29
1 files changed, 29 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m b/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
new file mode 100644
index 00000000..306fc3a6
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
@@ -0,0 +1,29 @@
+//
+// BWStyledTextFieldIntegration.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
+#import "BWStyledTextField.h"
+#import "BWStyledTextFieldInspector.h"
+
+@implementation BWStyledTextField (BWStyledTextFieldIntegration)
+
+- (void)ibPopulateKeyPaths:(NSMutableDictionary *)keyPaths
+{
+ [super ibPopulateKeyPaths:keyPaths];
+
+ [[keyPaths objectForKey:IBAttributeKeyPaths] addObjectsFromArray:[NSArray arrayWithObjects:@"shadowIsBelow", @"hasShadow", @"shadowColor", @"startingColor", @"endingColor", @"hasGradient", @"solidColor", nil]];
+}
+
+- (void)ibPopulateAttributeInspectorClasses:(NSMutableArray *)classes
+{
+ [super ibPopulateAttributeInspectorClasses:classes];
+
+ [classes addObject:[BWStyledTextFieldInspector class]];
+}
+
+@end