37415e5dae44bba3b6df68829ca95cef20d2b1e4
[profile/ivi/qtdeclarative.git] / src / declarative / scenegraph / qsgdistancefieldglyphnode_p_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef DISTANCEFIELDTEXTMATERIAL_H
43 #define DISTANCEFIELDTEXTMATERIAL_H
44
45 #include <qsgmaterial.h>
46 #include "qsgdistancefieldglyphnode_p.h"
47
48 QT_BEGIN_NAMESPACE
49
50 class QSGDistanceFieldGlyphCache;
51
52 class QSGDistanceFieldTextMaterial: public QSGMaterial
53 {
54 public:
55     QSGDistanceFieldTextMaterial();
56     ~QSGDistanceFieldTextMaterial();
57
58     virtual QSGMaterialType *type() const;
59     virtual QSGMaterialShader *createShader() const;
60     virtual int compare(const QSGMaterial *other) const;
61
62     void setColor(const QColor &color) { m_color = color; }
63     const QColor &color() const { return m_color; }
64
65     void setGlyphCache(QSGDistanceFieldGlyphCache *a) { m_glyph_cache = a; }
66     QSGDistanceFieldGlyphCache *glyphCache() const { return m_glyph_cache; }
67
68     bool updateTexture();
69
70 protected:
71     QSize m_size;
72     QColor m_color;
73     QSGDistanceFieldGlyphCache *m_glyph_cache;
74 };
75
76 class QSGDistanceFieldStyledTextMaterial : public QSGDistanceFieldTextMaterial
77 {
78 public:
79     QSGDistanceFieldStyledTextMaterial();
80     ~QSGDistanceFieldStyledTextMaterial();
81
82     virtual QSGMaterialType *type() const = 0;
83     virtual QSGMaterialShader *createShader() const = 0;
84     virtual int compare(const QSGMaterial *other) const;
85
86     void setStyleColor(const QColor &color) { m_styleColor = color; }
87     const QColor &styleColor() const { return m_styleColor; }
88
89 protected:
90     QColor m_styleColor;
91 };
92
93 class QSGDistanceFieldOutlineTextMaterial : public QSGDistanceFieldStyledTextMaterial
94 {
95 public:
96     QSGDistanceFieldOutlineTextMaterial();
97     ~QSGDistanceFieldOutlineTextMaterial();
98
99     virtual QSGMaterialType *type() const;
100     virtual QSGMaterialShader *createShader() const;
101 };
102
103 class QSGDistanceFieldShiftedStyleTextMaterial : public QSGDistanceFieldStyledTextMaterial
104 {
105 public:
106     QSGDistanceFieldShiftedStyleTextMaterial();
107     ~QSGDistanceFieldShiftedStyleTextMaterial();
108
109     virtual QSGMaterialType *type() const;
110     virtual QSGMaterialShader *createShader() const;
111
112     void setShift(const QPointF &shift) { m_shift = shift; }
113     const QPointF &shift() const { return m_shift; }
114
115 protected:
116     QPointF m_shift;
117 };
118
119 class QSGSubPixelDistanceFieldTextMaterial : public QSGDistanceFieldTextMaterial
120 {
121 public:
122     virtual QSGMaterialType *type() const;
123     virtual QSGMaterialShader *createShader() const;
124 };
125
126 QT_END_NAMESPACE
127
128 #endif // DISTANCEFIELDTEXTMATERIAL_H