#ifndef __SP_GRADIENT_H__ #define __SP_GRADIENT_H__ /** \file * SVG and implementation * * Authors: * Lauris Kaplinski * Johan Engelen * * Copyright (C) 2007 Johan Engelen * Copyright (C) 1999-2002 Lauris Kaplinski * Copyright (C) 2000-2001 Ximian, Inc. * * Released under GNU GPL, read the file 'COPYING' for more information */ #include #include "libnr/nr-matrix.h" #include "sp-paint-server.h" #include "sp-gradient-spread.h" #include "sp-gradient-units.h" #include "sp-gradient-vector.h" #include struct SPGradientReference; typedef enum { SP_GRADIENT_TYPE_UNKNOWN, SP_GRADIENT_TYPE_LINEAR, SP_GRADIENT_TYPE_RADIAL } SPGradientType; typedef enum { SP_GRADIENT_STATE_UNKNOWN, SP_GRADIENT_STATE_VECTOR, SP_GRADIENT_STATE_PRIVATE } SPGradientState; typedef enum { POINT_LG_BEGIN =0, //start enum at 0 (for indexing into gr_knot_shapes array for example) POINT_LG_END, POINT_LG_MID, POINT_RG_CENTER, POINT_RG_R1, POINT_RG_R2, POINT_RG_FOCUS, POINT_RG_MID1, POINT_RG_MID2, // insert new point types here. POINT_G_INVALID } GrPointType; /** * Gradient * * Implement spread, stops list * \todo fixme: Implement more here (Lauris) */ struct SPGradient : public SPPaintServer { /** Reference (href) */ SPGradientReference *ref; /** State in Inkscape gradient system */ guint state : 2; /** gradientUnits attribute */ SPGradientUnits units; guint units_set : 1; /** gradientTransform attribute */ Geom::Matrix gradientTransform; guint gradientTransform_set : 1; /** spreadMethod attribute */ SPGradientSpread spread; guint spread_set : 1; /** Gradient stops */ guint has_stops : 1; /** Composed vector */ SPGradientVector vector; /** Rendered color array (4 * 1024 bytes) */ guchar *color; sigc::connection modified_connection; }; /** * The SPGradient vtable. */ struct SPGradientClass { SPPaintServerClass parent_class; }; #include "sp-gradient-fns.h" #endif /* !__SP_GRADIENT_H__ */ /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :