-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinearDividerShader.m
104 lines (70 loc) · 3.7 KB
/
LinearDividerShader.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
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
This file is part of Notational Velocity.
Notational Velocity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Notational Velocity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Notational Velocity. If not, see <http://www.gnu.org/licenses/>. */
#import "LinearDividerShader.h"
static void ColorBlendFunction(void *info, const CGFloat *in, CGFloat *out);
@implementation LinearDividerShader
- (id)initWithStartColor:(NSColor*)start endColor:(NSColor*)end {
if ((self = [super init])) {
colorSpaceRef = CGColorSpaceCreateDeviceRGB();
[[start colorUsingColorSpaceName:NSDeviceRGBColorSpace] getRed: &colors.firstColor.redComp green:&colors.firstColor.greenComp
blue:&colors.firstColor.blueComp alpha:&colors.firstColor.alphaComp];
[[end colorUsingColorSpaceName:NSDeviceRGBColorSpace] getRed: &colors.secondColor.redComp green:&colors.secondColor.greenComp
blue:&colors.secondColor.blueComp alpha:&colors.secondColor.alphaComp];
static const CGFloat validIntervals[8] = { 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0 };
static const CGFunctionCallbacks cgFunctionCallbacks = { 0, &ColorBlendFunction, nil };
axialShadingFunction = CGFunctionCreate(&colors, 1, validIntervals, 4, validIntervals, &cgFunctionCallbacks);
dimpleImage = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"SplitViewDimple.tif"]];
}
return self;
}
- (void)dealloc {
CGFunctionRelease(axialShadingFunction);
CGColorSpaceRelease(colorSpaceRef);
[dimpleImage release];
[super dealloc];
}
- (void)drawDividerInRect:(NSRect)aRect withDimpleRect:(NSRect)dimpleRect blendVertically:(BOOL)v {
CGShadingRef cgShading = CGShadingCreateAxial(colorSpaceRef, CGPointMake(aRect.origin.x, aRect.origin.y),
CGPointMake(v ? NSMinX(aRect) : NSMaxX(aRect), v ? NSMaxY(aRect) : NSMinY(aRect)),
axialShadingFunction, NO, NO);
CGContextDrawShading((CGContextRef)[[NSGraphicsContext currentContext] graphicsPort], cgShading);
CGShadingRelease(cgShading);
if (!NSIsEmptyRect(dimpleRect)) {
[dimpleImage drawCenteredInRect:dimpleRect];
}
}
@end
NSRect centeredRectInRect(NSRect rect, NSSize size) {
NSRect centerRect;
centerRect.size = size;
centerRect.origin = NSMakePoint((rect.size.width - size.width) / 2.0,
(rect.size.height - size.height) / 2.0);
centerRect.origin = NSMakePoint(rect.origin.x + centerRect.origin.x, rect.origin.y + centerRect.origin.y);
return centerRect;
}
void ColorBlendFunction(void *info, const CGFloat *in, CGFloat *out) {
ColorSet* colors = (ColorSet *)info;
float inVal = in[0];
unsigned int i;
for (i=0; i<4; i++) out[i] = (1.0 - inVal) * colors->firstColor.channels[i] + inVal * colors->secondColor.channels[i];
}
@implementation NSImage (CenteredDrawing)
- (void)drawCenteredInRect:(NSRect)aRect {
[self drawCenteredInRect:aRect fraction:1.0];
}
- (void)drawCenteredInRect:(NSRect)aRect fraction:(float)aFraction {
NSRect cent = centeredRectInRect(aRect, [self size]);
cent = [[NSView focusView] centerScanRect:cent];
[self compositeToPoint:NSMakePoint(cent.origin.x, cent.origin.y + cent.size.height) operation:NSCompositeSourceOver fraction:aFraction];
}
@end