aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m48
1 files changed, 48 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m b/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m
new file mode 100644
index 00000000..eacd2581
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m
@@ -0,0 +1,48 @@
+//
+// BWGradientBoxInspector.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import "BWGradientBoxInspector.h"
+
+@implementation BWGradientBoxInspector
+
+@synthesize fillPopupSelection;
+
+- (NSString *)viewNibName
+{
+ return @"BWGradientBoxInspector";
+}
+
+- (void)refresh
+{
+ [super refresh];
+
+ box = [[self inspectedObjects] objectAtIndex:0];
+
+ // Update the popup selections in case of an undo operation
+ if ([box hasGradient])
+ [self setFillPopupSelection:1];
+ else
+ [self setFillPopupSelection:0];
+}
+
++ (BOOL)supportsMultipleObjectInspection
+{
+ return NO;
+}
+
+- (void)setFillPopupSelection:(int)anInt
+{
+ fillPopupSelection = anInt;
+
+ if (fillPopupSelection == 0)
+ [box setHasGradient:NO];
+ else
+ [box setHasGradient:YES];
+}
+
+@end