From ea1b48967ce34718d2645c4a30fab6b67e66f9fa Mon Sep 17 00:00:00 2001 From: avenjamin Date: Sun, 20 Dec 2009 01:19:52 +0000 Subject: - Updating Growl to 1.2 - Updating BWToolkit to 1.2.2 - Changed BWToolkit from building it ourselves to just include the latest release of the framework - Changed build settings to build 32 and 64 universal binaries - Changed compiler to Clang --- .../BWStyledTextFieldInspector.m | 80 ---------------------- 1 file changed, 80 deletions(-) delete mode 100644 Frameworks/BWToolkitFramework.framework/BWStyledTextFieldInspector.m (limited to 'Frameworks/BWToolkitFramework.framework/BWStyledTextFieldInspector.m') diff --git a/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldInspector.m b/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldInspector.m deleted file mode 100644 index f5162129..00000000 --- a/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldInspector.m +++ /dev/null @@ -1,80 +0,0 @@ -// -// BWStyledTextFieldInspector.m -// BWToolkit -// -// Created by Brandon Walkin (www.brandonwalkin.com) -// All code is provided under the New BSD license. -// - -#import "BWStyledTextFieldInspector.h" - -@implementation BWStyledTextFieldInspector - -@synthesize shadowPositionPopupSelection, fillPopupSelection; - -- (NSString *)viewNibName -{ - return @"BWStyledTextFieldInspector"; -} - -- (void)refresh -{ - [super refresh]; - - textField = [[self inspectedObjects] objectAtIndex:0]; - - // Update the popup selections in case of an undo operation - if (![textField hasShadow]) - { - [self setShadowPositionPopupSelection:0]; - } - else - { - if ([textField shadowIsBelow]) - [self setShadowPositionPopupSelection:3]; - else - [self setShadowPositionPopupSelection:2]; - } - - if ([textField hasGradient]) - [self setFillPopupSelection:1]; - else - [self setFillPopupSelection:0]; -} - -+ (BOOL)supportsMultipleObjectInspection -{ - return NO; -} - -- (void)setFillPopupSelection:(int)anInt -{ - fillPopupSelection = anInt; - - if (fillPopupSelection == 0) - [textField setHasGradient:NO]; - else - [textField setHasGradient:YES]; -} - -- (void)setShadowPositionPopupSelection:(int)anInt -{ - shadowPositionPopupSelection = anInt; - - if (shadowPositionPopupSelection == 2) - { - [textField setHasShadow:YES]; - [textField setShadowIsBelow:NO]; - } - else if (shadowPositionPopupSelection == 3) - { - [textField setHasShadow:YES]; - [textField setShadowIsBelow:YES]; - } - else - { - [textField setHasShadow:NO]; - } -} - -@end -- cgit v1.2.3