~ubuntu-branches/ubuntu/precise/ipe/precise

« back to all changes in this revision

Viewing changes to src/include/ipedoc.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2011-02-15 23:06:48 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110215230648-ddivgj61o8k7et79
Tags: 7.0.14-1
* New upstream.  Update control, rules.

* libipe7.0.13.install:
* ipe.links: Remove.  Replace with explicit calls in rules using
  $(IPEVERS).  Fixes lua link.  Closes: #611560.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
/*
6
6
 
7
7
    This file is part of the extensible drawing editor Ipe.
8
 
    Copyright (C) 1993-2009  Otfried Cheong
 
8
    Copyright (C) 1993-2010  Otfried Cheong
9
9
 
10
10
    Ipe is free software; you can redistribute it and/or modify it
11
11
    under the terms of the GNU General Public License as published by
77
77
      ESaveNormal = 0, //!< Nothing special
78
78
      EExport = 1,     //!< Don't include Ipe markup
79
79
      ENoZip = 2,      //!< Do not compress streams
80
 
      ELastView = 4,   //!< Create last view of each page only
 
80
      EMarkedView = 4, //!< Create marked views only
81
81
      ENoColor = 8,    //!< No color commands in EPS output
82
82
    };
83
83
 
149
149
 
150
150
    //! Error codes returned by RunLatex.
151
151
    enum { ErrNone, ErrNoText, ErrNoDir, ErrWritingSource,
152
 
           ErrOldPdfLatex, ErrRunLatex, ErrLatex, ErrLatexOutput };
 
152
           ErrOldPdfLatex, ErrRunLatex, ErrLatex, ErrLatexOutput,
 
153
           ErrNoIconv };
153
154
    int runLatex(String &logFile);
154
155
    int runLatex();
155
156