~ubuntu-branches/ubuntu/oneiric/inkscape/oneiric-updates

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/sp-radial-gradient.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SP_RADIAL_GRADIENT_H
 
2
#define SP_RADIAL_GRADIENT_H
 
3
 
 
4
/** \file
 
5
 * SPRadialGradient: SVG <radialgradient> implementtion.
 
6
 */
 
7
 
 
8
#include <glib/gtypes.h>
 
9
#include "sp-gradient.h"
 
10
#include "svg/svg-length.h"
 
11
#include "sp-radial-gradient-fns.h"
 
12
 
 
13
/** Radial gradient. */
 
14
struct SPRadialGradient : public SPGradient {
 
15
    SVGLength cx;
 
16
    SVGLength cy;
 
17
    SVGLength r;
 
18
    SVGLength fx;
 
19
    SVGLength fy;
 
20
};
 
21
 
 
22
/// The SPRadialGradient vtable.
 
23
struct SPRadialGradientClass {
 
24
    SPGradientClass parent_class;
 
25
};
 
26
 
 
27
 
 
28
#endif /* !SP_RADIAL_GRADIENT_H */
 
29
 
 
30
/*
 
31
  Local Variables:
 
32
  mode:c++
 
33
  c-file-style:"stroustrup"
 
34
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
35
  indent-tabs-mode:nil
 
36
  fill-column:99
 
37
  End:
 
38
*/
 
39
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :