~ubuntu-branches/ubuntu/jaunty/poppler/jaunty-security

« back to all changes in this revision

Viewing changes to poppler/PSOutputDev.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-01-14 16:57:14 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090114165714-fc0eniq9604rq6u4
Tags: 0.10.3-0ubuntu1
* New upstream version
* debian/patches/60_manpages-cfg-flag.patch:
  - the change is in the new version
* debian/patches/61_manpages-hyphens.patch:
  - the change is in the new version
* debian/patches/62_pdftops-mandatory-arg.patch:
  - the change is in the new version
* debian/patches/63_do-not-make-ps-arrays-bigger-than-64k-from-big-images-in-patterns.patch:
  - the change is in the new version
* Updated for the libpoppler and libpoppler-glib soname changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
//
7
7
//========================================================================
8
8
 
 
9
//========================================================================
 
10
//
 
11
// Modified under the Poppler project - http://poppler.freedesktop.org
 
12
//
 
13
// All changes made under the Poppler project to this file are licensed
 
14
// under GPL version 2 or later
 
15
//
 
16
// Copyright (C) 2005 Martin Kretzschmar <martink@gnome.org>
 
17
// Copyright (C) 2005 Kristian Høgsberg <krh@redhat.com>
 
18
// Copyright (C) 2006-2008 Albert Astals Cid <aacid@kde.org>
 
19
// Copyright (C) 2007 Brad Hards <bradh@kde.org>
 
20
//
 
21
// To see a description of the changes please see the Changelog file that
 
22
// came with your tarball or type make ChangeLog if you are building from git
 
23
//
 
24
//========================================================================
 
25
 
9
26
#ifndef PSOUTPUTDEV_H
10
27
#define PSOUTPUTDEV_H
11
28
 
302
319
  void opiBegin13(GfxState *state, Dict *dict);
303
320
  void opiTransform(GfxState *state, double x0, double y0,
304
321
                    double *x1, double *y1);
305
 
  GBool getFileSpec(Object *fileSpec, Object *fileName);
306
322
#endif
307
323
  void cvtFunction(Function *func);
308
324
  void writePSChar(char c);
310
326
  void writePSFmt(const char *fmt, ...);
311
327
  void writePSString(GooString *s);
312
328
  void writePSName(char *s);
313
 
  GooString *filterPSName(GooString *name);
314
329
  GooString *filterPSLabel(GooString *label, GBool *needParens=0);
315
330
  void writePSTextLine(GooString *s);
316
331