-
Notifications
You must be signed in to change notification settings - Fork 55
/
PGAlertView.m
517 lines (426 loc) · 15.7 KB
/
PGAlertView.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
/* Copyright © 2007-2009, The Sequential Project
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the the Sequential Project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE SEQUENTIAL PROJECT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SEQUENTIAL PROJECT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#import "PGAlertView.h"
// Views
#import "PGBezelPanel.h"
// Other Sources
#import "PGAppKitAdditions.h"
#import "PGDelayedPerforming.h"
#import "PGFoundationAdditions.h"
#import "PGGeometry.h"
#define PGAlertViewSize 100.0f
#define PGMarginSize 4.0f
@interface PGAlertView(Private)
- (void)_updateCurrentGraphic;
@end
@interface PGCannotGoRightGraphic : PGAlertGraphic
@end
@interface PGCannotGoLeftGraphic : PGCannotGoRightGraphic
@end
@interface PGLoopedLeftGraphic : PGAlertGraphic
@end
@interface PGLoopedRightGraphic : PGLoopedLeftGraphic
@end
@implementation PGAlertView
#pragma mark -PGAlertView
@synthesize currentGraphic = _currentGraphic;
@synthesize frameCount = _frameCount;
#pragma mark -
- (void)pushGraphic:(PGAlertGraphic *)aGraphic window:(NSWindow *)window
{
NSParameterAssert(aGraphic);
NSUInteger const i = [_graphicStack indexOfObject:aGraphic];
if(0 == i) {
[self PG_cancelPreviousPerformRequestsWithSelector:@selector(popGraphicIdenticalTo:) object:_currentGraphic];
} else {
[_graphicStack insertObject:aGraphic atIndex:0];
[self _updateCurrentGraphic];
}
NSTimeInterval const fadeOutDelay = [_currentGraphic fadeOutDelay];
if(fadeOutDelay >= 0.01f) [self PG_performSelector:@selector(popGraphicIdenticalTo:) withObject:_currentGraphic fireDate:nil interval:fadeOutDelay options:PGCompareArgumentPointer];
if(window && [[self window] respondsToSelector:@selector(displayOverWindow:)]) [(PGBezelPanel *)[self window] displayOverWindow:window];
}
- (void)popGraphic:(PGAlertGraphic *)aGraphic
{
NSParameterAssert(aGraphic);
NSUInteger const i = [_graphicStack indexOfObject:aGraphic];
if(NSNotFound == i) return;
[_graphicStack removeObjectAtIndex:i];
[self _updateCurrentGraphic];
}
- (void)popGraphicIdenticalTo:(PGAlertGraphic *)aGraphic
{
NSParameterAssert(aGraphic);
NSUInteger const i = [_graphicStack indexOfObjectIdenticalTo:aGraphic];
if(NSNotFound == i) return;
[_graphicStack removeObjectAtIndex:i];
[self _updateCurrentGraphic];
}
- (void)popGraphicsOfType:(PGAlertGraphicType)type
{
for(PGAlertGraphic *const graphic in [[_graphicStack copy] autorelease]) if([graphic graphicType] == type) [_graphicStack removeObjectIdenticalTo:graphic];
[self _updateCurrentGraphic];
}
#pragma mark -
- (void)animateOneFrame:(PGAlertView *)anAlertView
{
NSParameterAssert(_currentGraphic);
_frameCount = (_frameCount + 1) % _currentGraphic.frameCount;
[_currentGraphic animateOneFrame:self];
}
#pragma mark -PGAlertView(Private)
- (void)_updateCurrentGraphic
{
if(![_graphicStack count]) {
if([_currentGraphic fadeOutDelay]) [(PGBezelPanel *)[self window] fadeOut];
else [[self window] close];
return;
}
[_currentGraphic release];
_currentGraphic = [[_graphicStack objectAtIndex:0] retain];
[_frameTimer invalidate];
_frameCount = 0;
NSTimeInterval const frameDelay = _currentGraphic.frameDelay;
_frameTimer = _currentGraphic.frameCount > 1 ? [self PG_performSelector:@selector(animateOneFrame:) withObject:self fireDate:nil interval:frameDelay options:PGRetainTarget | PGRepeatOnInterval] : nil;
[self setNeedsDisplay:YES];
}
#pragma mark -NSView
- (id)initWithFrame:(NSRect)aRect
{
if((self = [super initWithFrame:aRect])) {
_graphicStack = [[NSMutableArray alloc] init];
}
return self;
}
- (BOOL)isOpaque
{
return YES;
}
- (void)drawRect:(NSRect)aRect
{
[_currentGraphic drawInView:self];
}
- (void)viewWillMoveToWindow:(NSWindow *)aWindow
{
[[self window] PG_removeObserver:self name:NSWindowWillCloseNotification];
if(aWindow) [aWindow PG_addObserver:self selector:@selector(windowWillClose:) name:NSWindowWillCloseNotification];
else [self windowWillClose:nil];
}
#pragma mark -NSObject
- (void)dealloc
{
[self PG_cancelPreviousPerformRequests];
[self PG_removeObserver];
[_graphicStack release];
[_currentGraphic release];
[_frameTimer invalidate];
[super dealloc];
}
#pragma mark -<NSWindowDelegate>
- (void)windowWillClose:(NSNotification *)aNotif
{
[_frameTimer invalidate];
_frameTimer = nil;
[_graphicStack removeAllObjects];
}
#pragma mark -<PGBezelPanelContentView>
- (NSRect)bezelPanel:(PGBezelPanel *)sender frameForContentRect:(NSRect)aRect scale:(CGFloat)scaleFactor
{
CGFloat const scaledPanelSize = scaleFactor * PGAlertViewSize;
return PGIntegralRect(NSMakeRect(
NSMinX(aRect) + PGMarginSize,
NSMaxY(aRect) - scaledPanelSize - PGMarginSize,
scaledPanelSize,
scaledPanelSize
));
}
@end
@implementation PGAlertGraphic
#pragma mark +PGAlertGraphic
+ (id)cannotGoRightGraphic
{
return [[[PGCannotGoRightGraphic alloc] init] autorelease];
}
+ (id)cannotGoLeftGraphic
{
return [[[PGCannotGoLeftGraphic alloc] init] autorelease];
}
+ (id)loopedRightGraphic
{
return [[[PGLoopedRightGraphic alloc] init] autorelease];
}
+ (id)loopedLeftGraphic
{
return [[[PGLoopedLeftGraphic alloc] init] autorelease];
}
#pragma mark -PGAlertGraphic
- (PGAlertGraphicType)graphicType
{
return PGSingleImageGraphic;
}
- (NSTimeInterval)fadeOutDelay
{
return 1.0f;
}
- (NSTimeInterval)frameDelay
{
return 0.0f;
}
- (NSUInteger)frameCount
{
return 1;
}
#pragma mark -
- (void)drawInView:(PGAlertView *)anAlertView
{
NSInteger count, i;
NSRect const *rects;
[anAlertView getRectsBeingDrawn:&rects count:&count];
[[NSColor PG_bezelBackgroundColor] set];
CGFloat const f = PGAlertViewSize / 300.0f;
for(i = count; i--;) {
NSRectFill(NSIntersectionRect(rects[i], PGIntegralRect(NSMakeRect( 0.0f * f, 50.0f * f, 50.0f * f, 200.0f * f))));
NSRectFill(NSIntersectionRect(rects[i], PGIntegralRect(NSMakeRect( 50.0f * f, 0.0f * f, 200.0f * f, 300.0f * f))));
NSRectFill(NSIntersectionRect(rects[i], PGIntegralRect(NSMakeRect(250.0f * f, 50.0f * f, 50.0f * f, 200.0f * f))));
}
NSRect const corners[] = {
PGIntegralRect(NSMakeRect(250.0f * f, 250.0f * f, 50.0f * f, 50.0f * f)),
PGIntegralRect(NSMakeRect( 0.0f * f, 250.0f * f, 50.0f * f, 50.0f * f)),
PGIntegralRect(NSMakeRect( 0.0f * f, 0.0f * f, 50.0f * f, 50.0f * f)),
PGIntegralRect(NSMakeRect(250.0f * f, 0.0f * f, 50.0f * f, 50.0f * f))
};
NSPoint const centers[] = {
PGIntegralPoint(NSMakePoint(250.0f * f, 250.0f * f)),
PGIntegralPoint(NSMakePoint( 50.0f * f, 250.0f * f)),
PGIntegralPoint(NSMakePoint( 50.0f * f, 50.0f * f)),
PGIntegralPoint(NSMakePoint(250.0f * f, 50.0f * f))
};
for(i = numberof(corners); i--;) {
NSRect const corner = corners[i];
if(!PGIntersectsRectList(corner, rects, count)) continue;
[[NSColor clearColor] set];
NSRectFill(corners[i]);
[[NSColor PG_bezelBackgroundColor] set];
NSBezierPath *const path = [NSBezierPath bezierPath];
[path moveToPoint:centers[i]];
[path appendBezierPathWithArcWithCenter:centers[i] radius:50.0f * f startAngle:90.0f * i endAngle:90.0f * (i + 1)];
[path closePath];
[path fill];
}
NSShadow *const shadow = [[[NSShadow alloc] init] autorelease];
[shadow setShadowBlurRadius:4.0f];
[shadow setShadowOffset:NSMakeSize(0.0f, -1.0f)];
[shadow setShadowColor:[NSColor blackColor]];
[shadow set];
}
- (void)flipHorizontally
{
NSAffineTransform *const flip = [[[NSAffineTransform alloc] init] autorelease];
[flip translateXBy:PGAlertViewSize yBy:0.0f];
[flip scaleXBy:-1.0f yBy:1.0f];
[flip concat];
}
#pragma mark -
- (void)animateOneFrame:(PGAlertView *)anAlertView {}
#pragma mark -<NSObject>
- (NSUInteger)hash
{
return [[self class] hash];
}
- (BOOL)isEqual:(id)anObject
{
return [anObject isMemberOfClass:[self class]];
}
@end
@implementation PGCannotGoRightGraphic
#pragma mark -PGAlertGraphic
- (void)drawInView:(PGAlertView *)anAlertView
{
[super drawInView:anAlertView];
CGFloat const f = PGAlertViewSize / 300.0f;
CGFloat const small = 5.0f * f;
CGFloat const large = 10.0f * f;
[[NSColor PG_bezelForegroundColor] set];
NSBezierPath *const arrow = [NSBezierPath bezierPath];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(180.0f * f, 150.0f * f) radius:large startAngle:315.0f endAngle:45.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(140.0f * f, 200.0f * f) radius:small startAngle:45.0f endAngle:90.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(125.0f * f, 200.0f * f) radius:small startAngle:90.0f endAngle:180.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(115.0f * f, 180.0f * f) radius:small startAngle:0.0f endAngle:270.0f clockwise:YES];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint( 75.0f * f, 170.0f * f) radius:small startAngle:90.0f endAngle:180.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint( 75.0f * f, 130.0f * f) radius:small startAngle:180.0f endAngle:270.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(115.0f * f, 120.0f * f) radius:small startAngle:90.0f endAngle:0.0f clockwise:YES];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(125.0f * f, 100.0f * f) radius:small startAngle:180.0f endAngle:270.0f];
[arrow appendBezierPathWithArcWithCenter:NSMakePoint(140.0f * f, 100.0f * f) radius:small startAngle:270.0f endAngle:315.0f];
[arrow fill];
NSBezierPath *const wall = [NSBezierPath bezierPath];
[wall setLineWidth:20.0f * f];
[wall setLineCapStyle:NSRoundLineCapStyle];
[wall moveToPoint:NSMakePoint(210.0f * f, 220.0f * f)];
[wall lineToPoint:NSMakePoint(210.0f * f, 80.0f * f)];
[wall stroke];
}
@end
@implementation PGCannotGoLeftGraphic
#pragma mark -PGAlertGraphic
- (void)drawInView:(PGAlertView *)anAlertView
{
[self flipHorizontally];
[super drawInView:anAlertView];
}
@end
@implementation PGLoopedLeftGraphic
#pragma mark -PGAlertGraphic
- (PGAlertGraphicType)graphicType
{
return PGInterImageGraphic;
}
- (NSTimeInterval)fadeOutDelay
{
return 1.0f;
}
#pragma mark -
- (void)drawInView:(PGAlertView *)anAlertView
{
[super drawInView:anAlertView];
[[NSColor PG_bezelForegroundColor] set];
NSBezierPath *const s = [NSBezierPath bezierPath];
CGFloat const f = PGAlertViewSize / 300.0f;
[s appendBezierPathWithArcWithCenter:NSMakePoint(105.0f * f, 155.0f * f) radius:65.0f * f startAngle: 90.0f endAngle:270.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(150.0f * f, 85.0f * f) radius: 5.0f * f startAngle: 90.0f endAngle: 0.0f clockwise:YES];
[s appendBezierPathWithArcWithCenter:NSMakePoint(160.0f * f, 65.0f * f) radius: 5.0f * f startAngle:180.0f endAngle:270.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(165.0f * f, 65.0f * f) radius: 5.0f * f startAngle:270.0f endAngle:-45.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(200.0f * f, 105.0f * f) radius:10.0f * f startAngle:-45.0f endAngle: 45.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(165.0f * f, 145.0f * f) radius: 5.0f * f startAngle: 45.0f endAngle: 90.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(160.0f * f, 145.0f * f) radius: 5.0f * f startAngle: 90.0f endAngle:180.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(150.0f * f, 125.0f * f) radius: 5.0f * f startAngle: 0.0f endAngle:270.0f clockwise:YES];
[s appendBezierPathWithArcWithCenter:NSMakePoint(105.0f * f, 155.0f * f) radius:35.0f * f startAngle:270.0f endAngle: 90.0f clockwise:YES];
[s appendBezierPathWithArcWithCenter:NSMakePoint(195.0f * f, 155.0f * f) radius:35.0f * f startAngle: 90.0f endAngle: 0.0f clockwise:YES];
[s appendBezierPathWithArcWithCenter:NSMakePoint(245.0f * f, 155.0f * f) radius:15.0f * f startAngle:180.0f endAngle: 0.0f clockwise:NO];
[s appendBezierPathWithArcWithCenter:NSMakePoint(195.0f * f, 155.0f * f) radius:65.0f * f startAngle: 0.0f endAngle: 90.0f clockwise:NO];
[s fill];
}
@end
@implementation PGLoopedRightGraphic
#pragma mark -PGAlertGraphic
- (void)drawInView:(PGAlertView *)anAlertView
{
[self flipHorizontally];
[super drawInView:anAlertView];
}
@end
@implementation PGLoadingGraphic
#pragma mark +PGLoadingGraphic
+ (id)loadingGraphic
{
return [[[PGLoadingGraphic alloc] init] autorelease];
}
#pragma mark -PGLoadingGraphic
@synthesize progress = _progress;
- (void)setProgress:(CGFloat)progress
{
_progress = MIN(MAX(progress, 0.0f), 1.0f);
}
#pragma mark -PGAlertGraphic
- (NSTimeInterval)fadeOutDelay
{
return CGFLOAT_MAX;
}
- (NSTimeInterval)frameDelay
{
return 1.0f / 12.0f;
}
- (NSUInteger)frameCount
{
return 12;
}
#pragma mark -
- (void)drawInView:(PGAlertView *)anAlertView
{
[super drawInView:anAlertView];
CGFloat const f = PGAlertViewSize / 300.0f;
if(_progress) {
NSBezierPath *const progressPath = [NSBezierPath bezierPath];
NSPoint const center = NSMakePoint(150.0f * f, 150.0f * f);
[progressPath appendBezierPathWithArcWithCenter:center radius:110.0f * f startAngle:90.0f endAngle:90.0f - _progress * 360.0f clockwise:YES];
[progressPath appendBezierPathWithArcWithCenter:center radius:55.0f * f startAngle:90.0f - _progress * 360.0f endAngle:90.0f clockwise:NO];
[[NSColor PG_bezelForegroundColor] set];
[progressPath fill];
} else {
[NSBezierPath PG_drawSpinnerInRect:NSMakeRect(40.0f * f, 40.0f * f, 220.0f * f, 220.0f * f) startAtPetal:[anAlertView frameCount]];
}
}
#pragma mark -
- (void)animateOneFrame:(PGAlertView *)anAlertView
{
CGFloat const f = PGAlertViewSize / 300.0f;
[anAlertView setNeedsDisplayInRect:NSMakeRect( 25.0f * f, 50.0f * f, 25.0f * f, 200.0f * f)];
[anAlertView setNeedsDisplayInRect:NSMakeRect( 50.0f * f, 25.0f * f, 200.0f * f, 250.0f * f)];
[anAlertView setNeedsDisplayInRect:NSMakeRect(250.0f * f, 50.0f * f, 25.0f * f, 200.0f * f)];
}
#pragma mark -<NSObject>
- (NSUInteger)hash
{
return (NSUInteger)self;
}
- (BOOL)isEqual:(id)anObject
{
return anObject == self;
}
@end
@implementation PGBezierPathIconGraphic
#pragma mark +PGBezierPathIconGraphic
+ (id)graphicWithIconType:(AEIconType)type
{
return [[[self alloc] initWithIconType:type] autorelease];
}
#pragma mark -PGBezierPathIconGraphic
- (id)initWithIconType:(AEIconType)type
{
if((self = [super init])) {
_iconType = type;
}
return self;
}
#pragma mark -PGAlertGraphic
- (NSTimeInterval)fadeOutDelay
{
return 1.0f;
}
#pragma mark -
- (void)drawInView:(PGAlertView *)anAlertView
{
[super drawInView:anAlertView];
NSRect const b = [anAlertView bounds];
[[NSColor PG_bezelForegroundColor] set];
[NSBezierPath PG_drawIcon:_iconType inRect:PGCenteredSizeInRect(NSMakeSize(PGAlertViewSize / 2.0f, PGAlertViewSize / 2.0f), b)];
}
#pragma mark -<NSObject>
- (NSUInteger)hash
{
return [[self class] hash] ^ _iconType;
}
- (BOOL)isEqual:(id)anObject
{
return [anObject isMemberOfClass:[self class]] && ((PGBezierPathIconGraphic *)anObject)->_iconType == _iconType;
}
@end