forked from steventroughtonsmith/Picker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPickerAppDelegate.m
213 lines (145 loc) · 5.03 KB
/
PickerAppDelegate.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
//
// PickerAppDelegate.m
// Picker
//
// Created by Steven Troughton-Smith on 25/09/2009.
// Copyright 2009 Steven Troughton-Smith. All rights reserved.
//
#import "PickerAppDelegate.h"
#import "PickerBackgroundView.h"
/* A few private APIs we need */
@interface NSToolbarView : NSView // Private API!
-(NSToolbar *)toolbar;
@end
@interface NSColorPanel (_STS_PickerExtras)
-(NSView *)_toolbarView;
@end
@interface NSStatusItem (_STS_PickerExtras)
-(NSWindow *)_window;
@end
@implementation PickerAppDelegate
@synthesize mainView;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
popupWindow = [self createWindow];
_statusItem = [[[NSStatusBar systemStatusBar]
statusItemWithLength:NSSquareStatusItemLength] retain];
[_statusItem setImage:[NSImage imageNamed:@"wheel"]];
[_statusItem setTarget:self];
[_statusItem setAction:@selector(menuWillOpen:)];
}
-(NSWindow *)createWindow
{
PickerBackgroundView *v = [[PickerBackgroundView alloc] initWithFrame:NSMakeRect(0, 0, 320, 410)];
NSRect vFrame = v.bounds;
vFrame.size.height-=10;
NSWindow *win = [[NSWindow alloc] initWithContentRect:v.frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
[win setHasShadow:YES];
[win setLevel:NSStatusWindowLevel];
[win setOpaque:NO];
[win setBackgroundColor:[NSColor clearColor]];
[win setCollectionBehavior:NSWindowCollectionBehaviorStationary];
[win setContentView:v];
[v release];
return win;
}
-(void)populate
{
NSView *v = [popupWindow contentView];
NSRect vFrame = [v frame];
vFrame.size.height-=10;
NSColorPanel *picker = [NSColorPanel sharedColorPanel];
[[picker valueForKey:@"_colorSwatch"] performSelector:@selector(readColors)]; // Private API
[picker setFrame:vFrame display:YES];
NSToolbarView *toolbar = [picker _toolbarView]; // Private API
NSView *content = [picker contentView];
NSToolbar *tb = nil;
if ([toolbar respondsToSelector:@selector(toolbar)])
{
/* Private API ! */
tb = [toolbar toolbar];
}
if (tb)
{
BOOL insert = YES;
for (NSToolbarItem *item in [tb items])
{
if ([[item itemIdentifier] isEqualToString:@"com.steventroughtonsmith.picker.settings"])
insert = NO;
}
if (insert)
{
NSToolbarItem *settingsMenuItem = [[NSToolbarItem alloc] initWithItemIdentifier:@"com.steventroughtonsmith.picker.settings"];
[settingsMenuItem setLabel:@"Settings"];
NSPopUpButton *sb = [[NSPopUpButton alloc] initWithFrame:NSMakeRect(0, 0, 42, 29) pullsDown:NO];
[sb setImage:[NSImage imageNamed:@"NSAdvanced"]];
//[sb setBezelStyle:NSRecessedBezelStyle];
[sb setBordered:NO];
NSMenu *settingsMenu = [[NSMenu alloc] initWithTitle:@"Settings"];
[sb setMenu:[self createSettingsMenu]];
[settingsMenuItem setView:sb];
[tb _insertItem:settingsMenuItem atIndex:0 notifyDelegate:YES notifyView:YES notifyFamilyAndUpdateDefaults:YES]; // Private API
[settingsMenuItem release];
}
}
[toolbar setFrame:NSMakeRect(0, vFrame.size.height- toolbar.frame.size.height, vFrame.size.width, toolbar.frame.size.height)];
[content setFrame:NSMakeRect(0, 0, vFrame.size.width, vFrame.size.height-toolbar.frame.size.height)];
[v addSubview:toolbar];
[v addSubview:content];
}
-(void)menuWillOpen:(NSMenu *)s
{
if ([popupWindow isVisible])
{
[[NSAnimationContext currentContext] setDuration:0.15];
[[popupWindow animator] setAlphaValue:0.0];
[popupWindow performSelector:@selector(orderOut:) withObject:self afterDelay:0.3];
}
else
{
[self populate];
NSRect frame = popupWindow.frame;
frame.origin.x = [[_statusItem _window] frame].origin.x-5;
frame.origin.y = [[_statusItem _window] frame].origin.y - [popupWindow frame].size.height;
if (frame.origin.x+[popupWindow frame].size.width > [[popupWindow screen] frame].size.width)
{
frame.origin.x = [[popupWindow screen] frame].size.width-[popupWindow frame].size.width;
}
[popupWindow setFrame:frame display:NO];
[popupWindow setAlphaValue:0.0];
[popupWindow makeKeyAndOrderFront:self];
[[NSAnimationContext currentContext] setDuration:0.15];
[[popupWindow animator] setAlphaValue:1.0];
}
}
- (NSMenu *) createSettingsMenu {
NSZone *menuZone = [NSMenu menuZone];
NSMenu *menu = [[NSMenu allocWithZone:menuZone] init];
NSMenuItem *menuItem;
menuItem = [menu addItemWithTitle:@""
action:nil
keyEquivalent:@""];
[menuItem setHidden:YES];
NSImage *gearImg = [NSImage imageNamed:@"NSAdvanced"];
[gearImg setSize:NSMakeSize(16., 16.)];
[menuItem setImage:gearImg];
menuItem = [menu addItemWithTitle:@"Quit"
action:@selector(quit)
keyEquivalent:@""];
[menuItem setTarget:self];
return [menu autorelease];
}
-(void)quit
{
[[NSApplication sharedApplication] terminate:self];
}
- (NSMenu *) createMenu {
NSZone *menuZone = [NSMenu menuZone];
NSMenu *menu = [[NSMenu allocWithZone:menuZone] init];
NSMenuItem *menuItem;
menuItem = [menu addItemWithTitle:@"Picker"
action:nil
keyEquivalent:@""];
[menuItem setTarget:self];
return [menu autorelease];
}
@end