mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
17 lines
274 B
Objective-C
17 lines
274 B
Objective-C
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#define kMaxColorStops 32
|
|
|
|
|
|
@interface GradientView : NSView
|
|
{
|
|
NSGradient * gradient;
|
|
float angle;
|
|
}
|
|
|
|
- (void)setTopColor:(NSColor *)topColor bottomColor:(NSColor *)bottomColor;
|
|
- (void)setColorStopsArray:(NSArray *)colorStopsArray;
|
|
|
|
@end
|