forked from glebd/bwtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BWGradientWell.m
40 lines (29 loc) · 1.03 KB
/
BWGradientWell.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
//
// BWGradientWell.m
// BWToolkit
//
// Created by Brandon Walkin (www.brandonwalkin.com)
// All code is provided under the New BSD license.
//
#import "BWGradientWell.h"
static NSColor *borderColor;
static NSImage *pattern;
@implementation BWGradientWell
@synthesize startingColorWell, endingColorWell;
+ (void)initialize
{
borderColor = [[NSColor colorWithCalibratedWhite:(121.0 / 255.0) alpha:1] retain];
NSBundle *bundle = [NSBundle bundleForClass:[BWGradientWell class]];
pattern = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"GradientWellPattern.tif"]];
}
- (void)drawRect:(NSRect)rect
{
NSRect insetRect = NSInsetRect(self.bounds, 2, 2);
[pattern drawAtPoint:insetRect.origin fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];
NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:[startingColorWell color] endingColor:[endingColorWell color]];
[gradient drawInRect:insetRect angle:0];
[gradient release];
[borderColor set];
NSFrameRect(self.bounds);
}
@end