You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
745 B
29 lines
745 B
|
|
//
|
|
// CanvasGradient.h
|
|
//
|
|
// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
|
|
//
|
|
|
|
#ifndef __NODE_GRADIENT_H__
|
|
#define __NODE_GRADIENT_H__
|
|
|
|
#include "Canvas.h"
|
|
|
|
class Gradient: public node::ObjectWrap {
|
|
public:
|
|
static Persistent<FunctionTemplate> constructor;
|
|
static void Initialize(Handle<Object> target);
|
|
static Handle<Value> New(const Arguments &args);
|
|
static Handle<Value> AddColorStopRGBA(const Arguments &args);
|
|
Gradient(double x0, double y0, double x1, double y1);
|
|
Gradient(double x0, double y0, double r0, double x1, double y1, double r1);
|
|
inline cairo_pattern_t *pattern(){ return _pattern; }
|
|
|
|
private:
|
|
~Gradient();
|
|
double _x0, _y0, _x1, _y1, _r0, _r1;
|
|
cairo_pattern_t *_pattern;
|
|
};
|
|
|
|
#endif
|
|
|