~ubuntu-branches/ubuntu/precise/koffice/precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
** Header file for inclusion with kword_xml2latex.c
**
** Copyright (C) 2000, 2002 Robert JACOLIN
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Library General Public
** License as published by the Free Software Foundation; either
** version 2 of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
** Library General Public License for more details.
**
** To receive a copy of the GNU Library General Public License, write to the
** Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
**
*/

#ifndef __KSPREAD_LATEX_FILEHEADER_H__
#define __KSPREAD_LATEX_FILEHEADER_H__

#include <QTextStream>

#include "xmlparser.h"

/***********************************************************************/
/* Class: FileHeader                                                   */
/***********************************************************************/

/**
 * This class holds all general information about the doc: does it use a color markup, ... ?
 * paper size, ... and generates the information about the doc (packages and extensions
 * to include, ...). It's the configuration latex file used to include the needed packages,
 * define the paper format, ...
 */
class FileHeader: public XmlParser
{
public:
    enum TFormat { TF_A3, TF_A4, TF_A5, TF_USLETTER, TF_USLEGAL, TF_SCREEN,
                   TF_CUSTOM, TF_B3, TF_USEXECUTIVE
                 };
    enum TUnit { TMillimeter, TCentimeter, TPoint, TInch };
    enum TOrient { TO_PORTRAIT, TO_LANDSCAPE };
    enum TColonne { TC_NONE, TC_1, TC_2, TC_MORE };
    enum THeadfoot { TH_ALL = 0, TH_XXX = 1, TH_FIRST = 2, TH_EVODD = 3 };
    enum TProcType { TP_NORMAL, TP_DTP };

    static FileHeader* instance(void);

private:
    /* PAPER */
    TFormat   _format;
    double    _width,
    _height;
    TOrient   _orientation;
    TColonne  _colonne;
    double    _columnSpacing;
    THeadfoot _headType;
    THeadfoot _footType;
    TProcType _processing;
    int       _standardPage;
    double    _footBody;
    double    _headBody;

    /* PAPERBORDERS */
    double    _leftBorder,
    _rightBorder,
    _bottomBorder,
    _topBorder;

    /* ATTRIBUTES */
    TUnit    _unite;
    bool     _hasHeader;
    bool     _hasFooter;
    bool     _hasTOC;

    /* FOOTNOTEMGR */

    /* DIVERSE */
    /* for special packages to include */
    bool     _hasColor;
    bool     _hasUnderline;
    bool     _hasEnumerate;
    bool     _hasGraphics;
    bool     _hasTable;

public:

    /**
     * Destructor
     */
    virtual ~FileHeader();

    /**
     * Accessors
     */
    TFormat   getFormat() const {
        return _format;
    }
    TOrient   getOrientation() const {
        return _orientation;
    }
    TColonne  getColumns() const {
        return _colonne;
    }
    THeadfoot getHeadType() const {
        return _headType;
    }
    THeadfoot getFootType() const {
        return _footType;
    }
    TUnit     getUnit() const {
        return _unite;
    }
    TProcType getProcessing() const {
        return _processing;
    }
    int       getStandardPge() const {
        return _standardPage;
    }
    bool      hasHeader() const {
        return _hasHeader;
    }
    bool      hasFooter() const {
        return _hasFooter;
    }
    bool      hasTOC() const {
        return _hasTOC;
    }
    bool      hasColor() const {
        return _hasColor;
    }
    bool      hasUnderline() const {
        return _hasUnderline;
    }
    bool      hasEnumerate() const {
        return _hasEnumerate;
    }
    bool      hasGraphics() const {
        return _hasGraphics;
    }
    bool      hasTable() const {
        return _hasTable;
    }

    /**
     * Modifiors
     */
    void setFormat(TFormat f)  {
        _format       = f;
    }
    void setFormat(int f)      {
        _format       = (TFormat) f;
    }
    void setOrientation(TOrient o)  {
        _orientation  = o;
    }
    void setOrientation(int o)      {
        _orientation  = (TOrient) o;
    }
    void setColumns(TColonne c) {
        _colonne      = c;
    }
    void setColumns(int c)      {
        _colonne      = (TColonne) c;
    }
    void setUnit(int u)      {
        _unite        = (TUnit) u;
    }
    void setProcessing(int p)      {
        _processing   = (TProcType) p;
    }
    void setStandardPge(int s)      {
        _standardPage = s;
    }
    void setTOC(int t)      {
        _hasTOC       = t;
    }
    void setHeadType(int ht)     {
        _headType     = (THeadfoot) ht;
    }
    void setFootType(int ft)     {
        _footType     = (THeadfoot) ft;
    }
    void useColor()           {
        _hasColor     = true;
    }
    void useUnderline()           {
        _hasUnderline = true;
    }
    void useEnumerate()           {
        _hasEnumerate = true;
    }
    void useGraphics()           {
        _hasGraphics  = true;
    }
    void useTable()           {
        _hasTable     = true;
    }

    void analyzePaper(const QDomNode);
    void analyzeAttributes(const QDomNode);

    void generate(QTextStream &);

protected:
    /**
     * Constructor
     */
    FileHeader();  /* Ensure singleton */

    static FileHeader* _instance; /* singleton */

private:

    void analyzePaperParam(const QDomNode);

    void generatePaper(QTextStream&);
    void generateLatinPreamble(QTextStream&);
    void generateUnicodePreamble(QTextStream&);
    void generatePackage(QTextStream&);

};

#endif /* __KSPREAD_LATEX_FILEHEADER_H__ */