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

« back to all changes in this revision

Viewing changes to src/extension/print.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:
12
12
 
13
13
#include "extension.h"
14
14
 
15
 
#include "libnr/nr-path.h"
16
15
#include "display/nr-arena-forward.h"
17
16
#include "forward.h"
18
17
 
41
40
    unsigned int  finish      (void);
42
41
 
43
42
    /* Rendering methods */
44
 
    unsigned int  bind        (NRMatrix const *transform,
 
43
    unsigned int  bind        (Geom::Matrix const *transform,
45
44
                               float opacity);
46
45
    unsigned int  release     (void);
47
46
    unsigned int  comment     (const char * comment);
48
 
    unsigned int  fill        (NRBPath const *bpath,
49
 
                               NRMatrix const *ctm,
 
47
    unsigned int  fill        (Geom::PathVector const &pathv,
 
48
                               Geom::Matrix const *ctm,
50
49
                               SPStyle const *style,
51
50
                               NRRect const *pbox,
52
51
                               NRRect const *dbox,
53
52
                               NRRect const *bbox);
54
 
    unsigned int  stroke      (NRBPath const *bpath,
55
 
                               NRMatrix const *transform,
 
53
    unsigned int  stroke      (Geom::PathVector const &pathv,
 
54
                               Geom::Matrix const *transform,
56
55
                               SPStyle const *style,
57
56
                               NRRect const *pbox,
58
57
                               NRRect const *dbox,
61
60
                               unsigned int w,
62
61
                               unsigned int h,
63
62
                               unsigned int rs,
64
 
                               NRMatrix const *transform,
 
63
                               Geom::Matrix const *transform,
65
64
                               SPStyle const *style);
66
65
    unsigned int  text        (char const *text,
67
 
                               NR::Point p,
 
66
                               Geom::Point p,
68
67
                               SPStyle const *style);
69
68
    bool          textToPath  (void);
70
69
    bool          fontEmbedded  (void);