~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/gui/text/qtextdocumentfragment_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 1992-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the text module of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#ifndef QTEXTDOCUMENTFRAGMENT_P_H
 
30
#define QTEXTDOCUMENTFRAGMENT_P_H
 
31
 
 
32
//
 
33
//  W A R N I N G
 
34
//  -------------
 
35
//
 
36
// This file is not part of the Qt API.  It exists purely as an
 
37
// implementation detail.  This header file may change from version to
 
38
// version without notice, or even be removed.
 
39
//
 
40
// We mean it.
 
41
//
 
42
 
 
43
#include "qtextdocument.h"
 
44
#include "qtexthtmlparser_p.h"
 
45
#include "qtextdocument_p.h"
 
46
 
 
47
#include <qlist.h>
 
48
#include <qmap.h>
 
49
#include <qpointer.h>
 
50
#include <qvarlengtharray.h>
 
51
#include <qdatastream.h>
 
52
 
 
53
class QTextDocumentFragmentPrivate;
 
54
 
 
55
class QTextImportHelper
 
56
{
 
57
public:
 
58
    QTextImportHelper(QTextDocumentFragmentPrivate *docFragment, QTextDocumentPrivate *priv);
 
59
 
 
60
    void appendFragments(int pos, int endPos);
 
61
    int appendFragment(int pos, int endPos, int objectIndex = -1);
 
62
    int convertFormatIndex(const QTextFormat &oldFormat, int objectIndexToSet = -1);
 
63
    inline int convertFormatIndex(int oldFormatIndex, int objectIndexToSet = -1)
 
64
    { return convertFormatIndex(priv->formatCollection()->format(oldFormatIndex), objectIndexToSet); }
 
65
 
 
66
private:
 
67
    QTextDocumentFragmentPrivate *docFragment;
 
68
    QTextDocumentPrivate *priv;
 
69
    QTextFormatCollection &formatCollection;
 
70
    const QString originalText;
 
71
    QMap<int, int> objectIndexMap;
 
72
};
 
73
 
 
74
class QTextDocumentFragmentPrivate
 
75
{
 
76
public:
 
77
    enum MarkerValues { FragmentStart = 1, FragmentEnd = 2 };
 
78
 
 
79
    QTextDocumentFragmentPrivate() : hasTitle(false), containsCompleteDocument(false), setMarkerForHtmlExport(false) {}
 
80
    QTextDocumentFragmentPrivate(const QTextCursor &cursor);
 
81
 
 
82
    void insert(QTextCursor &cursor) const;
 
83
 
 
84
    void appendText(const QString &text, int formatIdx, int blockIdx = -2);
 
85
 
 
86
    QMap<int, int> fillFormatCollection(QTextFormatCollection *collection) const;
 
87
 
 
88
    // ### TODO: merge back into one big vector.
 
89
 
 
90
    struct TextFragment
 
91
    {
 
92
        TextFragment()
 
93
            : position(0), size(0),
 
94
              charFormat(-1), blockFormat(-2) {}
 
95
        qint32 position;
 
96
        quint32 size;
 
97
        qint32 charFormat;
 
98
        qint32 blockFormat;
 
99
    };
 
100
    typedef QVector<TextFragment> FragmentVector;
 
101
 
 
102
    FragmentVector fragments;
 
103
 
 
104
    QString localBuffer;
 
105
 
 
106
    QTextFormatCollection formatCollection;
 
107
 
 
108
    qint8 hasTitle;
 
109
    QString title;
 
110
 
 
111
    QTextFrameFormat rootFrameFormat;
 
112
 
 
113
    uint containsCompleteDocument : 1;
 
114
    uint setMarkerForHtmlExport : 1;
 
115
};
 
116
 
 
117
class QTextHTMLImporter : public QTextHtmlParser
 
118
{
 
119
    struct Table;
 
120
public:
 
121
    QTextHTMLImporter(QTextDocumentFragmentPrivate *d, const QString &html);
 
122
 
 
123
    void import();
 
124
 
 
125
private:
 
126
    bool closeTag(int i);
 
127
 
 
128
    bool scanTable(int tableNodeIdx, Table *table);
 
129
 
 
130
    void appendBlock(const QTextBlockFormat &format, QTextCharFormat charFmt = QTextCharFormat(), const QChar &separator = QChar::ParagraphSeparator);
 
131
    void appendText(QString text, QTextCharFormat format);
 
132
    inline void appendImage(const QTextImageFormat &format)
 
133
    { appendText(QString(QChar::ObjectReplacementCharacter), format); }
 
134
 
 
135
    QTextDocumentFragmentPrivate *d;
 
136
    QVector<int> listReferences;
 
137
    int indent;
 
138
 
 
139
    // insert a named anchor the next time we emit a char format,
 
140
    // either in a block or in regular text
 
141
    bool setNamedAnchorInNextOutput;
 
142
    QString namedAnchor;
 
143
 
 
144
    struct Table
 
145
    {
 
146
        Table() : tableIndex(-1), currentColumnCount(0), currentRow(-1) {}
 
147
        int tableIndex; // objectIndex
 
148
        int currentColumnCount;
 
149
        int columns;
 
150
        QVector<int> rowSpanCellsPerRow;
 
151
        int currentRow;
 
152
    };
 
153
    QVector<Table> tables;
 
154
};
 
155
 
 
156
#endif // QTEXTDOCUMENTFRAGMENT_P_H