~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/display/canvas-bpath.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
    /* Line def */
66
66
    SPCurve *curve;
 
67
    Geom::Matrix affine;
67
68
 
68
69
    /* Fill attributes */
69
70
    guint32 fill_rgba;
72
73
    /* Line attributes */
73
74
    guint32 stroke_rgba;
74
75
    gdouble stroke_width;
 
76
    gdouble dashes[2];
75
77
    SPStrokeJoinType stroke_linejoin;
76
78
    SPStrokeCapType stroke_linecap;
77
79
    gdouble stroke_miterlimit;
91
93
 
92
94
void sp_canvas_bpath_set_bpath (SPCanvasBPath *cbp, SPCurve *curve);
93
95
void sp_canvas_bpath_set_fill (SPCanvasBPath *cbp, guint32 rgba, SPWindRule rule);
94
 
void sp_canvas_bpath_set_stroke (SPCanvasBPath *cbp, guint32 rgba, gdouble width, SPStrokeJoinType join, SPStrokeCapType cap);
95
 
 
96
 
 
 
96
void sp_canvas_bpath_set_stroke (SPCanvasBPath *cbp, guint32 rgba, gdouble width, SPStrokeJoinType join, SPStrokeCapType cap, double dash=0, double gap=0);
97
97
 
98
98
#endif
99
99
 
 
100
/*
 
101
  Local Variables:
 
102
  mode:c++
 
103
  c-file-style:"stroustrup"
 
104
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
105
  indent-tabs-mode:nil
 
106
  fill-column:99
 
107
  End:
 
108
*/
 
109
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :