-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXSMainWindow-animation.m
372 lines (282 loc) · 13.5 KB
/
XSMainWindow-animation.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
//
// XSMainWindow-animation.m
// SkypeToAddressBook
//
// Created by Xavi Aracil on 24/11/10.
// Copyright 2010 xadSolutions All rights reserved.
//
#import "XSMainWindow-animation.h"
@implementation XSMainWindow (XSMainWindow_animation)
#pragma mark -
#pragma mark Animation initialization (Show)
// zoom in contact image
-(NSAnimation *) zoomInContactImageAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
NSRect destRect, origFrame, destFrame;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:selectedContactImageView forKey:NSViewAnimationTargetKey];
// calculate new frame
float dX, dY, dW, dH;
origFrame = [selectedContactImageView frame];
destFrame = [peoplePickerImageView frame];
destFrame = [contentView convertRect:destFrame fromView:peoplePickerImageView];
dW = destFrame.size.width - origFrame.size.width;
dH = destFrame.size.height - origFrame.size.height;
dX = dW/2;
dY = dH/2;
destRect = NSMakeRect(origFrame.origin.x - dX,
origFrame.origin.y -dY,
origFrame.size.width + dW,
origFrame.size.height + dH);
[animPropertiesDict setObject:[NSValue valueWithRect:destRect]
forKey:NSViewAnimationEndFrameKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// hide scroll View
-(NSAnimation *) hideScrollViewAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:scrollView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:NSViewAnimationFadeOutEffect
forKey:NSViewAnimationEffectKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// move contact image to desired location
-(NSAnimation *) moveContactAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
NSRect destFrame, frame;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:selectedContactImageView forKey:NSViewAnimationTargetKey];
frame = [peoplePickerImageView frame];
destFrame = [contentView convertRect:frame fromView:peoplePickerView];
[animPropertiesDict setObject:[NSValue valueWithRect:destFrame]
forKey:NSViewAnimationEndFrameKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
-(NSAnimation *) showPeoplePickerAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:peoplePickerView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:NSViewAnimationFadeInEffect
forKey:NSViewAnimationEffectKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // One second
[theAnim setAnimationCurve:NSAnimationEaseInOut];
return theAnim;
}
#pragma mark -
#pragma mark Animation initialization (Hide)
// fade out peoplePickerView
-(NSAnimation *) hidePeoplePickerViewAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:peoplePickerView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:NSViewAnimationFadeOutEffect
forKey:NSViewAnimationEffectKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.25]; // Quarter second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// zoom in contact image
-(NSAnimation *) zoomInSelectedContactImageAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
NSRect destRec, origRect;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:selectedContactImageView forKey:NSViewAnimationTargetKey];
origRect = [selectedContactImageView frame];
destRec = NSMakeRect(origRect.origin.x + 20.0,
origRect.origin.y + 20.0,
origRect.size.width + 40.0,
origRect.size.height + 40.0);
[animPropertiesDict setObject:[NSValue valueWithRect:destRec]
forKey:NSViewAnimationEndFrameKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// move contact image to desired location (currentContactFrame)
-(NSAnimation *) moveSelectedContactImageAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:selectedContactImageView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:[NSValue valueWithRect:currentContactFrame]
forKey:NSViewAnimationEndFrameKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// show scroll View
-(NSAnimation *) showScrollViewAnimation {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:scrollView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:NSViewAnimationFadeInEffect
forKey:NSViewAnimationEffectKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseIn];
return theAnim;
}
// hide contactImage
-(NSAnimation *) hideContactImage {
NSViewAnimation *theAnim;
NSMutableDictionary *animPropertiesDict;
// Create the attributes dictionary for the first view.
animPropertiesDict = [NSMutableDictionary dictionaryWithCapacity:2];
// Specify which view to modify.
[animPropertiesDict setObject:selectedContactImageView forKey:NSViewAnimationTargetKey];
[animPropertiesDict setObject:NSViewAnimationFadeOutEffect
forKey:NSViewAnimationEffectKey];
// Create the view animation object.
theAnim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray
arrayWithObjects:animPropertiesDict, nil]];
// Set some additional attributes for the animation.
[theAnim setDuration:0.5]; // Half second
[theAnim setAnimationCurve:NSAnimationEaseOut];
return theAnim;
}
-(void) duplicateContactImageInFrame:(NSRect)frame copyImage:(BOOL) copyImage {
NSImageView *imageView = [[NSImageView alloc] initWithFrame:frame];
[imageView setImageScaling:NSImageScaleAxesIndependently];
if (copyImage) {
[imageView setImage:[peoplePickerImageView image]];
} else {
[imageView setImage:[[XSContact class] defaultPhotoForUsersNotInAddressBook]];
}
[contentView addSubview:imageView];
self.selectedContactImageView = imageView;
[imageView release];
}
#pragma mark -
#pragma mark Animation start / stop
-(void) startAnimations {
NSAnimation *initialAnimation = [animationArray objectAtIndex:0];
[initialAnimation setDelegate:self];
[initialAnimation startAnimation];
}
-(void) animateShowPeoplePicker:(NSRect) contactFrame {
currentContactFrame = contactFrame;
// modify contact image in PeoplePicker to be as big as contactFrame
// first of all, duplicate peoplePickerImageView and put at the upmost child of window
[self duplicateContactImageInFrame: contactFrame copyImage:NO];
// zoom in contact image
NSAnimation *anim1 = [self zoomInContactImageAnimation];
// hide scrollView
NSAnimation *anim2 = [self hideScrollViewAnimation];
// move contact image to desired location, fading in the rest of PeoplePicker View
NSAnimation *anim3 = [self moveContactAnimation];
// fade in PeoplePickerView
NSAnimation *anim4 = [self showPeoplePickerAnimation];
// hide contactImage
NSAnimation *anim5 = [self hideContactImage];
// set animations
NSArray *array = [[NSArray alloc] initWithObjects:anim1, anim2, anim3, anim4, anim5, nil];
self.animationArray = array;
[array release];
// play
[self startAnimations];
}
-(void) animateHidePeoplePicker {
// first of all, duplicate peoplePickerImageView and put at the upmost child of window
NSRect frame = [peoplePickerImageView frame];
NSRect destFrame = [contentView convertRect:frame fromView:peoplePickerView];
[self duplicateContactImageInFrame:destFrame copyImage:YES];
// fade out peoplePickerView, must not be hidden
NSAnimation *anim1 = [self hidePeoplePickerViewAnimation];
// zoom in contact image
NSAnimation *anim2 = [self zoomInSelectedContactImageAnimation];
// move contact image to desired location (currentContactFrame)
NSAnimation *anim3 = [self moveSelectedContactImageAnimation];
// show scroll view
NSAnimation *anim4 = [self showScrollViewAnimation];
// hide contactImage
NSAnimation *anim5 = [self hideContactImage];
// set animations
NSArray *array = [[NSArray alloc] initWithObjects:anim1, anim2, anim3, anim4, anim5, nil];
self.animationArray = array;
[array release];
// play
[self startAnimations];
}
#pragma mark -
#pragma mark NSAnimationDelegate methods
- (void)animationDidEnd:(NSAnimation *)animation {
NSUInteger index = [animationArray indexOfObject:animation];
if(index != NSNotFound && index < ([animationArray count] -1)) {
NSAnimation *nextAnimation = [animationArray objectAtIndex:index + 1];
[nextAnimation setDelegate:self];
[nextAnimation startAnimation];
} else {
if(selectedContactImageView) {
[selectedContactImageView removeFromSuperview];
[selectedContactImageView release];
}
// release all array
self.animationArray = nil;
// call method
if ([self respondsToSelector:animationDidEndSelector]) {
[self performSelector:animationDidEndSelector];
}
}
}
@end