| OLD | NEW |
| (Empty) | |
| 1 // |
| 2 // NSBezierPath+MCAdditions.h |
| 3 // |
| 4 // Created by Sean Patrick O'Brien on 4/1/08. |
| 5 // Copyright 2008 MolokoCacao. All rights reserved. |
| 6 // |
| 7 |
| 8 #import <Cocoa/Cocoa.h> |
| 9 |
| 10 |
| 11 @interface NSBezierPath (MCAdditions) |
| 12 |
| 13 + (NSBezierPath *)bezierPathWithCGPath:(CGPathRef)pathRef; |
| 14 - (CGPathRef)cgPath; |
| 15 |
| 16 - (NSBezierPath *)pathWithStrokeWidth:(CGFloat)strokeWidth; |
| 17 |
| 18 - (void)fillWithInnerShadow:(NSShadow *)shadow; |
| 19 - (void)drawBlurWithColor:(NSColor *)color radius:(CGFloat)radius; |
| 20 |
| 21 - (void)strokeInside; |
| 22 - (void)strokeInsideWithinRect:(NSRect)clipRect; |
| 23 |
| 24 @end |
| OLD | NEW |