diff options
author | avenjamin <avenjamin@gmail.com> | 2009-12-20 01:19:52 +0000 |
---|---|---|
committer | avenjamin <avenjamin@gmail.com> | 2009-12-20 01:19:52 +0000 |
commit | ea1b48967ce34718d2645c4a30fab6b67e66f9fa (patch) | |
tree | a51ebe2f74a0c8e6c89f085df4240336c98aedf7 /Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m | |
parent | c25a2f4561a4cde2d2d9a431cd941704d79bb428 (diff) | |
download | sequelpro-ea1b48967ce34718d2645c4a30fab6b67e66f9fa.tar.gz sequelpro-ea1b48967ce34718d2645c4a30fab6b67e66f9fa.tar.bz2 sequelpro-ea1b48967ce34718d2645c4a30fab6b67e66f9fa.zip |
- 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
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m')
-rw-r--r-- | Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m b/Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m deleted file mode 100644 index 078342f8..00000000 --- a/Frameworks/BWToolkitFramework.framework/BWTransparentButtonCell.m +++ /dev/null @@ -1,104 +0,0 @@ -// -// BWTransparentButtonCell.m -// BWToolkit -// -// Created by Brandon Walkin (www.brandonwalkin.com) -// All code is provided under the New BSD license. -// - -#import "BWTransparentButtonCell.h" -#import "NSImage+BWAdditions.h" - -static NSImage *buttonLeftN, *buttonFillN, *buttonRightN, *buttonLeftP, *buttonFillP, *buttonRightP; -static NSColor *disabledColor, *enabledColor; - -@interface NSCell (BWTBCPrivate) -- (NSDictionary *)_textAttributes; -@end - -@interface BWTransparentButtonCell (BWTBCPrivate) -- (NSColor *)interiorColor; -@end - -@implementation BWTransparentButtonCell - -+ (void)initialize; -{ - NSBundle *bundle = [NSBundle bundleForClass:[BWTransparentButtonCell class]]; - - buttonLeftN = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonLeftN.tiff"]]; - buttonFillN = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonFillN.tiff"]]; - buttonRightN = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonRightN.tiff"]]; - buttonLeftP = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonLeftP.tiff"]]; - buttonFillP = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonFillP.tiff"]]; - buttonRightP = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"TransparentButtonRightP.tiff"]]; - - enabledColor = [[NSColor whiteColor] retain]; - disabledColor = [[NSColor colorWithCalibratedWhite:0.6 alpha:1] retain]; -} - -- (void)drawBezelWithFrame:(NSRect)cellFrame inView:(NSView *)controlView -{ - cellFrame.size.height = buttonFillN.size.height; - - if ([self isHighlighted]) - NSDrawThreePartImage(cellFrame, buttonLeftP, buttonFillP, buttonRightP, NO, NSCompositeSourceOver, 1, YES); - else - NSDrawThreePartImage(cellFrame, buttonLeftN, buttonFillN, buttonRightN, NO, NSCompositeSourceOver, 1, YES); -} - -- (void)drawImage:(NSImage *)image withFrame:(NSRect)frame inView:(NSView *)controlView -{ - frame.origin.y -= 2; - - if ([[image name] isEqualToString:@"NSActionTemplate"]) - [image setSize:NSMakeSize(10,10)]; - - NSImage *newImage = image; - - if ([image isTemplate]) - newImage = [image tintedImageWithColor:[self interiorColor]]; - - [super drawImage:newImage withFrame:frame inView:controlView]; -} - -- (NSRect)drawTitle:(NSAttributedString *)title withFrame:(NSRect)frame inView:(NSView *)controlView -{ - frame.origin.y -= 4; - - return [super drawTitle:title withFrame:frame inView:controlView]; -} - -- (NSDictionary *)_textAttributes -{ - NSMutableDictionary *attributes = [[[NSMutableDictionary alloc] init] autorelease]; - [attributes addEntriesFromDictionary:[super _textAttributes]]; - [attributes setObject:[NSFont systemFontOfSize:11] forKey:NSFontAttributeName]; - [attributes setObject:[self interiorColor] forKey:NSForegroundColorAttributeName]; - - return attributes; -} - -- (NSColor *)interiorColor -{ - NSColor *interiorColor; - - if ([self isEnabled]) - interiorColor = enabledColor; - else - interiorColor = disabledColor; - - return interiorColor; -} - -- (NSControlSize)controlSize -{ - return NSSmallControlSize; -} - -- (void)setControlSize:(NSControlSize)size -{ - -} - -@end |