Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / quick / particles / qquickwander_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the Declarative module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef WANDERAFFECTOR_H
43 #define WANDERAFFECTOR_H
44 #include <QHash>
45 #include "qquickparticleaffector_p.h"
46
47 QT_BEGIN_HEADER
48
49 QT_BEGIN_NAMESPACE
50
51 struct WanderData{
52     qreal x_vel;
53     qreal y_vel;
54     qreal x_peak;
55     qreal x_var;
56     qreal y_peak;
57     qreal y_var;
58 };
59
60 class QQuickWanderAffector : public QQuickParticleAffector
61 {
62     Q_OBJECT
63     Q_PROPERTY(qreal pace READ pace WRITE setPace NOTIFY paceChanged)
64     Q_PROPERTY(qreal xVariance READ xVariance WRITE setXVariance NOTIFY xVarianceChanged)
65     Q_PROPERTY(qreal yVariance READ yVariance WRITE setYVariance NOTIFY yVarianceChanged)
66     Q_PROPERTY(AffectableParameters affectedParameter READ affectedParameter WRITE setAffectedParameter NOTIFY affectedParameterChanged)
67     Q_ENUMS(AffectableParameters)
68
69 public:
70     enum AffectableParameters {
71         Position,
72         Velocity,
73         Acceleration
74     };
75
76     explicit QQuickWanderAffector(QQuickItem *parent = 0);
77     ~QQuickWanderAffector();
78     virtual void reset(int systemIdx);
79
80     qreal xVariance() const
81     {
82         return m_xVariance;
83     }
84
85     qreal yVariance() const
86     {
87         return m_yVariance;
88     }
89
90     qreal pace() const
91     {
92         return m_pace;
93     }
94
95     AffectableParameters affectedParameter() const
96     {
97         return m_affectedParameter;
98     }
99
100 protected:
101     virtual bool affectParticle(QQuickParticleData *d, qreal dt);
102 signals:
103
104     void xVarianceChanged(qreal arg);
105
106     void yVarianceChanged(qreal arg);
107
108     void paceChanged(qreal arg);
109
110
111     void affectedParameterChanged(AffectableParameters arg);
112
113 public slots:
114 void setXVariance(qreal arg)
115 {
116     if (m_xVariance != arg) {
117         m_xVariance = arg;
118         emit xVarianceChanged(arg);
119     }
120 }
121
122 void setYVariance(qreal arg)
123 {
124     if (m_yVariance != arg) {
125         m_yVariance = arg;
126         emit yVarianceChanged(arg);
127     }
128 }
129
130 void setPace(qreal arg)
131 {
132     if (m_pace != arg) {
133         m_pace = arg;
134         emit paceChanged(arg);
135     }
136 }
137
138
139 void setAffectedParameter(AffectableParameters arg)
140 {
141     if (m_affectedParameter != arg) {
142         m_affectedParameter = arg;
143         emit affectedParameterChanged(arg);
144     }
145 }
146
147 private:
148     WanderData* getData(int idx);
149     QHash<int, WanderData*> m_wanderData;
150     qreal m_xVariance;
151     qreal m_yVariance;
152     qreal m_pace;
153     AffectableParameters m_affectedParameter;
154 };
155
156 QT_END_NAMESPACE
157 QT_END_HEADER
158 #endif // WANDERAFFECTOR_H