forked from mgorbach/macfusion2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MGTransitioningTabView.m
119 lines (98 loc) · 4.5 KB
/
MGTransitioningTabView.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
//
// MGTransitioningTabView.m
// MacFusion2
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import "MGTransitioningTabView.h"
#import <QuartzCore/QuartzCore.h>
@implementation MGTransitioningTabView
- (id)initWithFrame:(NSRect)frame
{
if (self = [super initWithFrame: frame]) {
_viewDimensions = [NSMutableDictionary dictionary];
[self setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
}
return self;
}
static void ClearBitmapImageRep(NSBitmapImageRep *bitmap) {
unsigned char *bitmapData = [bitmap bitmapData];
if (bitmapData != NULL) {
// A fast alternative to filling with [NSColor clearColor].
bzero(bitmapData, [bitmap bytesPerRow] * [bitmap pixelsHigh]);
}
}
- (void)addTabViewItem:(NSTabViewItem*)item {
[_viewDimensions setObject: [NSValue valueWithSize:[[item view] frame].size] forKey:[item label]];
[super addTabViewItem:item];
}
- (void)drawRect:(NSRect)rect {
[super drawRect:rect];
if (_animation != nil) {
[_transitionFilter setValue:[NSNumber numberWithFloat:[_animation currentValue]] forKey:@"inputTime"];
CIImage *outputImage = [_transitionFilter valueForKey:@"outputImage"];
[outputImage drawInRect:_imageRect fromRect:NSMakeRect(0, _imageRect.size.height, _imageRect.size.width, -_imageRect.size.height) operation:NSCompositeSourceOver fraction:1.0];
}
}
- (void)setTransitionForinitialCIImage:(CIImage *)initialCIImage finalCIImage:(CIImage *)finalCIImage {
_transitionFilter = [CIFilter filterWithName:@"CIDissolveTransition"];
[_transitionFilter setDefaults];
[_transitionFilter setValue:initialCIImage forKey:@"inputImage"];
[_transitionFilter setValue:finalCIImage forKey:@"inputTargetImage"];
}
- (void)selectTabViewItem:(NSTabViewItem *)tabViewItem {
[super selectTabViewItem:tabViewItem];
NSSize newViewSize = [[_viewDimensions objectForKey:[tabViewItem label]] sizeValue];
[[tabViewItem view] setFrameSize: newViewSize];
/*
if ([self selectedTabViewItem] == nil || [self isHiddenOrHasHiddenAncestor])
{
[super selectTabViewItem: tabViewItem];
return;
}
NSView* initialView = [[self selectedTabViewItem] view];
NSView* finalView = [tabViewItem view];
NSRect rect = NSUnionRect([initialView bounds], [finalView bounds]);
imageRect = NSUnionRect([initialView frame], [finalView frame]);
// MFLogS(self, @"imageRect %@ rect %@", NSStringFromRect( imageRect ), NSStringFromRect( rect) );
NSBitmapImageRep* initialContentBitmap = [initialView bitmapImageRepForCachingDisplayInRect:rect];
ClearBitmapImageRep(initialContentBitmap);
[initialView cacheDisplayInRect:rect toBitmapImageRep:initialContentBitmap];
[super selectTabViewItem: tabViewItem];
NSBitmapImageRep* finalContentBitmap = [finalView bitmapImageRepForCachingDisplayInRect:rect];
ClearBitmapImageRep(finalContentBitmap);
[finalView cacheDisplayInRect:rect toBitmapImageRep:finalContentBitmap];
CIImage* initialCIImage = [[CIImage alloc] initWithBitmapImageRep:initialContentBitmap];
CIImage* finalCIImage = [[CIImage alloc] initWithBitmapImageRep:finalContentBitmap];
[self setTransitionForinitialCIImage:initialCIImage finalCIImage:finalCIImage];
animation = [[TabViewAnimation alloc] initWithDuration: .5 animationCurve:NSAnimationEaseInOut];
[animation setDelegate: self];
[finalView setHidden: YES];
// [animation startAnimation];
[finalView setHidden: NO];
animation = nil;
*/;
}
- (NSSize)sizeWithTabviewItem:(NSTabViewItem *)item {
NSSize itemSize = [[_viewDimensions objectForKey:[item label]] sizeValue];
CGFloat deltaX = [self frame].size.width - [self contentRect].size.width;
CGFloat deltaY = [self frame].size.height - [self contentRect].size.height;
NSSize sizeToReturn = NSMakeSize(itemSize.width+deltaX, itemSize.height+deltaY);
return sizeToReturn;
}
@end
@implementation TabViewAnimation
// Override NSAnimation's -setCurrentProgress: method, and use it as our point to hook in and advance our Core Image transition effect to the next time slice.
- (void)setCurrentProgress:(NSAnimationProgress)progress {
[super setCurrentProgress:progress];
}
@end