-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMKColorWell.m
216 lines (183 loc) · 6.29 KB
/
MKColorWell.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
213
214
215
216
//
// MKColorWell.m
// Color Picker
//
// Created by Mark Dodwell on 5/26/12.
// Copyright (c) 2012 mkdynamic. All rights reserved.
//
#import "MKColorWell.h"
#import "MKColorPickerView.h"
#import "MKColorWell+Bindings.h"
@interface MKColorWell ()
- (void)setupPopover;
- (NSPopover *)createPopover;
- (NSViewController *)createPopoverViewController;
- (MKColorPickerView *)createPopoverView;
- (NSArray *)colorsForPopover;
@end
@implementation MKColorWell
@synthesize animatePopover = _animatePopover;
// NOTE you can subclass and define your own colors here
- (NSArray *)colorsForPopover
{
// create popover view
NSMutableArray *colors = [NSMutableArray array];
NSColor *color;
int stepHue = 12;
int stepSaturation = 5;
int stepBrightness = 5;
int stepGray = stepSaturation + stepBrightness - 3;
float hue;
float saturation;
float brightness;
// transparent
[colors addObject:[NSColor clearColor]];
// gray
hue = 0;
saturation = 0;
brightness = 1;
while (brightness >= 0) {
color = [NSColor colorWithDeviceHue:hue
saturation:saturation
brightness:brightness
alpha:1.0];
[colors addObject:color];
brightness -= 1.f / stepGray;
}
// colors
hue = 0;
while (hue <= 1.f) {
saturation = 1.f / stepSaturation;
brightness = 1;
while (saturation <= 1.f) {
color = [NSColor colorWithDeviceHue:hue
saturation:saturation
brightness:brightness
alpha:1.0];
[colors addObject:color];
saturation += 1.f / stepSaturation;
}
saturation = 1.f;
brightness = 1 - (1.f / stepBrightness);
while (brightness >= (1.f / stepBrightness)) {
color = [NSColor colorWithDeviceHue:hue
saturation:saturation
brightness:brightness
alpha:1.0];
[colors addObject:color];
brightness -= 1.f / stepBrightness;
}
hue += 1.f / stepHue;
}
return colors;
}
- (NSPopover *)createPopover
{
NSPopover *aPopover = [[NSPopover alloc] init];
[aPopover setBehavior:NSPopoverBehaviorSemitransient];
[aPopover setAnimates:self.animatePopover];
return aPopover;
}
- (void)setAnimatePopover:(BOOL)animatePopover {
_animatePopover = animatePopover;
self->popover.animates = animatePopover;
}
- (NSViewController *)createPopoverViewController
{
NSViewController *aPopoverViewController = [[NSViewController alloc] init];
return aPopoverViewController;
}
- (MKColorPickerView *)createPopoverView
{
NSArray *colors = [self colorsForPopover];
uint rows = 13;
NSSize swatchSize = NSMakeSize(15, 15);
MKColorPickerView *aPopoverView;
aPopoverView = [[MKColorPickerView alloc] initWithColors:colors
numberOfRows:rows
numberOfColumns:[colors count] / rows
swatchSize:swatchSize
targetColorWell:self];
return aPopoverView;
}
- (void)setupPopover
{
popover = [self createPopover];
popoverViewController = [self createPopoverViewController];
popoverView = [self createPopoverView];
popover.contentViewController = popoverViewController;
popoverViewController.view = popoverView;
}
- (void)setColorAndClose:(NSColor *)color
{
[self setColor:color];
[self propagateValue:color forBinding:@"value"];
[popover performClose:self];
}
- (void)awakeFromNib
{
[self setupPopover];
}
- (BOOL)isOpaque
{
return NO;
}
- (void)drawRect:(NSRect)dirtyRect
{
[[NSColor clearColor] set];
NSRectFillUsingOperation([self bounds], NSCompositeSourceOver);
NSRect offsetBounds = NSOffsetRect(NSInsetRect([self bounds], 1, 1), 0, 1);
NSRect colorBlockBounds = NSInsetRect(offsetBounds, 2, 2);
if ([self isEnabled]) {
if ([self.color isEqualTo:[NSColor clearColor]]) {
[[NSColor whiteColor] setFill];
NSRectFill(colorBlockBounds);
NSBezierPath *line = [NSBezierPath bezierPath];
[line moveToPoint:NSMakePoint(NSMinX(offsetBounds), NSMinY(offsetBounds))];
[line lineToPoint:NSMakePoint(NSMaxX(offsetBounds), NSMaxY(offsetBounds))];
[line setLineWidth:1.5];
[line setLineCapStyle:NSRoundLineCapStyle];
[[NSColor redColor] setStroke];
[[NSGraphicsContext currentContext] saveGraphicsState];
[[NSBezierPath bezierPathWithRect:offsetBounds] setClip];
[line stroke];
[[NSGraphicsContext currentContext] restoreGraphicsState];
} else {
[self.color setFill];
NSRectFill(colorBlockBounds);
}
} else {
[[NSColor colorWithDeviceWhite:.9 alpha:1] setFill];
NSRectFill(colorBlockBounds);
}
NSBezierPath *outline = [NSBezierPath bezierPathWithRect:NSInsetRect(offsetBounds, 0.5, 0.5)];
[outline setLineWidth:1.0];
if ([self isEnabled]) {
[[NSColor grayColor] setStroke];
} else {
[[NSColor colorWithDeviceWhite:.75 alpha:1] setStroke];
}
[outline stroke];
NSBezierPath *highlight = [NSBezierPath bezierPath];
[highlight moveToPoint:NSMakePoint(offsetBounds.origin.x, offsetBounds.origin.y - 0.5)];
[highlight lineToPoint:NSMakePoint(offsetBounds.size.width + 1, offsetBounds.origin.y - 0.5)];
[highlight setLineWidth:1.0];
if ([self isEnabled]) {
[[NSColor whiteColor] setStroke];
} else {
[[NSColor colorWithDeviceWhite:1.0 alpha:0.25] setStroke];
}
[highlight stroke];
}
- (void)mouseDown:(NSEvent *)theEvent
{
if (![self isEnabled]) return;
if ([popover isShown]) {
[popover performClose:self];
} else {
[popover showRelativeToRect:[self frame]
ofView:[self superview]
preferredEdge:NSMinYEdge];
}
}
@end