Make QColor a value type
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativevaluetypes / testtypes.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 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 test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #ifndef TESTTYPES_H
42 #define TESTTYPES_H
43
44 #include <QObject>
45 #include <QPoint>
46 #include <QPointF>
47 #include <QSize>
48 #include <QSizeF>
49 #include <QRect>
50 #include <QRectF>
51 #include <QVector2D>
52 #include <QVector3D>
53 #include <QVector4D>
54 #include <QQuaternion>
55 #include <QMatrix4x4>
56 #include <QFont>
57 #include <QColor>
58 #include <qdeclarative.h>
59 #include <QDeclarativePropertyValueSource>
60 #include <QDeclarativeProperty>
61 #include <private/qdeclarativeproperty_p.h>
62
63 class MyTypeObject : public QObject
64 {
65     Q_OBJECT
66
67     Q_PROPERTY(QPoint point READ point WRITE setPoint NOTIFY changed)
68     Q_PROPERTY(QPointF pointf READ pointf WRITE setPointf NOTIFY changed)
69     Q_PROPERTY(QPointF pointfpoint READ pointfpoint WRITE setPointfpoint NOTIFY changed)
70     Q_PROPERTY(QSize size READ size WRITE setSize NOTIFY changed)
71     Q_PROPERTY(QSizeF sizef READ sizef WRITE setSizef NOTIFY changed)
72     Q_PROPERTY(QSizeF sizefsize READ sizefsize WRITE setSizefsize NOTIFY changed)
73     Q_PROPERTY(QSize sizereadonly READ size NOTIFY changed)
74     Q_PROPERTY(QRect rect READ rect WRITE setRect NOTIFY changed)
75     Q_PROPERTY(QRectF rectf READ rectf WRITE setRectf NOTIFY changed)
76     Q_PROPERTY(QRectF rectfrect READ rectfrect WRITE setRectfrect NOTIFY changed)
77     Q_PROPERTY(QVector2D vector2 READ vector2 WRITE setVector2 NOTIFY changed)
78     Q_PROPERTY(QVector3D vector READ vector WRITE setVector NOTIFY changed)
79     Q_PROPERTY(QVector4D vector4 READ vector4 WRITE setVector4 NOTIFY changed)
80     Q_PROPERTY(QQuaternion quaternion READ quaternion WRITE setQuaternion NOTIFY changed)
81     Q_PROPERTY(QMatrix4x4 matrix READ matrix WRITE setMatrix NOTIFY changed)
82     Q_PROPERTY(QFont font READ font WRITE setFont NOTIFY changed)
83     Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY changed)
84     Q_PROPERTY(QVariant variant READ variant NOTIFY changed)
85
86 public:
87     MyTypeObject() :
88         m_point(10, 4),
89         m_pointf(11.3, -10.9),
90         m_pointfpoint(10.0, 4.0),
91         m_size(1912, 1913),
92         m_sizef(0.1, 100923.2),
93         m_sizefsize(1912.0, 1913.0),
94         m_rect(2, 3, 109, 102),
95         m_rectf(103.8, 99.2, 88.1, 77.6),
96         m_rectfrect(2.0, 3.0, 109.0, 102.0),
97         m_vector2(32.88, 1.3),
98         m_vector(23.88, 3.1, 4.3),
99         m_vector4(54.2, 23.88, 3.1, 4.3),
100         m_quaternion(4.3, 54.2, 23.88, 3.1),
101         m_matrix(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
102     {
103         m_font.setFamily("Arial");
104         m_font.setBold(true);
105         m_font.setWeight(QFont::DemiBold);
106         m_font.setItalic(true);
107         m_font.setUnderline(true);
108         m_font.setOverline(true);
109         m_font.setStrikeOut(true);
110         m_font.setPointSize(29);
111         m_font.setCapitalization(QFont::AllLowercase);
112         m_font.setLetterSpacing(QFont::AbsoluteSpacing, 10.2);
113         m_font.setWordSpacing(19.7);
114         m_color.setRedF(0.2);
115         m_color.setGreenF(0.88);
116         m_color.setBlueF(0.6);
117         m_color.setAlphaF(0.34);
118     }
119
120     QPoint m_point;
121     QPoint point() const { return m_point; }
122     void setPoint(const QPoint &v) { m_point = v; emit changed(); }
123
124     QPointF m_pointf;
125     QPointF pointf() const { return m_pointf; }
126     void setPointf(const QPointF &v) { m_pointf = v; emit changed(); }
127
128     QPointF m_pointfpoint;
129     QPointF pointfpoint() const { return m_pointfpoint; }
130     void setPointfpoint(const QPointF &v) { m_pointfpoint = v; emit changed(); }
131
132     QSize m_size;
133     QSize size() const { return m_size; }
134     void setSize(const QSize &v) { m_size = v; emit changed(); }
135
136     QSizeF m_sizef;
137     QSizeF sizef() const { return m_sizef; }
138     void setSizef(const QSizeF &v) { m_sizef = v; emit changed(); }
139
140     QSizeF m_sizefsize;
141     QSizeF sizefsize() const { return m_sizefsize; }
142     void setSizefsize(const QSizeF &v) { m_sizefsize = v; emit changed(); }
143
144     QRect m_rect;
145     QRect rect() const { return m_rect; }
146     void setRect(const QRect &v) { m_rect = v; emit changed(); }
147
148     QRectF m_rectf;
149     QRectF rectf() const { return m_rectf; }
150     void setRectf(const QRectF &v) { m_rectf = v; emit changed(); }
151
152     QRectF m_rectfrect;
153     QRectF rectfrect() const { return m_rectfrect; }
154     void setRectfrect(const QRectF &v) { m_rectfrect = v; emit changed(); }
155
156     QVector2D m_vector2;
157     QVector2D vector2() const { return m_vector2; }
158     void setVector2(const QVector2D &v) { m_vector2 = v; emit changed(); }
159
160     QVector3D m_vector;
161     QVector3D vector() const { return m_vector; }
162     void setVector(const QVector3D &v) { m_vector = v; emit changed(); }
163
164     QVector4D m_vector4;
165     QVector4D vector4() const { return m_vector4; }
166     void setVector4(const QVector4D &v) { m_vector4 = v; emit changed(); }
167
168     QQuaternion m_quaternion;
169     QQuaternion quaternion() const { return m_quaternion; }
170     void setQuaternion(const QQuaternion &v) { m_quaternion = v; emit changed(); }
171
172     QMatrix4x4 m_matrix;
173     QMatrix4x4 matrix() const { return m_matrix; }
174     void setMatrix(const QMatrix4x4 &v) { m_matrix = v; emit changed(); }
175
176     QFont m_font;
177     QFont font() const { return m_font; }
178     void setFont(const QFont &v) { m_font = v; emit changed(); }
179
180     QColor m_color;
181     QColor color() const { return m_color; }
182     void setColor(const QColor &v) { m_color = v; emit changed(); }
183
184     QVariant variant() const { return sizef(); }
185
186     void emitRunScript() { emit runScript(); }
187
188 signals:
189     void changed();
190     void runScript();
191
192 public slots:
193     QSize method() { return QSize(13, 14); }
194 };
195
196 class MyConstantValueSource : public QObject, public QDeclarativePropertyValueSource
197 {
198     Q_OBJECT
199     Q_INTERFACES(QDeclarativePropertyValueSource)
200 public:
201     virtual void setTarget(const QDeclarativeProperty &p) { p.write(3345); }
202 };
203
204 class MyOffsetValueInterceptor : public QObject, public QDeclarativePropertyValueInterceptor
205 {
206     Q_OBJECT
207     Q_INTERFACES(QDeclarativePropertyValueInterceptor)
208 public:
209     virtual void setTarget(const QDeclarativeProperty &p) { prop = p; }
210     virtual void write(const QVariant &value) { QDeclarativePropertyPrivate::write(prop, value.toInt() + 13, QDeclarativePropertyPrivate::BypassInterceptor); }
211
212 private:
213     QDeclarativeProperty prop;
214 };
215
216 void registerTypes();
217
218 #endif // TESTTYPES_H