2013-12-21 22:25:18 +00:00
|
|
|
#import "Rik.h"
|
|
|
|
|
|
|
|
void NSRoundRectDraw(NSRect r, float radius);
|
|
|
|
void NSRoundRectFill(NSRect r, float radius);
|
|
|
|
|
|
|
|
@interface Rik(RikDrawings)
|
|
|
|
|
2013-12-28 23:30:12 +00:00
|
|
|
- (NSGradient *) _bezelGradientWithColor:(NSColor*) baseColor;
|
2013-12-21 22:25:18 +00:00
|
|
|
- (NSGradient *) _buttonGradientWithColor:(NSColor*) baseColor;
|
|
|
|
- (NSGradient *) _windowTitlebarGradient;
|
2013-12-22 14:49:42 +00:00
|
|
|
- (NSRect) drawInnerGrayBezel: (NSRect)border withClip: (NSRect)clip;
|
2013-12-27 17:34:42 +00:00
|
|
|
- (NSBezierPath*) buttonBezierPathWithRect: (NSRect)frame andStyle: (int) style;
|
2013-12-21 22:25:18 +00:00
|
|
|
@end
|