~ubuntu-branches/ubuntu/maverick/scribus-ng/maverick-backports

« back to all changes in this revision

Viewing changes to scribus/plugins/gettext/odtim/contentreader.h

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2009-02-09 09:25:18 UTC
  • mfrom: (5.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090209092518-iqsxmh3pjspgrdyd
Tags: 1.3.5.dfsg~svn20090208-2
debian/control: Use "type-handling -n arm,armel,armeb any" to generate the
list of architectures to build on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "scconfig.h"
31
31
 
32
 
#ifdef HAVE_XML
33
 
 
34
32
#include <utility>
35
33
#include <vector>
36
34
#ifdef HAVE_XML26
38
36
#else
39
37
 #include <libxml/SAX.h>
40
38
#endif
41
 
#include <qxml.h>
42
 
#include <qmap.h>
 
39
#include <QXmlAttributes>
 
40
#include <QMap>
43
41
#include <gtstyle.h>
44
42
#include <gtwriter.h>
45
43
#include "stylereader.h"
60
58
        gtStyle *lastStyle;
61
59
        gtStyle *pstyle;
62
60
        bool importTextOnly;
63
 
        bool append;
64
61
        bool inList;
 
62
        bool inNote;
 
63
        bool inNoteBody;
65
64
        bool inSpan;
66
 
        int listLevel;
67
 
        int listIndex;
 
65
        int  append;
 
66
        int  listLevel;
 
67
        int  listIndex;
68
68
        ListStyle *currentListStyle;
69
69
        std::vector<int> listIndex2;
70
70
        bool inT;
86
86
        void parse(QString fileName);
87
87
};
88
88
 
89
 
#endif // HAVE_XML
90
 
 
91
89
#endif