Don't load embedded images from the current working directory.
[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: Nokia Corporation (qt-info@nokia.com)
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     QFont font;
88     QFont sourceFont;
89     QColor  color;
90     QQuickText::TextStyle style;
91     QColor  styleColor;
92     QString activeLink;
93     QQuickText::HAlignment hAlign;
94     QQuickText::VAlignment vAlign;
95     QQuickText::TextElideMode elideMode;
96     QQuickText::TextFormat format;
97     QQuickText::WrapMode wrapMode;
98     qreal lineHeight;
99     QQuickText::LineHeightMode lineHeightMode;
100     int lineCount;
101     int maximumLineCount;
102     int maximumLineCountValid;
103     QPointF elidePos;
104
105     static QString elideChar;
106
107     void markDirty();
108     bool invalidateImageCache();
109     void checkImageCache();
110     QPixmap *imageCache;
111     QSGTexture *texture;
112
113     bool imageCacheDirty:1;
114     bool updateOnComponentComplete:1;
115     bool richText:1;
116     bool styledText:1;
117     bool singleline:1;
118     bool cacheAllTextAsImage:1;
119     bool disableDistanceField:1;
120     bool internalWidthUpdate:1;
121     bool requireImplicitWidth:1;
122     bool truncated:1;
123     bool hAlignImplicit:1;
124     bool rightToLeftText:1;
125     bool layoutTextElided:1;
126     bool richTextAsImage:1;
127     bool textureImageCacheDirty:1;
128     bool textHasChanged:1;
129
130     QRect layedOutTextRect;
131     QSize paintedSize;
132     qreal naturalWidth;
133     virtual qreal getImplicitWidth() const;
134
135     void ensureDoc();
136     QPixmap textDocumentImage(bool drawStyle);
137     QQuickTextDocumentWithImageResources *doc;
138
139     QRect setupTextLayout();
140     void setupCustomLineGeometry(QTextLine &line, qreal &height, qreal elideWidth);
141     QPixmap textLayoutImage(bool drawStyle);
142     void drawTextLayout(QPainter *p, const QPointF &pos, bool drawStyle);
143     bool isLinkActivatedConnected();
144     QString anchorAt(const QPointF &pos);
145     QTextLayout layout;
146     QTextLayout *elipsisLayout;
147     QQuickTextLine *textLine;
148
149     static QPixmap drawOutline(const QPixmap &source, const QPixmap &styleSource);
150     static QPixmap drawOutline(const QPixmap &source, const QPixmap &styleSource, int yOffset);
151
152     static inline QQuickTextPrivate *get(QQuickText *t) {
153         return t->d_func();
154     }
155
156     enum NodeType {
157         NodeIsNull,
158         NodeIsTexture,
159         NodeIsText
160     };
161     NodeType nodeType;
162
163 #if defined(Q_OS_MAC)
164     QList<QRectF> linesRects;
165     QThread *layoutThread;
166     QThread *paintingThread;
167 #endif
168 };
169
170 class QDeclarativePixmap;
171 class QQuickTextDocumentWithImageResources : public QTextDocument, public QTextObjectInterface
172 {
173     Q_OBJECT
174     Q_INTERFACES(QTextObjectInterface)
175 public:
176     QQuickTextDocumentWithImageResources(QQuickItem *parent);
177     virtual ~QQuickTextDocumentWithImageResources();
178
179     void setText(const QString &);
180     int resourcesLoading() const { return outstanding; }
181
182     void clearResources();
183
184     void clear();
185
186     QSizeF intrinsicSize(QTextDocument *doc, int posInDocument, const QTextFormat &format);
187     void drawObject(QPainter *p, const QRectF &rect, QTextDocument *doc, int posInDocument, const QTextFormat &format);
188
189     QImage image(const QTextImageFormat &format);
190
191 Q_SIGNALS:
192     void imagesLoaded();
193
194 protected:
195     QVariant loadResource(int type, const QUrl &name);
196
197     QDeclarativePixmap *loadPixmap(QDeclarativeContext *context, const QUrl &name);
198
199 private slots:
200     void requestFinished();
201
202 private:
203     QHash<QUrl, QDeclarativePixmap *> m_resources;
204
205     int outstanding;
206     static QSet<QUrl> errors;
207 };
208
209 QT_END_NAMESPACE
210
211 #endif // QQUICKTEXT_P_P_H