~ubuntu-branches/debian/experimental/inkscape/experimental

« back to all changes in this revision

Viewing changes to src/display/inkscape-cairo.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-09-09 23:29:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909232902-c50iujhk1w79u8e7
Tags: 0.46-2.1
* Non-maintainer upload.
* Add upstream patch fixing a crash in the open dialog
  in the zh_CN.utf8 locale. Closes: #487623.
  Thanks to Luca Bruno for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __INKSCAPE_CAIRO_H__
 
2
#define __INKSCAPE_CAIRO_H__
 
3
 
 
4
/*
 
5
 * Helper functions to use cairo with inkscape
 
6
 *
 
7
 * Copyright (C) 2007 bulia byak
 
8
 *
 
9
 * Released under GNU GPL
 
10
 *
 
11
 */
 
12
 
 
13
cairo_t *nr_create_cairo_context (NRRectL *area, NRPixBlock *pb);
 
14
void feed_curve_to_cairo (cairo_t *ct, NArtBpath *bpath, NR::Matrix trans, NR::Maybe<NR::Rect> area, bool optimize_stroke, double stroke_width);
 
15
 
 
16
#endif
 
17
/*
 
18
  Local Variables:
 
19
  mode:c++
 
20
  c-file-style:"stroustrup"
 
21
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
22
  indent-tabs-mode:nil
 
23
  fill-column:99
 
24
  End:
 
25
*/
 
26
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :