diff options
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m')
-rw-r--r-- | Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m b/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m deleted file mode 100644 index eacd2581..00000000 --- a/Frameworks/BWToolkitFramework.framework/BWGradientBoxInspector.m +++ /dev/null @@ -1,48 +0,0 @@ -// -// 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 |