forked from coo-ona/cooViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOColorPopUpButton.m
181 lines (166 loc) · 5.2 KB
/
COColorPopUpButton.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
#import "COColorPopUpButton.h"
@implementation COColorPopUpButton
- (void)windowDidResignKey:(NSNotification *)aNotification
{
[[aNotification object] orderOut:self];
[self changeColor:[aNotification object]];
}
- (void)setCurrentColor:(NSColor*)aColor
{
[currentColor autorelease];
currentColor = [aColor retain];
NSArray *itemArray = [self itemArray];
int i;
for (i=0;i<[itemArray count];i++) {
NSMenuItem *item = [self itemAtIndex:i];
if ([aColor isEqualTo:[item representedObject]]) {
[self selectItemAtIndex:i];
item = (NSMenuItem*)[self lastItem];
[item setImage:nil];
return;
}
}
NSMenuItem *item = [self lastItem];
NSImage *image = [[NSImage alloc] initWithSize:NSMakeSize(12,12)];
[image lockFocus];
[[NSColor grayColor] set];
NSFrameRect(NSMakeRect(0,0,12,12));
[currentColor set];
NSRectFill(NSMakeRect(1,1,10,10));
[image unlockFocus];
[item setImage:image];
[image release];
[self selectItemAtIndex:[self numberOfItems]-1];
}
- (NSColor*)currentColor
{
return currentColor;
}
- (void)changeColor:(id)sender
{
[currentColor autorelease];
currentColor = [[sender color] retain];
NSMenuItem *item = [self lastItem];
NSImage *image = [[NSImage alloc] initWithSize:NSMakeSize(12,12)];
[image lockFocus];
[[NSColor grayColor] set];
NSFrameRect(NSMakeRect(0,0,12,12));
[currentColor set];
NSRectFill(NSMakeRect(1,1,10,10));
[image unlockFocus];
[item setImage:image];
[image release];
[self selectItemAtIndex:[self numberOfItems]-1];
[[self target] performSelector:[self action] withObject:self];
}
- (void)selectItem:(id)sender
{
if (sender == [self lastItem]) {
NSColorPanel *panel = [NSColorPanel sharedColorPanel];
[panel setColor:currentColor];
[panel setLevel:NSMainMenuWindowLevel];
[panel setContinuous:NO];
[panel setDelegate:(id)self];
[panel makeKeyAndOrderFront:self];
} else {
[self setCurrentColor:[sender representedObject]];
[[self target] performSelector:[self action] withObject:self];
}
}
-(void)awakeFromNib
{
[[NSColorPanel sharedColorPanel] setShowsAlpha:YES];
NSImage *image;
NSMenuItem *item;
NSColor *frameColor = [NSColor grayColor];
NSColor *fillColor;
[self removeAllItems];
[self addItemWithTitle:@"White"];
[self addItemWithTitle:@"LightGray"];
[self addItemWithTitle:@"Gray"];
[self addItemWithTitle:@"DarkGray"];
[self addItemWithTitle:@"Black"];
[self addItemWithTitle:@"Blue"];
[self addItemWithTitle:@"Cyan"];
[self addItemWithTitle:@"Green"];
[self addItemWithTitle:@"Magenta"];
[self addItemWithTitle:@"Orange"];
[self addItemWithTitle:@"Purple"];
[self addItemWithTitle:@"Red"];
[self addItemWithTitle:@"Yellow"];
[self addItemWithTitle:@"Clear"];
[self addItemWithTitle:@"Other..."];
NSArray *itemArray = [self itemArray];
int i;
for (i=0;i<[itemArray count];i++) {
item = (NSMenuItem*)[self itemAtIndex:i];
NSString *title = [item title];
if ([title isEqualToString:@"Other..."]) {
[item setAction:@selector(selectItem:)];
[item setTarget:self];
return;
} else if ([title isEqualToString:@"White"]) {
fillColor = [NSColor whiteColor];
} else if ([title isEqualToString:@"LightGray"]) {
fillColor = [NSColor lightGrayColor];
} else if ([title isEqualToString:@"Gray"]) {
fillColor = [NSColor grayColor];
} else if ([title isEqualToString:@"DarkGray"]) {
fillColor = [NSColor darkGrayColor];
} else if ([title isEqualToString:@"Black"]) {
fillColor = [NSColor blackColor];
} else if ([title isEqualToString:@"Blue"]) {
fillColor = [NSColor blueColor];
} else if ([title isEqualToString:@"Brown"]) {
fillColor = [NSColor brownColor];
} else if ([title isEqualToString:@"Cyan"]) {
fillColor = [NSColor cyanColor];
} else if ([title isEqualToString:@"Green"]) {
fillColor = [NSColor greenColor];
} else if ([title isEqualToString:@"Magenta"]) {
fillColor = [NSColor magentaColor];
} else if ([title isEqualToString:@"Orange"]) {
fillColor = [NSColor orangeColor];
} else if ([title isEqualToString:@"Purple"]) {
fillColor = [NSColor purpleColor];
} else if ([title isEqualToString:@"Red"]) {
fillColor = [NSColor redColor];
} else if ([title isEqualToString:@"Yellow"]) {
fillColor = [NSColor yellowColor];
}
if ([title isEqualToString:@"Clear"]) {
fillColor = [NSColor clearColor];
NSBezierPath *path = [[NSBezierPath alloc] init];
[path moveToPoint:NSMakePoint(0,0)];
[path lineToPoint:NSMakePoint(12,12)];
[path moveToPoint:NSMakePoint(12,0)];
[path lineToPoint:NSMakePoint(0,12)];
image = [[NSImage alloc] initWithSize:NSMakeSize(12,12)];
[image lockFocus];
[frameColor set];
NSFrameRect(NSMakeRect(0,0,12,12));
[path stroke];
[image unlockFocus];
[item setImage:image];
[item setAction:@selector(selectItem:)];
[item setTarget:self];
[item setRepresentedObject:fillColor];
[image release];
[path release];
} else {
image = [[NSImage alloc] initWithSize:NSMakeSize(12,12)];
[image lockFocus];
[frameColor set];
NSFrameRect(NSMakeRect(0,0,12,12));
[fillColor set];
NSRectFill(NSMakeRect(1,1,10,10));
[image unlockFocus];
[item setImage:image];
[item setAction:@selector(selectItem:)];
[item setTarget:self];
[item setRepresentedObject:fillColor];
[image release];
}
}
}
@end