dda24a0a680f6a1453a400e4ad64c0d5c0198675
[profile/ivi/qtdeclarative.git] / src / quick / items / qquicktext_p_p.h
1 // Commit: 6e5a642c9484536fc173714f560f739944368cf5
2 /****************************************************************************
3 **
4 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ** All rights reserved.
6 ** Contact: http://www.qt-project.org/
7 **
8 ** This file is part of the QtDeclarative module of the Qt Toolkit.
9 **
10 ** $QT_BEGIN_LICENSE:LGPL$
11 ** GNU Lesser General Public License Usage
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this
15 ** file. Please review the following information to ensure the GNU Lesser
16 ** General Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** GNU General Public License Usage
24 ** Alternatively, this file may be used under the terms of the GNU General
25 ** Public License version 3.0 as published by the Free Software Foundation
26 ** and appearing in the file LICENSE.GPL included in the packaging of this
27 ** file. Please review the following information to ensure the GNU General
28 ** Public License version 3.0 requirements will be met:
29 ** http://www.gnu.org/copyleft/gpl.html.
30 **
31 ** Other Usage
32 ** Alternatively, this file may be used in accordance with the terms and
33 ** conditions contained in a signed written agreement between you and Nokia.
34 **
35 **
36 **
37 **
38 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef QQUICKTEXT_P_P_H
44 #define QQUICKTEXT_P_P_H
45
46 //
47 //  W A R N I N G
48 //  -------------
49 //
50 // This file is not part of the Qt API.  It exists purely as an
51 // implementation detail.  This header file may change from version to
52 // version without notice, or even be removed.
53 //
54 // We mean it.
55 //
56
57 #include "qquicktext_p.h"
58 #include "qquickimplicitsizeitem_p_p.h"
59
60 #include <QtDeclarative/qdeclarative.h>
61 #include <QtGui/qabstracttextdocumentlayout.h>
62 #include <QtGui/qtextlayout.h>
63
64 QT_BEGIN_NAMESPACE
65
66 class QTextLayout;
67 class QQuickTextDocumentWithImageResources;
68 class QSGPlainTexture;
69
70 class Q_AUTOTEST_EXPORT QQuickTextPrivate : public QQuickImplicitSizeItemPrivate
71 {
72     Q_DECLARE_PUBLIC(QQuickText)
73 public:
74     QQuickTextPrivate();
75     ~QQuickTextPrivate();
76     void init();
77
78     void updateSize();
79     void updateLayout();
80     bool determineHorizontalAlignment();
81     bool setHAlign(QQuickText::HAlignment, bool forceAlign = false);
82     void mirrorChange();
83     QTextDocument *textDocument();
84     bool isLineLaidOutConnected();
85
86     QString text;
87     QUrl baseUrl;
88     QFont font;
89     QFont sourceFont;
90     QColor  color;
91     QQuickText::TextStyle style;
92     QColor  styleColor;
93     QString activeLink;
94     QQuickText::HAlignment hAlign;
95     QQuickText::VAlignment vAlign;
96     QQuickText::TextElideMode elideMode;
97     QQuickText::TextFormat format;
98     QQuickText::WrapMode wrapMode;
99     qreal lineHeight;
100     QQuickText::LineHeightMode lineHeightMode;
101     int lineCount;
102     int maximumLineCount;
103     int maximumLineCountValid;
104     QPointF elidePos;
105
106     static QString elideChar;
107
108     void markDirty();
109     bool invalidateImageCache();
110     void checkImageCache();
111     QPixmap *imageCache;
112     QSGTexture *texture;
113
114     bool imageCacheDirty:1;
115     bool updateOnComponentComplete:1;
116     bool richText:1;
117     bool styledText:1;
118     bool singleline:1;
119     bool cacheAllTextAsImage:1;
120     bool disableDistanceField:1;
121     bool internalWidthUpdate:1;
122     bool requireImplicitWidth:1;
123     bool truncated:1;
124     bool hAlignImplicit:1;
125     bool rightToLeftText:1;
126     bool layoutTextElided:1;
127     bool richTextAsImage:1;
128     bool textureImageCacheDirty:1;
129     bool textHasChanged:1;
130
131     QRect layedOutTextRect;
132     QSize paintedSize;
133     qreal naturalWidth;
134     virtual qreal getImplicitWidth() const;
135
136     void ensureDoc();
137     QPixmap textDocumentImage(bool drawStyle);
138     QQuickTextDocumentWithImageResources *doc;
139
140     QRect setupTextLayout();
141     void setupCustomLineGeometry(QTextLine &line, qreal &height, qreal elideWidth);
142     QPixmap textLayoutImage(bool drawStyle);
143     void drawTextLayout(QPainter *p, const QPointF &pos, bool drawStyle);
144     bool isLinkActivatedConnected();
145     QString anchorAt(const QPointF &pos);
146     QTextLayout layout;
147     QTextLayout *elipsisLayout;
148     QQuickTextLine *textLine;
149
150     static QPixmap drawOutline(const QPixmap &source, const QPixmap &styleSource);
151     static QPixmap drawOutline(const QPixmap &source, const QPixmap &styleSource, int yOffset);
152
153     static inline QQuickTextPrivate *get(QQuickText *t) {
154         return t->d_func();
155     }
156
157     enum NodeType {
158         NodeIsNull,
159         NodeIsTexture,
160         NodeIsText
161     };
162     NodeType nodeType;
163
164     enum UpdateType {
165         UpdateNone,
166         UpdatePreprocess,
167         UpdatePaintNode
168     };
169     UpdateType updateType;
170
171 #if defined(Q_OS_MAC)
172     QList<QRectF> linesRects;
173     QThread *layoutThread;
174     QThread *paintingThread;
175 #endif
176 };
177
178 class QDeclarativePixmap;
179 class QQuickTextDocumentWithImageResources : public QTextDocument, public QTextObjectInterface
180 {
181     Q_OBJECT
182     Q_INTERFACES(QTextObjectInterface)
183 public:
184     QQuickTextDocumentWithImageResources(QQuickItem *parent);
185     virtual ~QQuickTextDocumentWithImageResources();
186
187     void setText(const QString &);
188     int resourcesLoading() const { return outstanding; }
189
190     void clearResources();
191
192     void clear();
193
194     QSizeF intrinsicSize(QTextDocument *doc, int posInDocument, const QTextFormat &format);
195     void drawObject(QPainter *p, const QRectF &rect, QTextDocument *doc, int posInDocument, const QTextFormat &format);
196
197     QImage image(const QTextImageFormat &format);
198
199     void setBaseUrl(const QUrl &url, bool clear = true);
200
201 Q_SIGNALS:
202     void imagesLoaded();
203
204 protected:
205     QVariant loadResource(int type, const QUrl &name);
206
207     QDeclarativePixmap *loadPixmap(QDeclarativeContext *context, const QUrl &name);
208
209 private slots:
210     void requestFinished();
211
212 private:
213     QHash<QUrl, QDeclarativePixmap *> m_resources;
214     QUrl m_baseUrl;
215
216     int outstanding;
217     static QSet<QUrl> errors;
218 };
219
220 QT_END_NAMESPACE
221
222 #endif // QQUICKTEXT_P_P_H