Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/gui/text/qtextodfwriter.cpp |
Source code | Switch to Preprocessed file |
Line | Source | Count | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | /**************************************************************************** | - | ||||||||||||||||||
2 | ** | - | ||||||||||||||||||
3 | ** Copyright (C) 2016 The Qt Company Ltd. | - | ||||||||||||||||||
4 | ** Contact: https://www.qt.io/licensing/ | - | ||||||||||||||||||
5 | ** | - | ||||||||||||||||||
6 | ** This file is part of the QtGui module of the Qt Toolkit. | - | ||||||||||||||||||
7 | ** | - | ||||||||||||||||||
8 | ** $QT_BEGIN_LICENSE:LGPL$ | - | ||||||||||||||||||
9 | ** Commercial License Usage | - | ||||||||||||||||||
10 | ** Licensees holding valid commercial Qt licenses may use this file in | - | ||||||||||||||||||
11 | ** accordance with the commercial license agreement provided with the | - | ||||||||||||||||||
12 | ** Software or, alternatively, in accordance with the terms contained in | - | ||||||||||||||||||
13 | ** a written agreement between you and The Qt Company. For licensing terms | - | ||||||||||||||||||
14 | ** and conditions see https://www.qt.io/terms-conditions. For further | - | ||||||||||||||||||
15 | ** information use the contact form at https://www.qt.io/contact-us. | - | ||||||||||||||||||
16 | ** | - | ||||||||||||||||||
17 | ** GNU Lesser General Public License Usage | - | ||||||||||||||||||
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser | - | ||||||||||||||||||
19 | ** General Public License version 3 as published by the Free Software | - | ||||||||||||||||||
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the | - | ||||||||||||||||||
21 | ** packaging of this file. Please review the following information to | - | ||||||||||||||||||
22 | ** ensure the GNU Lesser General Public License version 3 requirements | - | ||||||||||||||||||
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. | - | ||||||||||||||||||
24 | ** | - | ||||||||||||||||||
25 | ** GNU General Public License Usage | - | ||||||||||||||||||
26 | ** Alternatively, this file may be used under the terms of the GNU | - | ||||||||||||||||||
27 | ** General Public License version 2.0 or (at your option) the GNU General | - | ||||||||||||||||||
28 | ** Public license version 3 or any later version approved by the KDE Free | - | ||||||||||||||||||
29 | ** Qt Foundation. The licenses are as published by the Free Software | - | ||||||||||||||||||
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 | - | ||||||||||||||||||
31 | ** included in the packaging of this file. Please review the following | - | ||||||||||||||||||
32 | ** information to ensure the GNU General Public License requirements will | - | ||||||||||||||||||
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and | - | ||||||||||||||||||
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. | - | ||||||||||||||||||
35 | ** | - | ||||||||||||||||||
36 | ** $QT_END_LICENSE$ | - | ||||||||||||||||||
37 | ** | - | ||||||||||||||||||
38 | ****************************************************************************/ | - | ||||||||||||||||||
39 | - | |||||||||||||||||||
40 | #include <qglobal.h> | - | ||||||||||||||||||
41 | - | |||||||||||||||||||
42 | #ifndef QT_NO_TEXTODFWRITER | - | ||||||||||||||||||
43 | - | |||||||||||||||||||
44 | #include "qtextodfwriter_p.h" | - | ||||||||||||||||||
45 | - | |||||||||||||||||||
46 | #include <QImageWriter> | - | ||||||||||||||||||
47 | #include <QTextListFormat> | - | ||||||||||||||||||
48 | #include <QTextList> | - | ||||||||||||||||||
49 | #include <QBuffer> | - | ||||||||||||||||||
50 | #include <QUrl> | - | ||||||||||||||||||
51 | - | |||||||||||||||||||
52 | #include "qtextdocument_p.h" | - | ||||||||||||||||||
53 | #include "qtexttable.h" | - | ||||||||||||||||||
54 | #include "qtextcursor.h" | - | ||||||||||||||||||
55 | #include "qtextimagehandler_p.h" | - | ||||||||||||||||||
56 | #include "qzipwriter_p.h" | - | ||||||||||||||||||
57 | - | |||||||||||||||||||
58 | #include <QDebug> | - | ||||||||||||||||||
59 | - | |||||||||||||||||||
60 | QT_BEGIN_NAMESPACE | - | ||||||||||||||||||
61 | - | |||||||||||||||||||
62 | /// Convert pixels to postscript point units | - | ||||||||||||||||||
63 | static QString pixelToPoint(qreal pixels) | - | ||||||||||||||||||
64 | { | - | ||||||||||||||||||
65 | // we hardcode 96 DPI, we do the same in the ODF importer to have a perfect roundtrip. | - | ||||||||||||||||||
66 | return QString::number(pixels * 72 / 96) + QString::fromLatin1("pt"); never executed: return QString::number(pixels * 72 / 96) + QString::fromLatin1("pt"); | 0 | ||||||||||||||||||
67 | } | - | ||||||||||||||||||
68 | - | |||||||||||||||||||
69 | // strategies | - | ||||||||||||||||||
70 | class QOutputStrategy { | - | ||||||||||||||||||
71 | public: | - | ||||||||||||||||||
72 | QOutputStrategy() : contentStream(0), counter(1) { } never executed: end of block | 0 | ||||||||||||||||||
73 | virtual ~QOutputStrategy() {} | - | ||||||||||||||||||
74 | virtual void addFile(const QString &fileName, const QString &mimeType, const QByteArray &bytes) = 0; | - | ||||||||||||||||||
75 | - | |||||||||||||||||||
76 | QString createUniqueImageName() | - | ||||||||||||||||||
77 | { | - | ||||||||||||||||||
78 | return QString::fromLatin1("Pictures/Picture%1").arg(counter++); never executed: return QString::fromLatin1("Pictures/Picture%1").arg(counter++); | 0 | ||||||||||||||||||
79 | } | - | ||||||||||||||||||
80 | - | |||||||||||||||||||
81 | QIODevice *contentStream; | - | ||||||||||||||||||
82 | int counter; | - | ||||||||||||||||||
83 | }; | - | ||||||||||||||||||
84 | - | |||||||||||||||||||
85 | class QXmlStreamStrategy : public QOutputStrategy { | - | ||||||||||||||||||
86 | public: | - | ||||||||||||||||||
87 | QXmlStreamStrategy(QIODevice *device) | - | ||||||||||||||||||
88 | { | - | ||||||||||||||||||
89 | contentStream = device; | - | ||||||||||||||||||
90 | } never executed: end of block | 0 | ||||||||||||||||||
91 | - | |||||||||||||||||||
92 | virtual ~QXmlStreamStrategy() | - | ||||||||||||||||||
93 | { | - | ||||||||||||||||||
94 | if (contentStream)
| 0 | ||||||||||||||||||
95 | contentStream->close(); never executed: contentStream->close(); | 0 | ||||||||||||||||||
96 | } never executed: end of block | 0 | ||||||||||||||||||
97 | virtual void addFile(const QString &, const QString &, const QByteArray &) Q_DECL_OVERRIDE | - | ||||||||||||||||||
98 | { | - | ||||||||||||||||||
99 | // we ignore this... | - | ||||||||||||||||||
100 | } | - | ||||||||||||||||||
101 | }; | - | ||||||||||||||||||
102 | - | |||||||||||||||||||
103 | class QZipStreamStrategy : public QOutputStrategy { | - | ||||||||||||||||||
104 | public: | - | ||||||||||||||||||
105 | QZipStreamStrategy(QIODevice *device) | - | ||||||||||||||||||
106 | : zip(device), | - | ||||||||||||||||||
107 | manifestWriter(&manifest) | - | ||||||||||||||||||
108 | { | - | ||||||||||||||||||
109 | QByteArray mime("application/vnd.oasis.opendocument.text"); | - | ||||||||||||||||||
110 | zip.setCompressionPolicy(QZipWriter::NeverCompress); | - | ||||||||||||||||||
111 | zip.addFile(QString::fromLatin1("mimetype"), mime); // for mime-magick | - | ||||||||||||||||||
112 | zip.setCompressionPolicy(QZipWriter::AutoCompress); | - | ||||||||||||||||||
113 | contentStream = &content; | - | ||||||||||||||||||
114 | content.open(QIODevice::WriteOnly); | - | ||||||||||||||||||
115 | manifest.open(QIODevice::WriteOnly); | - | ||||||||||||||||||
116 | - | |||||||||||||||||||
117 | manifestNS = QString::fromLatin1("urn:oasis:names:tc:opendocument:xmlns:manifest:1.0"); | - | ||||||||||||||||||
118 | // prettyfy | - | ||||||||||||||||||
119 | manifestWriter.setAutoFormatting(true); | - | ||||||||||||||||||
120 | manifestWriter.setAutoFormattingIndent(1); | - | ||||||||||||||||||
121 | - | |||||||||||||||||||
122 | manifestWriter.writeNamespace(manifestNS, QString::fromLatin1("manifest")); | - | ||||||||||||||||||
123 | manifestWriter.writeStartDocument(); | - | ||||||||||||||||||
124 | manifestWriter.writeStartElement(manifestNS, QString::fromLatin1("manifest")); | - | ||||||||||||||||||
125 | manifestWriter.writeAttribute(manifestNS, QString::fromLatin1("version"), QString::fromLatin1("1.2")); | - | ||||||||||||||||||
126 | addFile(QString::fromLatin1("/"), QString::fromLatin1("application/vnd.oasis.opendocument.text")); | - | ||||||||||||||||||
127 | addFile(QString::fromLatin1("content.xml"), QString::fromLatin1("text/xml")); | - | ||||||||||||||||||
128 | } never executed: end of block | 0 | ||||||||||||||||||
129 | - | |||||||||||||||||||
130 | ~QZipStreamStrategy() | - | ||||||||||||||||||
131 | { | - | ||||||||||||||||||
132 | manifestWriter.writeEndDocument(); | - | ||||||||||||||||||
133 | manifest.close(); | - | ||||||||||||||||||
134 | zip.addFile(QString::fromLatin1("META-INF/manifest.xml"), &manifest); | - | ||||||||||||||||||
135 | content.close(); | - | ||||||||||||||||||
136 | zip.addFile(QString::fromLatin1("content.xml"), &content); | - | ||||||||||||||||||
137 | zip.close(); | - | ||||||||||||||||||
138 | } never executed: end of block | 0 | ||||||||||||||||||
139 | - | |||||||||||||||||||
140 | virtual void addFile(const QString &fileName, const QString &mimeType, const QByteArray &bytes) Q_DECL_OVERRIDE | - | ||||||||||||||||||
141 | { | - | ||||||||||||||||||
142 | zip.addFile(fileName, bytes); | - | ||||||||||||||||||
143 | addFile(fileName, mimeType); | - | ||||||||||||||||||
144 | } never executed: end of block | 0 | ||||||||||||||||||
145 | - | |||||||||||||||||||
146 | private: | - | ||||||||||||||||||
147 | void addFile(const QString &fileName, const QString &mimeType) | - | ||||||||||||||||||
148 | { | - | ||||||||||||||||||
149 | manifestWriter.writeEmptyElement(manifestNS, QString::fromLatin1("file-entry")); | - | ||||||||||||||||||
150 | manifestWriter.writeAttribute(manifestNS, QString::fromLatin1("media-type"), mimeType); | - | ||||||||||||||||||
151 | manifestWriter.writeAttribute(manifestNS, QString::fromLatin1("full-path"), fileName); | - | ||||||||||||||||||
152 | } never executed: end of block | 0 | ||||||||||||||||||
153 | - | |||||||||||||||||||
154 | QBuffer content; | - | ||||||||||||||||||
155 | QBuffer manifest; | - | ||||||||||||||||||
156 | QZipWriter zip; | - | ||||||||||||||||||
157 | QXmlStreamWriter manifestWriter; | - | ||||||||||||||||||
158 | QString manifestNS; | - | ||||||||||||||||||
159 | }; | - | ||||||||||||||||||
160 | - | |||||||||||||||||||
161 | static QString bulletChar(QTextListFormat::Style style) | - | ||||||||||||||||||
162 | { | - | ||||||||||||||||||
163 | switch(style) { | - | ||||||||||||||||||
164 | case QTextListFormat::ListDisc: never executed: case QTextListFormat::ListDisc: | 0 | ||||||||||||||||||
165 | return QChar(0x25cf); // bullet character never executed: return QChar(0x25cf); | 0 | ||||||||||||||||||
166 | case QTextListFormat::ListCircle: never executed: case QTextListFormat::ListCircle: | 0 | ||||||||||||||||||
167 | return QChar(0x25cb); // white circle never executed: return QChar(0x25cb); | 0 | ||||||||||||||||||
168 | case QTextListFormat::ListSquare: never executed: case QTextListFormat::ListSquare: | 0 | ||||||||||||||||||
169 | return QChar(0x25a1); // white square never executed: return QChar(0x25a1); | 0 | ||||||||||||||||||
170 | case QTextListFormat::ListDecimal: never executed: case QTextListFormat::ListDecimal: | 0 | ||||||||||||||||||
171 | return QString::fromLatin1("1"); never executed: return QString::fromLatin1("1"); | 0 | ||||||||||||||||||
172 | case QTextListFormat::ListLowerAlpha: never executed: case QTextListFormat::ListLowerAlpha: | 0 | ||||||||||||||||||
173 | return QString::fromLatin1("a"); never executed: return QString::fromLatin1("a"); | 0 | ||||||||||||||||||
174 | case QTextListFormat::ListUpperAlpha: never executed: case QTextListFormat::ListUpperAlpha: | 0 | ||||||||||||||||||
175 | return QString::fromLatin1("A"); never executed: return QString::fromLatin1("A"); | 0 | ||||||||||||||||||
176 | case QTextListFormat::ListLowerRoman: never executed: case QTextListFormat::ListLowerRoman: | 0 | ||||||||||||||||||
177 | return QString::fromLatin1("i"); never executed: return QString::fromLatin1("i"); | 0 | ||||||||||||||||||
178 | case QTextListFormat::ListUpperRoman: never executed: case QTextListFormat::ListUpperRoman: | 0 | ||||||||||||||||||
179 | return QString::fromLatin1("I"); never executed: return QString::fromLatin1("I"); | 0 | ||||||||||||||||||
180 | default: never executed: default: | 0 | ||||||||||||||||||
181 | case QTextListFormat::ListStyleUndefined: never executed: case QTextListFormat::ListStyleUndefined: | 0 | ||||||||||||||||||
182 | return QString(); never executed: return QString(); | 0 | ||||||||||||||||||
183 | } | - | ||||||||||||||||||
184 | } | - | ||||||||||||||||||
185 | - | |||||||||||||||||||
186 | void QTextOdfWriter::writeFrame(QXmlStreamWriter &writer, const QTextFrame *frame) | - | ||||||||||||||||||
187 | { | - | ||||||||||||||||||
188 | Q_ASSERT(frame); | - | ||||||||||||||||||
189 | const QTextTable *table = qobject_cast<const QTextTable*> (frame); | - | ||||||||||||||||||
190 | - | |||||||||||||||||||
191 | if (table) { // Start a table.
| 0 | ||||||||||||||||||
192 | writer.writeStartElement(tableNS, QString::fromLatin1("table")); | - | ||||||||||||||||||
193 | writer.writeEmptyElement(tableNS, QString::fromLatin1("table-column")); | - | ||||||||||||||||||
194 | writer.writeAttribute(tableNS, QString::fromLatin1("number-columns-repeated"), QString::number(table->columns())); | - | ||||||||||||||||||
195 | } else if (frame->document() && frame->document()->rootFrame() != frame) { // start a section never executed: end of block
| 0 | ||||||||||||||||||
196 | writer.writeStartElement(textNS, QString::fromLatin1("section")); | - | ||||||||||||||||||
197 | } never executed: end of block | 0 | ||||||||||||||||||
198 | - | |||||||||||||||||||
199 | QTextFrame::iterator iterator = frame->begin(); | - | ||||||||||||||||||
200 | QTextFrame *child = 0; | - | ||||||||||||||||||
201 | - | |||||||||||||||||||
202 | int tableRow = -1; | - | ||||||||||||||||||
203 | while (! iterator.atEnd()) {
| 0 | ||||||||||||||||||
204 | if (iterator.currentFrame() && child != iterator.currentFrame())
| 0 | ||||||||||||||||||
205 | writeFrame(writer, iterator.currentFrame()); never executed: writeFrame(writer, iterator.currentFrame()); | 0 | ||||||||||||||||||
206 | else { // no frame, its a block | - | ||||||||||||||||||
207 | QTextBlock block = iterator.currentBlock(); | - | ||||||||||||||||||
208 | if (table) {
| 0 | ||||||||||||||||||
209 | QTextTableCell cell = table->cellAt(block.position()); | - | ||||||||||||||||||
210 | if (tableRow < cell.row()) {
| 0 | ||||||||||||||||||
211 | if (tableRow >= 0)
| 0 | ||||||||||||||||||
212 | writer.writeEndElement(); // close table row never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
213 | tableRow = cell.row(); | - | ||||||||||||||||||
214 | writer.writeStartElement(tableNS, QString::fromLatin1("table-row")); | - | ||||||||||||||||||
215 | } never executed: end of block | 0 | ||||||||||||||||||
216 | writer.writeStartElement(tableNS, QString::fromLatin1("table-cell")); | - | ||||||||||||||||||
217 | if (cell.columnSpan() > 1)
| 0 | ||||||||||||||||||
218 | writer.writeAttribute(tableNS, QString::fromLatin1("number-columns-spanned"), QString::number(cell.columnSpan())); never executed: writer.writeAttribute(tableNS, QString::fromLatin1("number-columns-spanned"), QString::number(cell.columnSpan())); | 0 | ||||||||||||||||||
219 | if (cell.rowSpan() > 1)
| 0 | ||||||||||||||||||
220 | writer.writeAttribute(tableNS, QString::fromLatin1("number-rows-spanned"), QString::number(cell.rowSpan())); never executed: writer.writeAttribute(tableNS, QString::fromLatin1("number-rows-spanned"), QString::number(cell.rowSpan())); | 0 | ||||||||||||||||||
221 | if (cell.format().isTableCellFormat()) {
| 0 | ||||||||||||||||||
222 | writer.writeAttribute(tableNS, QString::fromLatin1("style-name"), QString::fromLatin1("T%1").arg(cell.tableCellFormatIndex())); | - | ||||||||||||||||||
223 | } never executed: end of block | 0 | ||||||||||||||||||
224 | } never executed: end of block | 0 | ||||||||||||||||||
225 | writeBlock(writer, block); | - | ||||||||||||||||||
226 | if (table)
| 0 | ||||||||||||||||||
227 | writer.writeEndElement(); // table-cell never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
228 | } never executed: end of block | 0 | ||||||||||||||||||
229 | child = iterator.currentFrame(); | - | ||||||||||||||||||
230 | ++iterator; | - | ||||||||||||||||||
231 | } never executed: end of block | 0 | ||||||||||||||||||
232 | if (tableRow >= 0)
| 0 | ||||||||||||||||||
233 | writer.writeEndElement(); // close table-row never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
234 | - | |||||||||||||||||||
235 | if (table || (frame->document() && frame->document()->rootFrame() != frame))
| 0 | ||||||||||||||||||
236 | writer.writeEndElement(); // close table or section element never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
237 | } never executed: end of block | 0 | ||||||||||||||||||
238 | - | |||||||||||||||||||
239 | void QTextOdfWriter::writeBlock(QXmlStreamWriter &writer, const QTextBlock &block) | - | ||||||||||||||||||
240 | { | - | ||||||||||||||||||
241 | if (block.textList()) { // its a list-item
| 0 | ||||||||||||||||||
242 | const int listLevel = block.textList()->format().indent(); | - | ||||||||||||||||||
243 | if (m_listStack.isEmpty() || m_listStack.top() != block.textList()) {
| 0 | ||||||||||||||||||
244 | // not the same list we were in. | - | ||||||||||||||||||
245 | while (m_listStack.count() >= listLevel && !m_listStack.isEmpty() && m_listStack.top() != block.textList() ) { // we need to close tags
| 0 | ||||||||||||||||||
246 | m_listStack.pop(); | - | ||||||||||||||||||
247 | writer.writeEndElement(); // list | - | ||||||||||||||||||
248 | if (m_listStack.count())
| 0 | ||||||||||||||||||
249 | writer.writeEndElement(); // list-item never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
250 | } never executed: end of block | 0 | ||||||||||||||||||
251 | while (m_listStack.count() < listLevel) {
| 0 | ||||||||||||||||||
252 | if (m_listStack.count())
| 0 | ||||||||||||||||||
253 | writer.writeStartElement(textNS, QString::fromLatin1("list-item")); never executed: writer.writeStartElement(textNS, QString::fromLatin1("list-item")); | 0 | ||||||||||||||||||
254 | writer.writeStartElement(textNS, QString::fromLatin1("list")); | - | ||||||||||||||||||
255 | if (m_listStack.count() == listLevel - 1) {
| 0 | ||||||||||||||||||
256 | m_listStack.push(block.textList()); | - | ||||||||||||||||||
257 | writer.writeAttribute(textNS, QString::fromLatin1("style-name"), QString::fromLatin1("L%1") | - | ||||||||||||||||||
258 | .arg(block.textList()->formatIndex())); | - | ||||||||||||||||||
259 | } never executed: end of block | 0 | ||||||||||||||||||
260 | else { | - | ||||||||||||||||||
261 | m_listStack.push(0); | - | ||||||||||||||||||
262 | } never executed: end of block | 0 | ||||||||||||||||||
263 | } | - | ||||||||||||||||||
264 | } never executed: end of block | 0 | ||||||||||||||||||
265 | writer.writeStartElement(textNS, QString::fromLatin1("list-item")); | - | ||||||||||||||||||
266 | } never executed: end of block | 0 | ||||||||||||||||||
267 | else { | - | ||||||||||||||||||
268 | while (! m_listStack.isEmpty()) {
| 0 | ||||||||||||||||||
269 | m_listStack.pop(); | - | ||||||||||||||||||
270 | writer.writeEndElement(); // list | - | ||||||||||||||||||
271 | if (m_listStack.count())
| 0 | ||||||||||||||||||
272 | writer.writeEndElement(); // list-item never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
273 | } never executed: end of block | 0 | ||||||||||||||||||
274 | } never executed: end of block | 0 | ||||||||||||||||||
275 | - | |||||||||||||||||||
276 | if (block.length() == 1) { // only a linefeed
| 0 | ||||||||||||||||||
277 | writer.writeEmptyElement(textNS, QString::fromLatin1("p")); | - | ||||||||||||||||||
278 | writer.writeAttribute(textNS, QString::fromLatin1("style-name"), QString::fromLatin1("p%1") | - | ||||||||||||||||||
279 | .arg(block.blockFormatIndex())); | - | ||||||||||||||||||
280 | if (block.textList())
| 0 | ||||||||||||||||||
281 | writer.writeEndElement(); // numbered-paragraph never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
282 | return; never executed: return; | 0 | ||||||||||||||||||
283 | } | - | ||||||||||||||||||
284 | writer.writeStartElement(textNS, QString::fromLatin1("p")); | - | ||||||||||||||||||
285 | writer.writeAttribute(textNS, QString::fromLatin1("style-name"), QString::fromLatin1("p%1") | - | ||||||||||||||||||
286 | .arg(block.blockFormatIndex())); | - | ||||||||||||||||||
287 | for (QTextBlock::Iterator frag = block.begin(); !frag.atEnd(); ++frag) {
| 0 | ||||||||||||||||||
288 | bool isHyperlink = frag.fragment().charFormat().hasProperty(QTextFormat::AnchorHref); | - | ||||||||||||||||||
289 | if (isHyperlink) {
| 0 | ||||||||||||||||||
290 | QString value = frag.fragment().charFormat().property(QTextFormat::AnchorHref).toString(); | - | ||||||||||||||||||
291 | writer.writeStartElement(textNS, QString::fromLatin1("a")); | - | ||||||||||||||||||
292 | writer.writeAttribute(xlinkNS, QString::fromLatin1("href"), value); | - | ||||||||||||||||||
293 | } never executed: end of block | 0 | ||||||||||||||||||
294 | writer.writeCharacters(QString()); // Trick to make sure that the span gets no linefeed in front of it. | - | ||||||||||||||||||
295 | writer.writeStartElement(textNS, QString::fromLatin1("span")); | - | ||||||||||||||||||
296 | - | |||||||||||||||||||
297 | QString fragmentText = frag.fragment().text(); | - | ||||||||||||||||||
298 | if (fragmentText.length() == 1 && fragmentText[0] == 0xFFFC) { // its an inline character.
| 0 | ||||||||||||||||||
299 | writeInlineCharacter(writer, frag.fragment()); | - | ||||||||||||||||||
300 | writer.writeEndElement(); // span | - | ||||||||||||||||||
301 | continue; never executed: continue; | 0 | ||||||||||||||||||
302 | } | - | ||||||||||||||||||
303 | - | |||||||||||||||||||
304 | writer.writeAttribute(textNS, QString::fromLatin1("style-name"), QString::fromLatin1("c%1") | - | ||||||||||||||||||
305 | .arg(frag.fragment().charFormatIndex())); | - | ||||||||||||||||||
306 | bool escapeNextSpace = true; | - | ||||||||||||||||||
307 | int precedingSpaces = 0; | - | ||||||||||||||||||
308 | int exportedIndex = 0; | - | ||||||||||||||||||
309 | for (int i=0; i <= fragmentText.count(); ++i) {
| 0 | ||||||||||||||||||
310 | QChar character = fragmentText[i]; | - | ||||||||||||||||||
311 | bool isSpace = character.unicode() == ' '; | - | ||||||||||||||||||
312 | - | |||||||||||||||||||
313 | // find more than one space. -> <text:s text:c="2" /> | - | ||||||||||||||||||
314 | if (!isSpace && escapeNextSpace && precedingSpaces > 1) {
| 0 | ||||||||||||||||||
315 | const bool startParag = exportedIndex == 0 && i == precedingSpaces;
| 0 | ||||||||||||||||||
316 | if (!startParag)
| 0 | ||||||||||||||||||
317 | writer.writeCharacters(fragmentText.mid(exportedIndex, i - precedingSpaces + 1 - exportedIndex)); never executed: writer.writeCharacters(fragmentText.mid(exportedIndex, i - precedingSpaces + 1 - exportedIndex)); | 0 | ||||||||||||||||||
318 | writer.writeEmptyElement(textNS, QString::fromLatin1("s")); | - | ||||||||||||||||||
319 | const int count = precedingSpaces - (startParag?0:1);
| 0 | ||||||||||||||||||
320 | if (count > 1)
| 0 | ||||||||||||||||||
321 | writer.writeAttribute(textNS, QString::fromLatin1("c"), QString::number(count)); never executed: writer.writeAttribute(textNS, QString::fromLatin1("c"), QString::number(count)); | 0 | ||||||||||||||||||
322 | precedingSpaces = 0; | - | ||||||||||||||||||
323 | exportedIndex = i; | - | ||||||||||||||||||
324 | } never executed: end of block | 0 | ||||||||||||||||||
325 | - | |||||||||||||||||||
326 | if (i < fragmentText.count()) {
| 0 | ||||||||||||||||||
327 | if (character.unicode() == 0x2028) { // soft-return
| 0 | ||||||||||||||||||
328 | //if (exportedIndex < i) | - | ||||||||||||||||||
329 | writer.writeCharacters(fragmentText.mid(exportedIndex, i - exportedIndex)); | - | ||||||||||||||||||
330 | writer.writeEmptyElement(textNS, QString::fromLatin1("line-break")); | - | ||||||||||||||||||
331 | exportedIndex = i+1; | - | ||||||||||||||||||
332 | continue; never executed: continue; | 0 | ||||||||||||||||||
333 | } else if (character.unicode() == '\t') { // Tab
| 0 | ||||||||||||||||||
334 | //if (exportedIndex < i) | - | ||||||||||||||||||
335 | writer.writeCharacters(fragmentText.mid(exportedIndex, i - exportedIndex)); | - | ||||||||||||||||||
336 | writer.writeEmptyElement(textNS, QString::fromLatin1("tab")); | - | ||||||||||||||||||
337 | exportedIndex = i+1; | - | ||||||||||||||||||
338 | precedingSpaces = 0; | - | ||||||||||||||||||
339 | } else if (isSpace) { never executed: end of block
| 0 | ||||||||||||||||||
340 | ++precedingSpaces; | - | ||||||||||||||||||
341 | escapeNextSpace = true; | - | ||||||||||||||||||
342 | } else if (!isSpace) { never executed: end of block
| 0 | ||||||||||||||||||
343 | precedingSpaces = 0; | - | ||||||||||||||||||
344 | } never executed: end of block | 0 | ||||||||||||||||||
345 | } never executed: end of block | 0 | ||||||||||||||||||
346 | } never executed: end of block | 0 | ||||||||||||||||||
347 | - | |||||||||||||||||||
348 | writer.writeCharacters(fragmentText.mid(exportedIndex)); | - | ||||||||||||||||||
349 | writer.writeEndElement(); // span | - | ||||||||||||||||||
350 | writer.writeCharacters(QString()); // Trick to make sure that the span gets no linefeed behind it. | - | ||||||||||||||||||
351 | if (isHyperlink)
| 0 | ||||||||||||||||||
352 | writer.writeEndElement(); // a never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
353 | } never executed: end of block | 0 | ||||||||||||||||||
354 | writer.writeCharacters(QString()); // Trick to make sure that the span gets no linefeed behind it. | - | ||||||||||||||||||
355 | writer.writeEndElement(); // p | - | ||||||||||||||||||
356 | if (block.textList())
| 0 | ||||||||||||||||||
357 | writer.writeEndElement(); // list-item never executed: writer.writeEndElement(); | 0 | ||||||||||||||||||
358 | } never executed: end of block | 0 | ||||||||||||||||||
359 | - | |||||||||||||||||||
360 | void QTextOdfWriter::writeInlineCharacter(QXmlStreamWriter &writer, const QTextFragment &fragment) const | - | ||||||||||||||||||
361 | { | - | ||||||||||||||||||
362 | writer.writeStartElement(drawNS, QString::fromLatin1("frame")); | - | ||||||||||||||||||
363 | if (m_strategy == 0) {
| 0 | ||||||||||||||||||
364 | // don't do anything. | - | ||||||||||||||||||
365 | } never executed: end of block | 0 | ||||||||||||||||||
366 | else if (fragment.charFormat().isImageFormat()) {
| 0 | ||||||||||||||||||
367 | QTextImageFormat imageFormat = fragment.charFormat().toImageFormat(); | - | ||||||||||||||||||
368 | writer.writeAttribute(drawNS, QString::fromLatin1("name"), imageFormat.name()); | - | ||||||||||||||||||
369 | - | |||||||||||||||||||
370 | // vvv Copy pasted mostly from Qt ================= | - | ||||||||||||||||||
371 | QImage image; | - | ||||||||||||||||||
372 | QString name = imageFormat.name(); | - | ||||||||||||||||||
373 | if (name.startsWith(QLatin1String(":/"))) // auto-detect resources
| 0 | ||||||||||||||||||
374 | name.prepend(QLatin1String("qrc")); never executed: name.prepend(QLatin1String("qrc")); | 0 | ||||||||||||||||||
375 | QUrl url = QUrl(name); | - | ||||||||||||||||||
376 | const QVariant data = m_document->resource(QTextDocument::ImageResource, url); | - | ||||||||||||||||||
377 | if (data.type() == QVariant::Image) {
| 0 | ||||||||||||||||||
378 | image = qvariant_cast<QImage>(data); | - | ||||||||||||||||||
379 | } else if (data.type() == QVariant::ByteArray) { never executed: end of block
| 0 | ||||||||||||||||||
380 | image.loadFromData(data.toByteArray()); | - | ||||||||||||||||||
381 | } never executed: end of block | 0 | ||||||||||||||||||
382 | - | |||||||||||||||||||
383 | if (image.isNull()) {
| 0 | ||||||||||||||||||
384 | QString context; | - | ||||||||||||||||||
385 | if (image.isNull()) { // try direct loading
| 0 | ||||||||||||||||||
386 | name = imageFormat.name(); // remove qrc:/ prefix again | - | ||||||||||||||||||
387 | image.load(name); | - | ||||||||||||||||||
388 | } never executed: end of block | 0 | ||||||||||||||||||
389 | } never executed: end of block | 0 | ||||||||||||||||||
390 | - | |||||||||||||||||||
391 | // ^^^ Copy pasted mostly from Qt ================= | - | ||||||||||||||||||
392 | if (! image.isNull()) {
| 0 | ||||||||||||||||||
393 | QBuffer imageBytes; | - | ||||||||||||||||||
394 | QImageWriter imageWriter(&imageBytes, "png"); | - | ||||||||||||||||||
395 | imageWriter.write(image); | - | ||||||||||||||||||
396 | QString filename = m_strategy->createUniqueImageName(); | - | ||||||||||||||||||
397 | m_strategy->addFile(filename, QString::fromLatin1("image/png"), imageBytes.data()); | - | ||||||||||||||||||
398 | - | |||||||||||||||||||
399 | // get the width/height from the format. | - | ||||||||||||||||||
400 | qreal width = (imageFormat.hasProperty(QTextFormat::ImageWidth)) ? imageFormat.width() : image.width();
| 0 | ||||||||||||||||||
401 | writer.writeAttribute(svgNS, QString::fromLatin1("width"), pixelToPoint(width)); | - | ||||||||||||||||||
402 | qreal height = (imageFormat.hasProperty(QTextFormat::ImageHeight)) ? imageFormat.height() : image.height();
| 0 | ||||||||||||||||||
403 | writer.writeAttribute(svgNS, QString::fromLatin1("height"), pixelToPoint(height)); | - | ||||||||||||||||||
404 | - | |||||||||||||||||||
405 | writer.writeStartElement(drawNS, QString::fromLatin1("image")); | - | ||||||||||||||||||
406 | writer.writeAttribute(xlinkNS, QString::fromLatin1("href"), filename); | - | ||||||||||||||||||
407 | writer.writeEndElement(); // image | - | ||||||||||||||||||
408 | } never executed: end of block | 0 | ||||||||||||||||||
409 | } never executed: end of block | 0 | ||||||||||||||||||
410 | - | |||||||||||||||||||
411 | writer.writeEndElement(); // frame | - | ||||||||||||||||||
412 | } never executed: end of block | 0 | ||||||||||||||||||
413 | - | |||||||||||||||||||
414 | void QTextOdfWriter::writeFormats(QXmlStreamWriter &writer, const QSet<int> &formats) const | - | ||||||||||||||||||
415 | { | - | ||||||||||||||||||
416 | writer.writeStartElement(officeNS, QString::fromLatin1("automatic-styles")); | - | ||||||||||||||||||
417 | QVector<QTextFormat> allStyles = m_document->allFormats(); | - | ||||||||||||||||||
418 | QSetIterator<int> formatId(formats); | - | ||||||||||||||||||
419 | while(formatId.hasNext()) {
| 0 | ||||||||||||||||||
420 | int formatIndex = formatId.next(); | - | ||||||||||||||||||
421 | QTextFormat textFormat = allStyles.at(formatIndex); | - | ||||||||||||||||||
422 | switch (textFormat.type()) { | - | ||||||||||||||||||
423 | case QTextFormat::CharFormat: never executed: case QTextFormat::CharFormat: | 0 | ||||||||||||||||||
424 | if (textFormat.isTableCellFormat())
| 0 | ||||||||||||||||||
425 | writeTableCellFormat(writer, textFormat.toTableCellFormat(), formatIndex); never executed: writeTableCellFormat(writer, textFormat.toTableCellFormat(), formatIndex); | 0 | ||||||||||||||||||
426 | else | - | ||||||||||||||||||
427 | writeCharacterFormat(writer, textFormat.toCharFormat(), formatIndex); never executed: writeCharacterFormat(writer, textFormat.toCharFormat(), formatIndex); | 0 | ||||||||||||||||||
428 | break; never executed: break; | 0 | ||||||||||||||||||
429 | case QTextFormat::BlockFormat: never executed: case QTextFormat::BlockFormat: | 0 | ||||||||||||||||||
430 | writeBlockFormat(writer, textFormat.toBlockFormat(), formatIndex); | - | ||||||||||||||||||
431 | break; never executed: break; | 0 | ||||||||||||||||||
432 | case QTextFormat::ListFormat: never executed: case QTextFormat::ListFormat: | 0 | ||||||||||||||||||
433 | writeListFormat(writer, textFormat.toListFormat(), formatIndex); | - | ||||||||||||||||||
434 | break; never executed: break; | 0 | ||||||||||||||||||
435 | case QTextFormat::FrameFormat: never executed: case QTextFormat::FrameFormat: | 0 | ||||||||||||||||||
436 | writeFrameFormat(writer, textFormat.toFrameFormat(), formatIndex); | - | ||||||||||||||||||
437 | break; never executed: break; | 0 | ||||||||||||||||||
438 | case QTextFormat::TableFormat: never executed: case QTextFormat::TableFormat: | 0 | ||||||||||||||||||
439 | ;break; never executed: break; | 0 | ||||||||||||||||||
440 | } | - | ||||||||||||||||||
441 | } never executed: end of block | 0 | ||||||||||||||||||
442 | - | |||||||||||||||||||
443 | writer.writeEndElement(); // automatic-styles | - | ||||||||||||||||||
444 | } never executed: end of block | 0 | ||||||||||||||||||
445 | - | |||||||||||||||||||
446 | void QTextOdfWriter::writeBlockFormat(QXmlStreamWriter &writer, QTextBlockFormat format, int formatIndex) const | - | ||||||||||||||||||
447 | { | - | ||||||||||||||||||
448 | writer.writeStartElement(styleNS, QString::fromLatin1("style")); | - | ||||||||||||||||||
449 | writer.writeAttribute(styleNS, QString::fromLatin1("name"), QString::fromLatin1("p%1").arg(formatIndex)); | - | ||||||||||||||||||
450 | writer.writeAttribute(styleNS, QString::fromLatin1("family"), QString::fromLatin1("paragraph")); | - | ||||||||||||||||||
451 | writer.writeStartElement(styleNS, QString::fromLatin1("paragraph-properties")); | - | ||||||||||||||||||
452 | - | |||||||||||||||||||
453 | if (format.hasProperty(QTextFormat::BlockAlignment)) {
| 0 | ||||||||||||||||||
454 | const Qt::Alignment alignment = format.alignment() & Qt::AlignHorizontal_Mask; | - | ||||||||||||||||||
455 | QString value; | - | ||||||||||||||||||
456 | if (alignment == Qt::AlignLeading)
| 0 | ||||||||||||||||||
457 | value = QString::fromLatin1("start"); never executed: value = QString::fromLatin1("start"); | 0 | ||||||||||||||||||
458 | else if (alignment == Qt::AlignTrailing)
| 0 | ||||||||||||||||||
459 | value = QString::fromLatin1("end"); never executed: value = QString::fromLatin1("end"); | 0 | ||||||||||||||||||
460 | else if (alignment == (Qt::AlignLeft | Qt::AlignAbsolute))
| 0 | ||||||||||||||||||
461 | value = QString::fromLatin1("left"); never executed: value = QString::fromLatin1("left"); | 0 | ||||||||||||||||||
462 | else if (alignment == (Qt::AlignRight | Qt::AlignAbsolute))
| 0 | ||||||||||||||||||
463 | value = QString::fromLatin1("right"); never executed: value = QString::fromLatin1("right"); | 0 | ||||||||||||||||||
464 | else if (alignment == Qt::AlignHCenter)
| 0 | ||||||||||||||||||
465 | value = QString::fromLatin1("center"); never executed: value = QString::fromLatin1("center"); | 0 | ||||||||||||||||||
466 | else if (alignment == Qt::AlignJustify)
| 0 | ||||||||||||||||||
467 | value = QString::fromLatin1("justify"); never executed: value = QString::fromLatin1("justify"); | 0 | ||||||||||||||||||
468 | else | - | ||||||||||||||||||
469 | qWarning() << "QTextOdfWriter: unsupported paragraph alignment; " << format.alignment(); never executed: QMessageLogger(__FILE__, 469, __PRETTY_FUNCTION__).warning() << "QTextOdfWriter: unsupported paragraph alignment; " << format.alignment(); | 0 | ||||||||||||||||||
470 | if (! value.isNull())
| 0 | ||||||||||||||||||
471 | writer.writeAttribute(foNS, QString::fromLatin1("text-align"), value); never executed: writer.writeAttribute(foNS, QString::fromLatin1("text-align"), value); | 0 | ||||||||||||||||||
472 | } never executed: end of block | 0 | ||||||||||||||||||
473 | - | |||||||||||||||||||
474 | if (format.hasProperty(QTextFormat::BlockTopMargin))
| 0 | ||||||||||||||||||
475 | writer.writeAttribute(foNS, QString::fromLatin1("margin-top"), pixelToPoint(qMax(qreal(0.), format.topMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-top"), pixelToPoint(qMax(qreal(0.), format.topMargin())) ); | 0 | ||||||||||||||||||
476 | if (format.hasProperty(QTextFormat::BlockBottomMargin))
| 0 | ||||||||||||||||||
477 | writer.writeAttribute(foNS, QString::fromLatin1("margin-bottom"), pixelToPoint(qMax(qreal(0.), format.bottomMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-bottom"), pixelToPoint(qMax(qreal(0.), format.bottomMargin())) ); | 0 | ||||||||||||||||||
478 | if (format.hasProperty(QTextFormat::BlockLeftMargin) || format.hasProperty(QTextFormat::BlockIndent))
| 0 | ||||||||||||||||||
479 | writer.writeAttribute(foNS, QString::fromLatin1("margin-left"), pixelToPoint(qMax(qreal(0.), never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-left"), pixelToPoint(qMax(qreal(0.), format.leftMargin() + format.indent()))); | 0 | ||||||||||||||||||
480 | format.leftMargin() + format.indent()))); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-left"), pixelToPoint(qMax(qreal(0.), format.leftMargin() + format.indent()))); | 0 | ||||||||||||||||||
481 | if (format.hasProperty(QTextFormat::BlockRightMargin))
| 0 | ||||||||||||||||||
482 | writer.writeAttribute(foNS, QString::fromLatin1("margin-right"), pixelToPoint(qMax(qreal(0.), format.rightMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-right"), pixelToPoint(qMax(qreal(0.), format.rightMargin())) ); | 0 | ||||||||||||||||||
483 | if (format.hasProperty(QTextFormat::TextIndent))
| 0 | ||||||||||||||||||
484 | writer.writeAttribute(foNS, QString::fromLatin1("text-indent"), pixelToPoint(format.textIndent())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("text-indent"), pixelToPoint(format.textIndent())); | 0 | ||||||||||||||||||
485 | if (format.hasProperty(QTextFormat::PageBreakPolicy)) {
| 0 | ||||||||||||||||||
486 | if (format.pageBreakPolicy() & QTextFormat::PageBreak_AlwaysBefore)
| 0 | ||||||||||||||||||
487 | writer.writeAttribute(foNS, QString::fromLatin1("break-before"), QString::fromLatin1("page")); never executed: writer.writeAttribute(foNS, QString::fromLatin1("break-before"), QString::fromLatin1("page")); | 0 | ||||||||||||||||||
488 | if (format.pageBreakPolicy() & QTextFormat::PageBreak_AlwaysAfter)
| 0 | ||||||||||||||||||
489 | writer.writeAttribute(foNS, QString::fromLatin1("break-after"), QString::fromLatin1("page")); never executed: writer.writeAttribute(foNS, QString::fromLatin1("break-after"), QString::fromLatin1("page")); | 0 | ||||||||||||||||||
490 | } never executed: end of block | 0 | ||||||||||||||||||
491 | if (format.hasProperty(QTextFormat::BackgroundBrush)) {
| 0 | ||||||||||||||||||
492 | QBrush brush = format.background(); | - | ||||||||||||||||||
493 | writer.writeAttribute(foNS, QString::fromLatin1("background-color"), brush.color().name()); | - | ||||||||||||||||||
494 | } never executed: end of block | 0 | ||||||||||||||||||
495 | if (format.hasProperty(QTextFormat::BlockNonBreakableLines))
| 0 | ||||||||||||||||||
496 | writer.writeAttribute(foNS, QString::fromLatin1("keep-together"), never executed: writer.writeAttribute(foNS, QString::fromLatin1("keep-together"), format.nonBreakableLines() ? QString::fromLatin1("true") : QString::fromLatin1("false")); | 0 | ||||||||||||||||||
497 | format.nonBreakableLines() ? QString::fromLatin1("true") : QString::fromLatin1("false")); never executed: writer.writeAttribute(foNS, QString::fromLatin1("keep-together"), format.nonBreakableLines() ? QString::fromLatin1("true") : QString::fromLatin1("false")); | 0 | ||||||||||||||||||
498 | if (format.hasProperty(QTextFormat::TabPositions)) {
| 0 | ||||||||||||||||||
499 | QList<QTextOption::Tab> tabs = format.tabPositions(); | - | ||||||||||||||||||
500 | writer.writeStartElement(styleNS, QString::fromLatin1("tab-stops")); | - | ||||||||||||||||||
501 | QList<QTextOption::Tab>::Iterator iterator = tabs.begin(); | - | ||||||||||||||||||
502 | while(iterator != tabs.end()) {
| 0 | ||||||||||||||||||
503 | writer.writeEmptyElement(styleNS, QString::fromLatin1("tab-stop")); | - | ||||||||||||||||||
504 | writer.writeAttribute(styleNS, QString::fromLatin1("position"), pixelToPoint(iterator->position) ); | - | ||||||||||||||||||
505 | QString type; | - | ||||||||||||||||||
506 | switch(iterator->type) { | - | ||||||||||||||||||
507 | case QTextOption::DelimiterTab: type = QString::fromLatin1("char"); break; never executed: break; never executed: case QTextOption::DelimiterTab: | 0 | ||||||||||||||||||
508 | case QTextOption::LeftTab: type = QString::fromLatin1("left"); break; never executed: break; never executed: case QTextOption::LeftTab: | 0 | ||||||||||||||||||
509 | case QTextOption::RightTab: type = QString::fromLatin1("right"); break; never executed: break; never executed: case QTextOption::RightTab: | 0 | ||||||||||||||||||
510 | case QTextOption::CenterTab: type = QString::fromLatin1("center"); break; never executed: break; never executed: case QTextOption::CenterTab: | 0 | ||||||||||||||||||
511 | } | - | ||||||||||||||||||
512 | writer.writeAttribute(styleNS, QString::fromLatin1("type"), type); | - | ||||||||||||||||||
513 | if (iterator->delimiter != 0)
| 0 | ||||||||||||||||||
514 | writer.writeAttribute(styleNS, QString::fromLatin1("char"), iterator->delimiter); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("char"), iterator->delimiter); | 0 | ||||||||||||||||||
515 | ++iterator; | - | ||||||||||||||||||
516 | } never executed: end of block | 0 | ||||||||||||||||||
517 | - | |||||||||||||||||||
518 | writer.writeEndElement(); // tab-stops | - | ||||||||||||||||||
519 | } never executed: end of block | 0 | ||||||||||||||||||
520 | - | |||||||||||||||||||
521 | writer.writeEndElement(); // paragraph-properties | - | ||||||||||||||||||
522 | writer.writeEndElement(); // style | - | ||||||||||||||||||
523 | } never executed: end of block | 0 | ||||||||||||||||||
524 | - | |||||||||||||||||||
525 | void QTextOdfWriter::writeCharacterFormat(QXmlStreamWriter &writer, QTextCharFormat format, int formatIndex) const | - | ||||||||||||||||||
526 | { | - | ||||||||||||||||||
527 | writer.writeStartElement(styleNS, QString::fromLatin1("style")); | - | ||||||||||||||||||
528 | writer.writeAttribute(styleNS, QString::fromLatin1("name"), QString::fromLatin1("c%1").arg(formatIndex)); | - | ||||||||||||||||||
529 | writer.writeAttribute(styleNS, QString::fromLatin1("family"), QString::fromLatin1("text")); | - | ||||||||||||||||||
530 | writer.writeEmptyElement(styleNS, QString::fromLatin1("text-properties")); | - | ||||||||||||||||||
531 | if (format.fontItalic())
| 0 | ||||||||||||||||||
532 | writer.writeAttribute(foNS, QString::fromLatin1("font-style"), QString::fromLatin1("italic")); never executed: writer.writeAttribute(foNS, QString::fromLatin1("font-style"), QString::fromLatin1("italic")); | 0 | ||||||||||||||||||
533 | if (format.hasProperty(QTextFormat::FontWeight) && format.fontWeight() != QFont::Normal) {
| 0 | ||||||||||||||||||
534 | QString value; | - | ||||||||||||||||||
535 | if (format.fontWeight() == QFont::Bold)
| 0 | ||||||||||||||||||
536 | value = QString::fromLatin1("bold"); never executed: value = QString::fromLatin1("bold"); | 0 | ||||||||||||||||||
537 | else | - | ||||||||||||||||||
538 | value = QString::number(format.fontWeight() * 10); never executed: value = QString::number(format.fontWeight() * 10); | 0 | ||||||||||||||||||
539 | writer.writeAttribute(foNS, QString::fromLatin1("font-weight"), value); | - | ||||||||||||||||||
540 | } never executed: end of block | 0 | ||||||||||||||||||
541 | if (format.hasProperty(QTextFormat::FontFamily))
| 0 | ||||||||||||||||||
542 | writer.writeAttribute(foNS, QString::fromLatin1("font-family"), format.fontFamily()); never executed: writer.writeAttribute(foNS, QString::fromLatin1("font-family"), format.fontFamily()); | 0 | ||||||||||||||||||
543 | else | - | ||||||||||||||||||
544 | writer.writeAttribute(foNS, QString::fromLatin1("font-family"), QString::fromLatin1("Sans")); // Qt default never executed: writer.writeAttribute(foNS, QString::fromLatin1("font-family"), QString::fromLatin1("Sans")); | 0 | ||||||||||||||||||
545 | if (format.hasProperty(QTextFormat::FontPointSize))
| 0 | ||||||||||||||||||
546 | writer.writeAttribute(foNS, QString::fromLatin1("font-size"), QString::fromLatin1("%1pt").arg(format.fontPointSize())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("font-size"), QString::fromLatin1("%1pt").arg(format.fontPointSize())); | 0 | ||||||||||||||||||
547 | if (format.hasProperty(QTextFormat::FontCapitalization)) {
| 0 | ||||||||||||||||||
548 | switch(format.fontCapitalization()) { | - | ||||||||||||||||||
549 | case QFont::MixedCase: never executed: case QFont::MixedCase: | 0 | ||||||||||||||||||
550 | writer.writeAttribute(foNS, QString::fromLatin1("text-transform"), QString::fromLatin1("none")); break; never executed: break; | 0 | ||||||||||||||||||
551 | case QFont::AllUppercase: never executed: case QFont::AllUppercase: | 0 | ||||||||||||||||||
552 | writer.writeAttribute(foNS, QString::fromLatin1("text-transform"), QString::fromLatin1("uppercase")); break; never executed: break; | 0 | ||||||||||||||||||
553 | case QFont::AllLowercase: never executed: case QFont::AllLowercase: | 0 | ||||||||||||||||||
554 | writer.writeAttribute(foNS, QString::fromLatin1("text-transform"), QString::fromLatin1("lowercase")); break; never executed: break; | 0 | ||||||||||||||||||
555 | case QFont::Capitalize: never executed: case QFont::Capitalize: | 0 | ||||||||||||||||||
556 | writer.writeAttribute(foNS, QString::fromLatin1("text-transform"), QString::fromLatin1("capitalize")); break; never executed: break; | 0 | ||||||||||||||||||
557 | case QFont::SmallCaps: never executed: case QFont::SmallCaps: | 0 | ||||||||||||||||||
558 | writer.writeAttribute(foNS, QString::fromLatin1("font-variant"), QString::fromLatin1("small-caps")); break; never executed: break; | 0 | ||||||||||||||||||
559 | } | - | ||||||||||||||||||
560 | } never executed: end of block | 0 | ||||||||||||||||||
561 | if (format.hasProperty(QTextFormat::FontLetterSpacing))
| 0 | ||||||||||||||||||
562 | writer.writeAttribute(foNS, QString::fromLatin1("letter-spacing"), pixelToPoint(format.fontLetterSpacing())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("letter-spacing"), pixelToPoint(format.fontLetterSpacing())); | 0 | ||||||||||||||||||
563 | if (format.hasProperty(QTextFormat::FontWordSpacing) && format.fontWordSpacing() != 0)
| 0 | ||||||||||||||||||
564 | writer.writeAttribute(foNS, QString::fromLatin1("word-spacing"), pixelToPoint(format.fontWordSpacing())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("word-spacing"), pixelToPoint(format.fontWordSpacing())); | 0 | ||||||||||||||||||
565 | if (format.hasProperty(QTextFormat::FontUnderline))
| 0 | ||||||||||||||||||
566 | writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-type"), never executed: writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-type"), format.fontUnderline() ? QString::fromLatin1("single") : QString::fromLatin1("none")); | 0 | ||||||||||||||||||
567 | format.fontUnderline() ? QString::fromLatin1("single") : QString::fromLatin1("none")); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-type"), format.fontUnderline() ? QString::fromLatin1("single") : QString::fromLatin1("none")); | 0 | ||||||||||||||||||
568 | if (format.hasProperty(QTextFormat::FontOverline)) {
| 0 | ||||||||||||||||||
569 | // bool fontOverline () const TODO | - | ||||||||||||||||||
570 | } never executed: end of block | 0 | ||||||||||||||||||
571 | if (format.hasProperty(QTextFormat::FontStrikeOut))
| 0 | ||||||||||||||||||
572 | writer.writeAttribute(styleNS,QString::fromLatin1( "text-line-through-type"), never executed: writer.writeAttribute(styleNS,QString::fromLatin1( "text-line-through-type"), format.fontStrikeOut() ? QString::fromLatin1("single") : QString::fromLatin1("none")); | 0 | ||||||||||||||||||
573 | format.fontStrikeOut() ? QString::fromLatin1("single") : QString::fromLatin1("none")); never executed: writer.writeAttribute(styleNS,QString::fromLatin1( "text-line-through-type"), format.fontStrikeOut() ? QString::fromLatin1("single") : QString::fromLatin1("none")); | 0 | ||||||||||||||||||
574 | if (format.hasProperty(QTextFormat::TextUnderlineColor))
| 0 | ||||||||||||||||||
575 | writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-color"), format.underlineColor().name()); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-color"), format.underlineColor().name()); | 0 | ||||||||||||||||||
576 | if (format.hasProperty(QTextFormat::FontFixedPitch)) {
| 0 | ||||||||||||||||||
577 | // bool fontFixedPitch () const TODO | - | ||||||||||||||||||
578 | } never executed: end of block | 0 | ||||||||||||||||||
579 | if (format.hasProperty(QTextFormat::TextUnderlineStyle)) {
| 0 | ||||||||||||||||||
580 | QString value; | - | ||||||||||||||||||
581 | switch (format.underlineStyle()) { | - | ||||||||||||||||||
582 | case QTextCharFormat::NoUnderline: value = QString::fromLatin1("none"); break; never executed: break; never executed: case QTextCharFormat::NoUnderline: | 0 | ||||||||||||||||||
583 | case QTextCharFormat::SingleUnderline: value = QString::fromLatin1("solid"); break; never executed: break; never executed: case QTextCharFormat::SingleUnderline: | 0 | ||||||||||||||||||
584 | case QTextCharFormat::DashUnderline: value = QString::fromLatin1("dash"); break; never executed: break; never executed: case QTextCharFormat::DashUnderline: | 0 | ||||||||||||||||||
585 | case QTextCharFormat::DotLine: value = QString::fromLatin1("dotted"); break; never executed: break; never executed: case QTextCharFormat::DotLine: | 0 | ||||||||||||||||||
586 | case QTextCharFormat::DashDotLine: value = QString::fromLatin1("dash-dot"); break; never executed: break; never executed: case QTextCharFormat::DashDotLine: | 0 | ||||||||||||||||||
587 | case QTextCharFormat::DashDotDotLine: value = QString::fromLatin1("dot-dot-dash"); break; never executed: break; never executed: case QTextCharFormat::DashDotDotLine: | 0 | ||||||||||||||||||
588 | case QTextCharFormat::WaveUnderline: value = QString::fromLatin1("wave"); break; never executed: break; never executed: case QTextCharFormat::WaveUnderline: | 0 | ||||||||||||||||||
589 | case QTextCharFormat::SpellCheckUnderline: value = QString::fromLatin1("none"); break; never executed: break; never executed: case QTextCharFormat::SpellCheckUnderline: | 0 | ||||||||||||||||||
590 | } | - | ||||||||||||||||||
591 | writer.writeAttribute(styleNS, QString::fromLatin1("text-underline-style"), value); | - | ||||||||||||||||||
592 | } never executed: end of block | 0 | ||||||||||||||||||
593 | if (format.hasProperty(QTextFormat::TextVerticalAlignment)) {
| 0 | ||||||||||||||||||
594 | QString value; | - | ||||||||||||||||||
595 | switch (format.verticalAlignment()) { | - | ||||||||||||||||||
596 | case QTextCharFormat::AlignMiddle: never executed: case QTextCharFormat::AlignMiddle: | 0 | ||||||||||||||||||
597 | case QTextCharFormat::AlignNormal: value = QString::fromLatin1("0%"); break; never executed: break; never executed: case QTextCharFormat::AlignNormal: | 0 | ||||||||||||||||||
598 | case QTextCharFormat::AlignSuperScript: value = QString::fromLatin1("super"); break; never executed: break; never executed: case QTextCharFormat::AlignSuperScript: | 0 | ||||||||||||||||||
599 | case QTextCharFormat::AlignSubScript: value = QString::fromLatin1("sub"); break; never executed: break; never executed: case QTextCharFormat::AlignSubScript: | 0 | ||||||||||||||||||
600 | case QTextCharFormat::AlignTop: value = QString::fromLatin1("100%"); break; never executed: break; never executed: case QTextCharFormat::AlignTop: | 0 | ||||||||||||||||||
601 | case QTextCharFormat::AlignBottom : value = QString::fromLatin1("-100%"); break; never executed: break; never executed: case QTextCharFormat::AlignBottom : | 0 | ||||||||||||||||||
602 | case QTextCharFormat::AlignBaseline: break; never executed: break; never executed: case QTextCharFormat::AlignBaseline: | 0 | ||||||||||||||||||
603 | } | - | ||||||||||||||||||
604 | writer.writeAttribute(styleNS, QString::fromLatin1("text-position"), value); | - | ||||||||||||||||||
605 | } never executed: end of block | 0 | ||||||||||||||||||
606 | if (format.hasProperty(QTextFormat::TextOutline))
| 0 | ||||||||||||||||||
607 | writer.writeAttribute(styleNS, QString::fromLatin1("text-outline"), QString::fromLatin1("true")); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("text-outline"), QString::fromLatin1("true")); | 0 | ||||||||||||||||||
608 | if (format.hasProperty(QTextFormat::TextToolTip)) {
| 0 | ||||||||||||||||||
609 | // QString toolTip () const TODO | - | ||||||||||||||||||
610 | } never executed: end of block | 0 | ||||||||||||||||||
611 | if (format.hasProperty(QTextFormat::IsAnchor)) {
| 0 | ||||||||||||||||||
612 | // bool isAnchor () const TODO | - | ||||||||||||||||||
613 | } never executed: end of block | 0 | ||||||||||||||||||
614 | if (format.hasProperty(QTextFormat::AnchorHref)) {
| 0 | ||||||||||||||||||
615 | // QString anchorHref () const TODO | - | ||||||||||||||||||
616 | } never executed: end of block | 0 | ||||||||||||||||||
617 | if (format.hasProperty(QTextFormat::AnchorName)) {
| 0 | ||||||||||||||||||
618 | // QString anchorName () const TODO | - | ||||||||||||||||||
619 | } never executed: end of block | 0 | ||||||||||||||||||
620 | if (format.hasProperty(QTextFormat::ForegroundBrush)) {
| 0 | ||||||||||||||||||
621 | QBrush brush = format.foreground(); | - | ||||||||||||||||||
622 | writer.writeAttribute(foNS, QString::fromLatin1("color"), brush.color().name()); | - | ||||||||||||||||||
623 | } never executed: end of block | 0 | ||||||||||||||||||
624 | if (format.hasProperty(QTextFormat::BackgroundBrush)) {
| 0 | ||||||||||||||||||
625 | QBrush brush = format.background(); | - | ||||||||||||||||||
626 | writer.writeAttribute(foNS, QString::fromLatin1("background-color"), brush.color().name()); | - | ||||||||||||||||||
627 | } never executed: end of block | 0 | ||||||||||||||||||
628 | - | |||||||||||||||||||
629 | writer.writeEndElement(); // style | - | ||||||||||||||||||
630 | } never executed: end of block | 0 | ||||||||||||||||||
631 | - | |||||||||||||||||||
632 | void QTextOdfWriter::writeListFormat(QXmlStreamWriter &writer, QTextListFormat format, int formatIndex) const | - | ||||||||||||||||||
633 | { | - | ||||||||||||||||||
634 | writer.writeStartElement(textNS, QString::fromLatin1("list-style")); | - | ||||||||||||||||||
635 | writer.writeAttribute(styleNS, QString::fromLatin1("name"), QString::fromLatin1("L%1").arg(formatIndex)); | - | ||||||||||||||||||
636 | - | |||||||||||||||||||
637 | QTextListFormat::Style style = format.style(); | - | ||||||||||||||||||
638 | if (style == QTextListFormat::ListDecimal || style == QTextListFormat::ListLowerAlpha
| 0 | ||||||||||||||||||
639 | || style == QTextListFormat::ListUpperAlpha
| 0 | ||||||||||||||||||
640 | || style == QTextListFormat::ListLowerRoman
| 0 | ||||||||||||||||||
641 | || style == QTextListFormat::ListUpperRoman) {
| 0 | ||||||||||||||||||
642 | writer.writeStartElement(textNS, QString::fromLatin1("list-level-style-number")); | - | ||||||||||||||||||
643 | writer.writeAttribute(styleNS, QString::fromLatin1("num-format"), bulletChar(style)); | - | ||||||||||||||||||
644 | - | |||||||||||||||||||
645 | if (format.hasProperty(QTextFormat::ListNumberSuffix))
| 0 | ||||||||||||||||||
646 | writer.writeAttribute(styleNS, QString::fromLatin1("num-suffix"), format.numberSuffix()); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("num-suffix"), format.numberSuffix()); | 0 | ||||||||||||||||||
647 | else | - | ||||||||||||||||||
648 | writer.writeAttribute(styleNS, QString::fromLatin1("num-suffix"), QString::fromLatin1(".")); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("num-suffix"), QString::fromLatin1(".")); | 0 | ||||||||||||||||||
649 | - | |||||||||||||||||||
650 | if (format.hasProperty(QTextFormat::ListNumberPrefix))
| 0 | ||||||||||||||||||
651 | writer.writeAttribute(styleNS, QString::fromLatin1("num-prefix"), format.numberPrefix()); never executed: writer.writeAttribute(styleNS, QString::fromLatin1("num-prefix"), format.numberPrefix()); | 0 | ||||||||||||||||||
652 | - | |||||||||||||||||||
653 | } else { never executed: end of block | 0 | ||||||||||||||||||
654 | writer.writeStartElement(textNS, QString::fromLatin1("list-level-style-bullet")); | - | ||||||||||||||||||
655 | writer.writeAttribute(textNS, QString::fromLatin1("bullet-char"), bulletChar(style)); | - | ||||||||||||||||||
656 | } never executed: end of block | 0 | ||||||||||||||||||
657 | - | |||||||||||||||||||
658 | writer.writeAttribute(textNS, QString::fromLatin1("level"), QString::number(format.indent())); | - | ||||||||||||||||||
659 | writer.writeEmptyElement(styleNS, QString::fromLatin1("list-level-properties")); | - | ||||||||||||||||||
660 | writer.writeAttribute(foNS, QString::fromLatin1("text-align"), QString::fromLatin1("start")); | - | ||||||||||||||||||
661 | QString spacing = QString::fromLatin1("%1mm").arg(format.indent() * 8); | - | ||||||||||||||||||
662 | writer.writeAttribute(textNS, QString::fromLatin1("space-before"), spacing); | - | ||||||||||||||||||
663 | //writer.writeAttribute(textNS, QString::fromLatin1("min-label-width"), spacing); | - | ||||||||||||||||||
664 | - | |||||||||||||||||||
665 | writer.writeEndElement(); // list-level-style-* | - | ||||||||||||||||||
666 | writer.writeEndElement(); // list-style | - | ||||||||||||||||||
667 | } never executed: end of block | 0 | ||||||||||||||||||
668 | - | |||||||||||||||||||
669 | void QTextOdfWriter::writeFrameFormat(QXmlStreamWriter &writer, QTextFrameFormat format, int formatIndex) const | - | ||||||||||||||||||
670 | { | - | ||||||||||||||||||
671 | writer.writeStartElement(styleNS, QString::fromLatin1("style")); | - | ||||||||||||||||||
672 | writer.writeAttribute(styleNS, QString::fromLatin1("name"), QString::fromLatin1("s%1").arg(formatIndex)); | - | ||||||||||||||||||
673 | writer.writeAttribute(styleNS, QString::fromLatin1("family"), QString::fromLatin1("section")); | - | ||||||||||||||||||
674 | writer.writeEmptyElement(styleNS, QString::fromLatin1("section-properties")); | - | ||||||||||||||||||
675 | if (format.hasProperty(QTextFormat::FrameTopMargin))
| 0 | ||||||||||||||||||
676 | writer.writeAttribute(foNS, QString::fromLatin1("margin-top"), pixelToPoint(qMax(qreal(0.), format.topMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-top"), pixelToPoint(qMax(qreal(0.), format.topMargin())) ); | 0 | ||||||||||||||||||
677 | if (format.hasProperty(QTextFormat::FrameBottomMargin))
| 0 | ||||||||||||||||||
678 | writer.writeAttribute(foNS, QString::fromLatin1("margin-bottom"), pixelToPoint(qMax(qreal(0.), format.bottomMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-bottom"), pixelToPoint(qMax(qreal(0.), format.bottomMargin())) ); | 0 | ||||||||||||||||||
679 | if (format.hasProperty(QTextFormat::FrameLeftMargin))
| 0 | ||||||||||||||||||
680 | writer.writeAttribute(foNS, QString::fromLatin1("margin-left"), pixelToPoint(qMax(qreal(0.), format.leftMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-left"), pixelToPoint(qMax(qreal(0.), format.leftMargin())) ); | 0 | ||||||||||||||||||
681 | if (format.hasProperty(QTextFormat::FrameRightMargin))
| 0 | ||||||||||||||||||
682 | writer.writeAttribute(foNS, QString::fromLatin1("margin-right"), pixelToPoint(qMax(qreal(0.), format.rightMargin())) ); never executed: writer.writeAttribute(foNS, QString::fromLatin1("margin-right"), pixelToPoint(qMax(qreal(0.), format.rightMargin())) ); | 0 | ||||||||||||||||||
683 | - | |||||||||||||||||||
684 | writer.writeEndElement(); // style | - | ||||||||||||||||||
685 | - | |||||||||||||||||||
686 | // TODO consider putting the following properties in a qt-namespace. | - | ||||||||||||||||||
687 | // Position position () const | - | ||||||||||||||||||
688 | // qreal border () const | - | ||||||||||||||||||
689 | // QBrush borderBrush () const | - | ||||||||||||||||||
690 | // BorderStyle borderStyle () const | - | ||||||||||||||||||
691 | // qreal padding () const | - | ||||||||||||||||||
692 | // QTextLength width () const | - | ||||||||||||||||||
693 | // QTextLength height () const | - | ||||||||||||||||||
694 | // PageBreakFlags pageBreakPolicy () const | - | ||||||||||||||||||
695 | } never executed: end of block | 0 | ||||||||||||||||||
696 | - | |||||||||||||||||||
697 | void QTextOdfWriter::writeTableCellFormat(QXmlStreamWriter &writer, QTextTableCellFormat format, int formatIndex) const | - | ||||||||||||||||||
698 | { | - | ||||||||||||||||||
699 | writer.writeStartElement(styleNS, QString::fromLatin1("style")); | - | ||||||||||||||||||
700 | writer.writeAttribute(styleNS, QString::fromLatin1("name"), QString::fromLatin1("T%1").arg(formatIndex)); | - | ||||||||||||||||||
701 | writer.writeAttribute(styleNS, QString::fromLatin1("family"), QString::fromLatin1("table")); | - | ||||||||||||||||||
702 | writer.writeEmptyElement(styleNS, QString::fromLatin1("table-properties")); | - | ||||||||||||||||||
703 | - | |||||||||||||||||||
704 | - | |||||||||||||||||||
705 | qreal padding = format.topPadding(); | - | ||||||||||||||||||
706 | if (padding > 0 && padding == format.bottomPadding()
| 0 | ||||||||||||||||||
707 | && padding == format.leftPadding() && padding == format.rightPadding()) {
| 0 | ||||||||||||||||||
708 | writer.writeAttribute(foNS, QString::fromLatin1("padding"), pixelToPoint(padding)); | - | ||||||||||||||||||
709 | } never executed: end of block | 0 | ||||||||||||||||||
710 | else { | - | ||||||||||||||||||
711 | if (padding > 0)
| 0 | ||||||||||||||||||
712 | writer.writeAttribute(foNS, QString::fromLatin1("padding-top"), pixelToPoint(padding)); never executed: writer.writeAttribute(foNS, QString::fromLatin1("padding-top"), pixelToPoint(padding)); | 0 | ||||||||||||||||||
713 | if (format.bottomPadding() > 0)
| 0 | ||||||||||||||||||
714 | writer.writeAttribute(foNS, QString::fromLatin1("padding-bottom"), pixelToPoint(format.bottomPadding())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("padding-bottom"), pixelToPoint(format.bottomPadding())); | 0 | ||||||||||||||||||
715 | if (format.leftPadding() > 0)
| 0 | ||||||||||||||||||
716 | writer.writeAttribute(foNS, QString::fromLatin1("padding-left"), pixelToPoint(format.leftPadding())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("padding-left"), pixelToPoint(format.leftPadding())); | 0 | ||||||||||||||||||
717 | if (format.rightPadding() > 0)
| 0 | ||||||||||||||||||
718 | writer.writeAttribute(foNS, QString::fromLatin1("padding-right"), pixelToPoint(format.rightPadding())); never executed: writer.writeAttribute(foNS, QString::fromLatin1("padding-right"), pixelToPoint(format.rightPadding())); | 0 | ||||||||||||||||||
719 | } never executed: end of block | 0 | ||||||||||||||||||
720 | - | |||||||||||||||||||
721 | if (format.hasProperty(QTextFormat::TextVerticalAlignment)) {
| 0 | ||||||||||||||||||
722 | QString pos; | - | ||||||||||||||||||
723 | switch (format.verticalAlignment()) { | - | ||||||||||||||||||
724 | case QTextCharFormat::AlignMiddle: never executed: case QTextCharFormat::AlignMiddle: | 0 | ||||||||||||||||||
725 | pos = QString::fromLatin1("middle"); break; never executed: break; | 0 | ||||||||||||||||||
726 | case QTextCharFormat::AlignTop: never executed: case QTextCharFormat::AlignTop: | 0 | ||||||||||||||||||
727 | pos = QString::fromLatin1("top"); break; never executed: break; | 0 | ||||||||||||||||||
728 | case QTextCharFormat::AlignBottom: never executed: case QTextCharFormat::AlignBottom: | 0 | ||||||||||||||||||
729 | pos = QString::fromLatin1("bottom"); break; never executed: break; | 0 | ||||||||||||||||||
730 | default: never executed: default: | 0 | ||||||||||||||||||
731 | pos = QString::fromLatin1("automatic"); break; never executed: break; | 0 | ||||||||||||||||||
732 | } | - | ||||||||||||||||||
733 | writer.writeAttribute(styleNS, QString::fromLatin1("vertical-align"), pos); | - | ||||||||||||||||||
734 | } never executed: end of block | 0 | ||||||||||||||||||
735 | - | |||||||||||||||||||
736 | // TODO | - | ||||||||||||||||||
737 | // ODF just search for style-table-cell-properties-attlist) | - | ||||||||||||||||||
738 | // QTextFormat::BackgroundImageUrl | - | ||||||||||||||||||
739 | // format.background | - | ||||||||||||||||||
740 | // QTextFormat::FrameBorder | - | ||||||||||||||||||
741 | - | |||||||||||||||||||
742 | writer.writeEndElement(); // style | - | ||||||||||||||||||
743 | } never executed: end of block | 0 | ||||||||||||||||||
744 | - | |||||||||||||||||||
745 | /////////////////////// | - | ||||||||||||||||||
746 | - | |||||||||||||||||||
747 | QTextOdfWriter::QTextOdfWriter(const QTextDocument &document, QIODevice *device) | - | ||||||||||||||||||
748 | : officeNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:office:1.0")), | - | ||||||||||||||||||
749 | textNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:text:1.0")), | - | ||||||||||||||||||
750 | styleNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:style:1.0")), | - | ||||||||||||||||||
751 | foNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0")), | - | ||||||||||||||||||
752 | tableNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:table:1.0")), | - | ||||||||||||||||||
753 | drawNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:drawing:1.0")), | - | ||||||||||||||||||
754 | xlinkNS (QLatin1String("http://www.w3.org/1999/xlink")), | - | ||||||||||||||||||
755 | svgNS (QLatin1String("urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0")), | - | ||||||||||||||||||
756 | m_document(&document), | - | ||||||||||||||||||
757 | m_device(device), | - | ||||||||||||||||||
758 | m_strategy(0), | - | ||||||||||||||||||
759 | m_codec(0), | - | ||||||||||||||||||
760 | m_createArchive(true) | - | ||||||||||||||||||
761 | { | - | ||||||||||||||||||
762 | } never executed: end of block | 0 | ||||||||||||||||||
763 | - | |||||||||||||||||||
764 | bool QTextOdfWriter::writeAll() | - | ||||||||||||||||||
765 | { | - | ||||||||||||||||||
766 | if (m_createArchive)
| 0 | ||||||||||||||||||
767 | m_strategy = new QZipStreamStrategy(m_device); never executed: m_strategy = new QZipStreamStrategy(m_device); | 0 | ||||||||||||||||||
768 | else | - | ||||||||||||||||||
769 | m_strategy = new QXmlStreamStrategy(m_device); never executed: m_strategy = new QXmlStreamStrategy(m_device); | 0 | ||||||||||||||||||
770 | - | |||||||||||||||||||
771 | if (!m_device->isWritable() && ! m_device->open(QIODevice::WriteOnly)) {
| 0 | ||||||||||||||||||
772 | qWarning("QTextOdfWriter::writeAll: the device can not be opened for writing"); | - | ||||||||||||||||||
773 | return false; never executed: return false; | 0 | ||||||||||||||||||
774 | } | - | ||||||||||||||||||
775 | QXmlStreamWriter writer(m_strategy->contentStream); | - | ||||||||||||||||||
776 | #ifndef QT_NO_TEXTCODEC | - | ||||||||||||||||||
777 | if (m_codec)
| 0 | ||||||||||||||||||
778 | writer.setCodec(m_codec); never executed: writer.setCodec(m_codec); | 0 | ||||||||||||||||||
779 | #endif | - | ||||||||||||||||||
780 | // prettyfy | - | ||||||||||||||||||
781 | writer.setAutoFormatting(true); | - | ||||||||||||||||||
782 | writer.setAutoFormattingIndent(2); | - | ||||||||||||||||||
783 | - | |||||||||||||||||||
784 | writer.writeNamespace(officeNS, QString::fromLatin1("office")); | - | ||||||||||||||||||
785 | writer.writeNamespace(textNS, QString::fromLatin1("text")); | - | ||||||||||||||||||
786 | writer.writeNamespace(styleNS, QString::fromLatin1("style")); | - | ||||||||||||||||||
787 | writer.writeNamespace(foNS, QString::fromLatin1("fo")); | - | ||||||||||||||||||
788 | writer.writeNamespace(tableNS, QString::fromLatin1("table")); | - | ||||||||||||||||||
789 | writer.writeNamespace(drawNS, QString::fromLatin1("draw")); | - | ||||||||||||||||||
790 | writer.writeNamespace(xlinkNS, QString::fromLatin1("xlink")); | - | ||||||||||||||||||
791 | writer.writeNamespace(svgNS, QString::fromLatin1("svg")); | - | ||||||||||||||||||
792 | writer.writeStartDocument(); | - | ||||||||||||||||||
793 | writer.writeStartElement(officeNS, QString::fromLatin1("document-content")); | - | ||||||||||||||||||
794 | writer.writeAttribute(officeNS, QString::fromLatin1("version"), QString::fromLatin1("1.2")); | - | ||||||||||||||||||
795 | - | |||||||||||||||||||
796 | // add fragments. (for character formats) | - | ||||||||||||||||||
797 | QTextDocumentPrivate::FragmentIterator fragIt = m_document->docHandle()->begin(); | - | ||||||||||||||||||
798 | QSet<int> formats; | - | ||||||||||||||||||
799 | while (fragIt != m_document->docHandle()->end()) {
| 0 | ||||||||||||||||||
800 | const QTextFragmentData * const frag = fragIt.value(); | - | ||||||||||||||||||
801 | formats << frag->format; | - | ||||||||||||||||||
802 | ++fragIt; | - | ||||||||||||||||||
803 | } never executed: end of block | 0 | ||||||||||||||||||
804 | - | |||||||||||||||||||
805 | // add blocks (for blockFormats) | - | ||||||||||||||||||
806 | QTextDocumentPrivate::BlockMap &blocks = m_document->docHandle()->blockMap(); | - | ||||||||||||||||||
807 | QTextDocumentPrivate::BlockMap::Iterator blockIt = blocks.begin(); | - | ||||||||||||||||||
808 | while (blockIt != blocks.end()) {
| 0 | ||||||||||||||||||
809 | const QTextBlockData * const block = blockIt.value(); | - | ||||||||||||||||||
810 | formats << block->format; | - | ||||||||||||||||||
811 | ++blockIt; | - | ||||||||||||||||||
812 | } never executed: end of block | 0 | ||||||||||||||||||
813 | - | |||||||||||||||||||
814 | // add objects for lists, frames and tables | - | ||||||||||||||||||
815 | const QVector<QTextFormat> allFormats = m_document->allFormats(); | - | ||||||||||||||||||
816 | const QList<int> copy = formats.toList(); | - | ||||||||||||||||||
817 | for (auto index : copy) { | - | ||||||||||||||||||
818 | QTextObject *object = m_document->objectForFormat(allFormats[index]); | - | ||||||||||||||||||
819 | if (object)
| 0 | ||||||||||||||||||
820 | formats << object->formatIndex(); never executed: formats << object->formatIndex(); | 0 | ||||||||||||||||||
821 | } never executed: end of block | 0 | ||||||||||||||||||
822 | - | |||||||||||||||||||
823 | writeFormats(writer, formats); | - | ||||||||||||||||||
824 | - | |||||||||||||||||||
825 | writer.writeStartElement(officeNS, QString::fromLatin1("body")); | - | ||||||||||||||||||
826 | writer.writeStartElement(officeNS, QString::fromLatin1("text")); | - | ||||||||||||||||||
827 | QTextFrame *rootFrame = m_document->rootFrame(); | - | ||||||||||||||||||
828 | writeFrame(writer, rootFrame); | - | ||||||||||||||||||
829 | writer.writeEndElement(); // text | - | ||||||||||||||||||
830 | writer.writeEndElement(); // body | - | ||||||||||||||||||
831 | writer.writeEndElement(); // document-content | - | ||||||||||||||||||
832 | writer.writeEndDocument(); | - | ||||||||||||||||||
833 | delete m_strategy; | - | ||||||||||||||||||
834 | m_strategy = 0; | - | ||||||||||||||||||
835 | - | |||||||||||||||||||
836 | return true; never executed: return true; | 0 | ||||||||||||||||||
837 | } | - | ||||||||||||||||||
838 | - | |||||||||||||||||||
839 | QT_END_NAMESPACE | - | ||||||||||||||||||
840 | - | |||||||||||||||||||
841 | #endif // QT_NO_TEXTODFWRITER | - | ||||||||||||||||||
Source code | Switch to Preprocessed file |