78 lines
3.8 KiB
Objective-C
78 lines
3.8 KiB
Objective-C
//
|
|
// MGMAddons.m
|
|
// Exhaust
|
|
//
|
|
// Created by Mr. Gecko on 2/8/11.
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
|
//
|
|
|
|
#import "MGMAddons.h"
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@implementation NSBezierPath (MGMAddons)
|
|
+ (NSBezierPath *)pathWithRect:(NSRect)theRect radiusX:(float)theRadiusX radiusY:(float)theRadiusY {
|
|
NSBezierPath *path = [NSBezierPath bezierPath];
|
|
|
|
float maxRadiusX = theRect.size.width / 2.0;
|
|
float maxRadiusY = theRect.size.height / 2.0;
|
|
theRadiusX = (theRadiusX<maxRadiusX ? theRadiusX : maxRadiusX);
|
|
theRadiusY = (theRadiusY<maxRadiusY ? theRadiusY : maxRadiusY);
|
|
float ellipse = 0.55228474983079;
|
|
float controlX = theRadiusX * ellipse;
|
|
float controlY = theRadiusY * ellipse;
|
|
NSRect edges = NSInsetRect(theRect, theRadiusX, theRadiusY);
|
|
|
|
[path moveToPoint:NSMakePoint(edges.origin.x, theRect.origin.y)];
|
|
|
|
// top right corner
|
|
[path lineToPoint:NSMakePoint(NSMaxX(edges), theRect.origin.y)];
|
|
[path curveToPoint:NSMakePoint(NSMaxX(theRect), edges.origin.y) controlPoint1:NSMakePoint(NSMaxX(edges) + controlX, theRect.origin.y) controlPoint2:NSMakePoint(NSMaxX(theRect), edges.origin.y - controlY)];
|
|
|
|
// bottom right corner
|
|
[path lineToPoint:NSMakePoint(NSMaxX(theRect), NSMaxY(edges))];
|
|
[path curveToPoint:NSMakePoint(NSMaxX(edges), NSMaxY(theRect)) controlPoint1:NSMakePoint(NSMaxX(theRect), NSMaxY(edges) + controlY) controlPoint2:NSMakePoint(NSMaxX(edges) + controlX, NSMaxY(theRect))];
|
|
|
|
// bottom left corner
|
|
[path lineToPoint:NSMakePoint(edges.origin.x, NSMaxY(theRect))];
|
|
[path curveToPoint:NSMakePoint(theRect.origin.x, NSMaxY(edges)) controlPoint1:NSMakePoint(edges.origin.x - controlX, NSMaxY(theRect)) controlPoint2:NSMakePoint(theRect.origin.x, NSMaxY(edges) + controlY)];
|
|
|
|
// top left corner
|
|
[path lineToPoint:NSMakePoint(theRect.origin.x, edges.origin.y)];
|
|
[path curveToPoint:NSMakePoint(edges.origin.x, theRect.origin.y) controlPoint1:NSMakePoint(theRect.origin.x, edges.origin.y - controlY) controlPoint2:NSMakePoint(edges.origin.x - controlX, theRect.origin.y)];
|
|
|
|
[path closePath];
|
|
return path;
|
|
}
|
|
|
|
- (void)fillGradientFrom:(NSColor *)theStartColor to:(NSColor *)theEndColor {
|
|
CIFilter *filter = [CIFilter filterWithName:@"CILinearGradient"];
|
|
|
|
theStartColor = [theStartColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
|
|
theEndColor = [theEndColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
|
|
if (![[NSGraphicsContext currentContext] isFlipped]) {
|
|
NSColor *start = theStartColor;
|
|
NSColor *end = theEndColor;
|
|
theEndColor = start;
|
|
theStartColor = end;
|
|
}
|
|
CIColor *startColor = [CIColor colorWithRed:[theStartColor redComponent] green:[theStartColor greenComponent] blue:[theStartColor blueComponent] alpha:[theStartColor alphaComponent]];
|
|
CIColor *endColor = [CIColor colorWithRed:[theEndColor redComponent] green:[theEndColor greenComponent] blue:[theEndColor blueComponent] alpha:[theEndColor alphaComponent]];
|
|
[filter setValue:startColor forKey:@"inputColor0"];
|
|
[filter setValue:endColor forKey:@"inputColor1"];
|
|
|
|
CIVector *startVector = [CIVector vectorWithX:0.0 Y:0.0];
|
|
[filter setValue:startVector forKey:@"inputPoint0"];
|
|
CIVector *endVector = [CIVector vectorWithX:0.0 Y:[self bounds].size.height];
|
|
[filter setValue:endVector forKey:@"inputPoint1"];
|
|
|
|
CIImage *coreimage = [filter valueForKey:@"outputImage"];
|
|
|
|
[[NSGraphicsContext currentContext] saveGraphicsState];
|
|
|
|
[self setClip];
|
|
CIContext *context = [[NSGraphicsContext currentContext] CIContext];
|
|
[context drawImage:coreimage atPoint:CGPointMake([self bounds].origin.x, [self bounds].origin.y) fromRect:CGRectMake(0.0, 0.0, [self bounds].size.width, [self bounds].size.height)];
|
|
|
|
[[NSGraphicsContext currentContext] restoreGraphicsState];
|
|
}
|
|
@end |