forked from atg/Ingredients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IGKMatteButton.m
212 lines (168 loc) · 7.31 KB
/
IGKMatteButton.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
//
// IGKMatteButton.m
// Ingredients
//
// Created by Alex Gordon on 19/06/2010.
// Written in 2010 by Fileability.
//
#import "IGKMatteButton.h"
@implementation IGKMatteButton
- (void)drawRect:(NSRect)rect
{
rect = [self bounds];
NSImage *image = [[NSImage alloc] initWithSize:rect.size];
[image lockFocus];
BOOL isSelected = mouseState != 0;
float width = rect.size.width;
//Create a bezier path
const double radius = 4.0;
NSRect strokeRect = NSMakeRect(0, 1, width, rect.size.height - 1.0);
if (!isSelected)
{
strokeRect.size.height -= 1.0;
NSBezierPath *bottomHighlightPath = [NSBezierPath bezierPathWithRoundedRect:strokeRect xRadius:radius yRadius:radius];
[[NSColor colorWithCalibratedWhite:1.0 alpha:0.25] set];
[bottomHighlightPath fill];
strokeRect.origin.y += 1.0;
NSBezierPath *strokePath = [NSBezierPath bezierPathWithRoundedRect:strokeRect xRadius:radius yRadius:radius];
NSRect fillRect = NSInsetRect(strokeRect, 1.0, 1.0);
NSBezierPath *fillHighlightPath = [NSBezierPath bezierPathWithRoundedRect:fillRect xRadius:radius - 1 yRadius:radius - 1];
fillRect.size.height -= 1.0;
NSBezierPath *fillPath = [NSBezierPath bezierPathWithRoundedRect:fillRect xRadius:radius - 1 yRadius:radius - 1];
NSGradient *strokeGradient = [[NSGradient alloc] initWithStartingColor:[NSColor colorWithCalibratedRed:0.484 green:0.484 blue:0.484 alpha:1.000] endingColor:[NSColor colorWithCalibratedRed:0.484 green:0.484 blue:0.484 alpha:1.000]];
[strokeGradient drawInBezierPath:strokePath angle:90];
[[NSColor colorWithCalibratedRed:0.907 green:0.907 blue:0.907 alpha:1.000] set];
[fillHighlightPath fill];
NSGradient *fillGradient = [[NSGradient alloc] initWithStartingColor:[NSColor colorWithCalibratedRed:0.728 green:0.728 blue:0.728 alpha:1.000] endingColor:[NSColor colorWithCalibratedRed:0.878 green:0.878 blue:0.878 alpha:1.000]];
[fillGradient drawInBezierPath:fillPath angle:90];
}
else
{
NSRect pressedRect = strokeRect;
pressedRect.size.height -= 1.0;
pressedRect.origin.y += 1.0;
NSBezierPath *pressedPath = [NSBezierPath bezierPathWithRoundedRect:pressedRect xRadius:radius yRadius:radius];
NSShadow *insideShadow = [[NSShadow alloc] initWithColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.6] offset:NSMakeSize(0.0, -1.0) blurRadius:4.0];
[[NSColor colorWithCalibratedRed:0.728 green:0.728 blue:0.728 alpha:1.000] set];
[pressedPath fill];
[pressedPath fillWithInnerShadow:insideShadow];
NSGradient *pressedGradient = [[NSGradient alloc] initWithStartingColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.34]
endingColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.06 + 0.34]];
[pressedGradient drawInBezierPath:pressedPath angle:90];
}
NSDictionary *titleAttributes = [self titleAttributes];
NSSize titleSize = [[self title] sizeWithAttributes:titleAttributes];
// [[self title] drawInRect:NSMakeRect(MAX(ceil([self bounds].size.height / 2.0 - titleSize.height / 2.0), 0), ceil([self bounds].size.height / 2.0 - titleSize.height / 2.0), MIN([self bounds].size.width, titleSize.width), titleSize.height) withAttributes:titleAttributes];
NSRect titleRect = NSMakeRect(ceil([self bounds].size.width / 2.0 - titleSize.width / 2.0),
floor([self bounds].size.height / 2.0 - titleSize.height / 2.0) + 2,
titleSize.width,
titleSize.height);
[[self title] drawInRect:titleRect withAttributes:titleAttributes];
//[[NSColor magentaColor] set];
//NSRectFillUsingOperation(titleRect, NSCompositeSourceOver);
[image unlockFocus];
[image drawInRect:NSMakeRect(0, 0, rect.size.width, rect.size.height)
fromRect:NSZeroRect
operation:NSCompositeSourceOver
fraction:[self isActive] ? 1.0 : 0.75
respectFlipped:YES
hints:nil];
}
- (NSDictionary *)titleAttributes
{
NSMutableDictionary *attrs = [[NSMutableDictionary alloc] initWithCapacity:4];
[attrs setValue:[NSFont systemFontOfSize:13] forKey:NSFontAttributeName];
NSShadow *shadow = nil;
if (mouseState == 0)
{
shadow = [[NSShadow alloc] initWithColor:[NSColor colorWithCalibratedWhite:1.0 alpha:0.5] offset:NSMakeSize(0, -1) blurRadius:0];
[attrs setValue:[NSColor blackColor] forKey:NSForegroundColorAttributeName];
}
else
{
shadow = [[NSShadow alloc] initWithColor:[NSColor blackColor] offset:NSMakeSize(0, -1) blurRadius:0];
[attrs setValue:[NSColor whiteColor] forKey:NSForegroundColorAttributeName];
}
[attrs setValue:shadow forKey:NSShadowAttributeName];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
[paragraphStyle setAlignment:NSCenterTextAlignment];
[paragraphStyle setLineBreakMode:NSLineBreakByTruncatingTail];
return attrs;
}
- (void)mouseDown:(NSEvent *)event
{
NSPoint p = [self convertPoint:[event locationInWindow] fromView:nil];
if (NSPointInRect(p, [self bounds]))
mouseState = 1;
else
mouseState = 0;
if (p.x < 0)
selectedCell = oldSelectedCell;
else if (p.x < 34)
selectedCell = 0;
else if (p.x < 63)
selectedCell = 1;
else if (p.x < 91)
selectedCell = 2;
else
selectedCell = oldSelectedCell;
[self setNeedsDisplay:YES];
}
- (void)mouseDragged:(NSEvent *)event
{
[self mouseDown:event];
}
- (void)mouseUp:(NSEvent *)event
{
NSPoint p = [self convertPoint:[event locationInWindow] fromView:nil];
if (selectedCell == -1 || selectedCell == oldSelectedCell)
{
selectedCell = oldSelectedCell;
}
else
{
oldSelectedCell = selectedCell;
if (NSPointInRect(p, [self bounds]))
if ([[self target] respondsToSelector:[self action]])
[[self target] performSelector:[self action]];
}
mouseState = 0;
[self setNeedsDisplay:YES];
}
#pragma mark Redrawing when the window becomes Active/Inactive
- (void)viewWillMoveToWindow:(NSWindow *)window
{
//NSLog(@"viewWillMoveToWindow: %d", [self isActive]);
if (window)
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(windowDidBecomeMain:) name:NSWindowDidBecomeKeyNotification object:window];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(windowDidResignMain:) name:NSWindowDidResignKeyNotification object:window];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(windowDidBecomeMain:) name:NSWindowDidBecomeMainNotification object:window];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(windowDidResignMain:) name:NSWindowDidResignMainNotification object:window];
}
else
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowDidBecomeKeyNotification object:[self window]];
[[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowDidResignKeyNotification object:[self window]];
[[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowDidBecomeMainNotification object:[self window]];
[[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowDidResignMainNotification object:[self window]];
}
[self setNeedsDisplay:YES];
}
- (void)viewDidMoveToWindow
{
[self setNeedsDisplay:YES];
}
- (void)windowDidBecomeMain:(NSNotification *)notif
{
[self setNeedsDisplay:YES];
}
- (void)windowDidResignMain:(NSNotification *)notif
{
[self setNeedsDisplay:YES];
}
- (BOOL)isActive
{
return [[self window] isMainWindow] || ([NSStringFromClass([[self window] class]) isEqual:@"_NSFullScreenWindow"] && [[self window] isKeyWindow]);
}
@end