Add support for comparing value-type properties
[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 <qdeclarative.h>
58 #include <QDeclarativePropertyValueSource>
59 #include <QDeclarativeProperty>
60 #include <private/qdeclarativeproperty_p.h>
61
62 class MyTypeObject : public QObject
63 {
64     Q_OBJECT
65
66     Q_PROPERTY(QPoint point READ point WRITE setPoint NOTIFY changed)
67     Q_PROPERTY(QPointF pointf READ pointf WRITE setPointf NOTIFY changed)
68     Q_PROPERTY(QPointF pointfpoint READ pointfpoint WRITE setPointfpoint NOTIFY changed)
69     Q_PROPERTY(QSize size READ size WRITE setSize NOTIFY changed)
70     Q_PROPERTY(QSizeF sizef READ sizef WRITE setSizef NOTIFY changed)
71     Q_PROPERTY(QSizeF sizefsize READ sizefsize WRITE setSizefsize NOTIFY changed)
72     Q_PROPERTY(QSize sizereadonly READ size NOTIFY changed)
73     Q_PROPERTY(QRect rect READ rect WRITE setRect NOTIFY changed)
74     Q_PROPERTY(QRectF rectf READ rectf WRITE setRectf NOTIFY changed)
75     Q_PROPERTY(QRectF rectfrect READ rectfrect WRITE setRectfrect NOTIFY changed)
76     Q_PROPERTY(QVector2D vector2 READ vector2 WRITE setVector2 NOTIFY changed)
77     Q_PROPERTY(QVector3D vector READ vector WRITE setVector NOTIFY changed)
78     Q_PROPERTY(QVector4D vector4 READ vector4 WRITE setVector4 NOTIFY changed)
79     Q_PROPERTY(QQuaternion quaternion READ quaternion WRITE setQuaternion NOTIFY changed)
80     Q_PROPERTY(QMatrix4x4 matrix READ matrix WRITE setMatrix NOTIFY changed)
81     Q_PROPERTY(QFont font READ font WRITE setFont NOTIFY changed)
82     Q_PROPERTY(QVariant variant READ variant NOTIFY changed)
83
84 public:
85     MyTypeObject() :
86         m_point(10, 4),
87         m_pointf(11.3, -10.9),
88         m_pointfpoint(10.0, 4.0),
89         m_size(1912, 1913),
90         m_sizef(0.1, 100923.2),
91         m_sizefsize(1912.0, 1913.0),
92         m_rect(2, 3, 109, 102),
93         m_rectf(103.8, 99.2, 88.1, 77.6),
94         m_rectfrect(2.0, 3.0, 109.0, 102.0),
95         m_vector2(32.88, 1.3),
96         m_vector(23.88, 3.1, 4.3),
97         m_vector4(54.2, 23.88, 3.1, 4.3),
98         m_quaternion(4.3, 54.2, 23.88, 3.1),
99         m_matrix(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
100     {
101         m_font.setFamily("Arial");
102         m_font.setBold(true);
103         m_font.setWeight(QFont::DemiBold);
104         m_font.setItalic(true);
105         m_font.setUnderline(true);
106         m_font.setOverline(true);
107         m_font.setStrikeOut(true);
108         m_font.setPointSize(29);
109         m_font.setCapitalization(QFont::AllLowercase);
110         m_font.setLetterSpacing(QFont::AbsoluteSpacing, 10.2);
111         m_font.setWordSpacing(19.7);
112     }
113
114     QPoint m_point;
115     QPoint point() const { return m_point; }
116     void setPoint(const QPoint &v) { m_point = v; emit changed(); }
117
118     QPointF m_pointf;
119     QPointF pointf() const { return m_pointf; }
120     void setPointf(const QPointF &v) { m_pointf = v; emit changed(); }
121
122     QPointF m_pointfpoint;
123     QPointF pointfpoint() const { return m_pointfpoint; }
124     void setPointfpoint(const QPointF &v) { m_pointfpoint = v; emit changed(); }
125
126     QSize m_size;
127     QSize size() const { return m_size; }
128     void setSize(const QSize &v) { m_size = v; emit changed(); }
129
130     QSizeF m_sizef;
131     QSizeF sizef() const { return m_sizef; }
132     void setSizef(const QSizeF &v) { m_sizef = v; emit changed(); }
133
134     QSizeF m_sizefsize;
135     QSizeF sizefsize() const { return m_sizefsize; }
136     void setSizefsize(const QSizeF &v) { m_sizefsize = v; emit changed(); }
137
138     QRect m_rect;
139     QRect rect() const { return m_rect; }
140     void setRect(const QRect &v) { m_rect = v; emit changed(); }
141
142     QRectF m_rectf;
143     QRectF rectf() const { return m_rectf; }
144     void setRectf(const QRectF &v) { m_rectf = v; emit changed(); }
145
146     QRectF m_rectfrect;
147     QRectF rectfrect() const { return m_rectfrect; }
148     void setRectfrect(const QRectF &v) { m_rectfrect = v; emit changed(); }
149
150     QVector2D m_vector2;
151     QVector2D vector2() const { return m_vector2; }
152     void setVector2(const QVector2D &v) { m_vector2 = v; emit changed(); }
153
154     QVector3D m_vector;
155     QVector3D vector() const { return m_vector; }
156     void setVector(const QVector3D &v) { m_vector = v; emit changed(); }
157
158     QVector4D m_vector4;
159     QVector4D vector4() const { return m_vector4; }
160     void setVector4(const QVector4D &v) { m_vector4 = v; emit changed(); }
161
162     QQuaternion m_quaternion;
163     QQuaternion quaternion() const { return m_quaternion; }
164     void setQuaternion(const QQuaternion &v) { m_quaternion = v; emit changed(); }
165
166     QMatrix4x4 m_matrix;
167     QMatrix4x4 matrix() const { return m_matrix; }
168     void setMatrix(const QMatrix4x4 &v) { m_matrix = v; emit changed(); }
169
170     QFont m_font;
171     QFont font() const { return m_font; }
172     void setFont(const QFont &v) { m_font = v; emit changed(); }
173
174     QVariant variant() const { return sizef(); }
175
176     void emitRunScript() { emit runScript(); }
177
178 signals:
179     void changed();
180     void runScript();
181
182 public slots:
183     QSize method() { return QSize(13, 14); }
184 };
185
186 class MyConstantValueSource : public QObject, public QDeclarativePropertyValueSource
187 {
188     Q_OBJECT
189     Q_INTERFACES(QDeclarativePropertyValueSource)
190 public:
191     virtual void setTarget(const QDeclarativeProperty &p) { p.write(3345); }
192 };
193
194 class MyOffsetValueInterceptor : public QObject, public QDeclarativePropertyValueInterceptor
195 {
196     Q_OBJECT
197     Q_INTERFACES(QDeclarativePropertyValueInterceptor)
198 public:
199     virtual void setTarget(const QDeclarativeProperty &p) { prop = p; }
200     virtual void write(const QVariant &value) { QDeclarativePropertyPrivate::write(prop, value.toInt() + 13, QDeclarativePropertyPrivate::BypassInterceptor); }
201
202 private:
203     QDeclarativeProperty prop;
204 };
205
206 void registerTypes();
207
208 #endif // TESTTYPES_H