forked from glebd/bwtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBWAnchoredButtonCell.m
184 lines (145 loc) · 6.59 KB
/
BWAnchoredButtonCell.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
//
// BWAnchoredButtonCell.m
// BWToolkit
//
// Created by Brandon Walkin (www.brandonwalkin.com)
// All code is provided under the New BSD license.
//
#import "BWAnchoredButtonCell.h"
#import "BWAnchoredButtonBar.h"
#import "BWAnchoredButton.h"
#import "NSColor+BWAdditions.h"
#import "NSImage+BWAdditions.h"
static NSColor *fillStop1, *fillStop2, *fillStop3, *fillStop4;
static NSColor *topBorderColor, *bottomBorderColor, *sideBorderColor, *sideInsetColor, *pressedColor;
static NSColor *enabledTextColor, *disabledTextColor, *enabledImageColor, *disabledImageColor;
static NSColor *borderedSideBorderColor, *borderedTopBorderColor;
static NSGradient *fillGradient;
static NSShadow *contentShadow;
@interface NSCell (BWABCPrivate)
- (NSDictionary *)_textAttributes;
@end
@interface BWAnchoredButtonCell (BWABCPrivate)
- (NSColor *)textColor;
- (NSColor *)imageColor;
- (NSRect)highlightRectForBounds:(NSRect)cellFrame;
@end
@implementation BWAnchoredButtonCell
+ (void)initialize;
{
fillStop1 = [[NSColor colorWithCalibratedWhite:(253.0f / 255.0f) alpha:1] retain];
fillStop2 = [[NSColor colorWithCalibratedWhite:(242.0f / 255.0f) alpha:1] retain];
fillStop3 = [[NSColor colorWithCalibratedWhite:(230.0f / 255.0f) alpha:1] retain];
fillStop4 = [[NSColor colorWithCalibratedWhite:(230.0f / 255.0f) alpha:1] retain];
fillGradient = [[NSGradient alloc] initWithColorsAndLocations:
fillStop1, (CGFloat)0.0,
fillStop2, (CGFloat)0.45454,
fillStop3, (CGFloat)0.45454,
fillStop4, (CGFloat)1.0,
nil];
topBorderColor = [[NSColor colorWithCalibratedWhite:(202.0f / 255.0f) alpha:1] retain];
bottomBorderColor = [[NSColor colorWithCalibratedWhite:(170.0f / 255.0f) alpha:1] retain];
sideBorderColor = [[NSColor colorWithCalibratedWhite:(0.0f / 255.0f) alpha:0.2] retain];
sideInsetColor = [[NSColor colorWithCalibratedWhite:(255.0f / 255.0f) alpha:0.5] retain];
pressedColor = [[NSColor colorWithCalibratedWhite:(0.0f / 255.0f) alpha:0.35] retain];
enabledTextColor = [[NSColor colorWithCalibratedWhite:(10.0f / 255.0f) alpha:1] retain];
disabledTextColor = [[enabledTextColor colorWithAlphaComponent:0.6] retain];
enabledImageColor = [[NSColor colorWithCalibratedWhite:(72.0f / 255.0f) alpha:1] retain];
disabledImageColor = [[enabledImageColor colorWithAlphaComponent:0.6] retain];
borderedSideBorderColor = [[NSColor colorWithCalibratedWhite:(0.0f / 255.0f) alpha:0.25] retain];
borderedTopBorderColor = [[NSColor colorWithCalibratedWhite:(190.0f / 255.0f) alpha:1] retain];
contentShadow = [[NSShadow alloc] init];
[contentShadow setShadowOffset:NSMakeSize(0,-1)];
[contentShadow setShadowColor:[NSColor colorWithCalibratedWhite:(255.0f / 255.0f) alpha:0.75]];
}
- (NSControlSize)controlSize
{
return NSSmallControlSize;
}
- (void)setControlSize:(NSControlSize)size
{
}
#pragma mark Draw Bezel
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
[super drawWithFrame:cellFrame inView:controlView];
if ([self isHighlighted])
{
[pressedColor set];
NSRectFillUsingOperation([self highlightRectForBounds:cellFrame], NSCompositeSourceOver);
}
}
- (NSRect)highlightRectForBounds:(NSRect)bounds
{
return bounds;
}
- (void)drawBezelWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
BOOL inBorderedBar = YES;
if ([[[self controlView] superview] respondsToSelector:@selector(isAtBottom)])
{
if ([(BWAnchoredButtonBar *)[[self controlView] superview] isAtBottom])
inBorderedBar = NO;
}
[fillGradient drawInRect:cellFrame angle:90];
[bottomBorderColor bwDrawPixelThickLineAtPosition:0 withInset:0 inRect:cellFrame inView:[self controlView] horizontal:YES flip:YES];
[sideInsetColor bwDrawPixelThickLineAtPosition:1 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:NO];
[sideInsetColor bwDrawPixelThickLineAtPosition:1 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:YES];
if (inBorderedBar)
{
[borderedTopBorderColor bwDrawPixelThickLineAtPosition:0 withInset:0 inRect:cellFrame inView:[self controlView] horizontal:YES flip:NO];
[borderedSideBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:NO];
[borderedSideBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:YES];
}
else
{
[topBorderColor bwDrawPixelThickLineAtPosition:0 withInset:0 inRect:cellFrame inView:[self controlView] horizontal:YES flip:NO];
[sideBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:NO];
[sideBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:YES];
}
if (inBorderedBar && [[self controlView] respondsToSelector:@selector(isAtLeftEdgeOfBar)])
{
if ([(BWAnchoredButton *)[self controlView] isAtLeftEdgeOfBar])
[bottomBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:NO];
if ([(BWAnchoredButton *)[self controlView] isAtRightEdgeOfBar])
[bottomBorderColor bwDrawPixelThickLineAtPosition:0 withInset:1 inRect:cellFrame inView:[self controlView] horizontal:NO flip:YES];
}
}
#pragma mark Draw Title
- (NSColor *)textColor
{
return [self isEnabled] ? enabledTextColor : disabledTextColor;
}
- (NSDictionary *)_textAttributes
{
NSMutableDictionary *attributes = [[[NSMutableDictionary alloc] init] autorelease];
[attributes addEntriesFromDictionary:[super _textAttributes]];
[attributes setObject:[self textColor] forKey:NSForegroundColorAttributeName];
[attributes setObject:[NSFont systemFontOfSize:11] forKey:NSFontAttributeName];
[attributes setObject:contentShadow forKey:NSShadowAttributeName];
return attributes;
}
- (NSRect)titleRectForBounds:(NSRect)bounds
{
return NSOffsetRect([super titleRectForBounds:bounds], 0, 1);
}
#pragma mark Draw Image
- (NSColor *)imageColor
{
return [self isEnabled] ? enabledImageColor : disabledImageColor;
}
- (void)drawImage:(NSImage *)image withFrame:(NSRect)frame inView:(NSView *)controlView
{
if ([[image name] isEqualToString:@"NSActionTemplate"])
[image setSize:NSMakeSize(10,10)];
NSImage *newImage = image;
// Only tint if the image is a template and shouldn't be rendered as a blue active state
if ([image isTemplate] && !([self showsStateBy] == NSContentsCellMask && [self intValue] == 1))
{
newImage = [image bwTintedImageWithColor:[self imageColor]];
[newImage setTemplate:NO];
[contentShadow set];
}
[super drawImage:newImage withFrame:NSOffsetRect(frame, 0, 1) inView:controlView];
}
@end