mirror of
https://github.com/darlinghq/darling-rik-theme.git
synced 2024-11-23 03:59:45 +00:00
14 lines
464 B
Objective-C
14 lines
464 B
Objective-C
#import "Rik.h"
|
|
|
|
void NSRoundRectDraw(NSRect r, float radius);
|
|
void NSRoundRectFill(NSRect r, float radius);
|
|
|
|
@interface Rik(RikDrawings)
|
|
|
|
- (NSGradient *) _bezelGradientWithColor:(NSColor*) baseColor;
|
|
- (NSGradient *) _buttonGradientWithColor:(NSColor*) baseColor;
|
|
- (NSGradient *) _windowTitlebarGradient;
|
|
- (NSRect) drawInnerGrayBezel: (NSRect)border withClip: (NSRect)clip;
|
|
- (NSBezierPath*) buttonBezierPathWithRect: (NSRect)frame andStyle: (int) style;
|
|
@end
|