74bd162b33371afd2cc8faca9c6e22b7da8959a1
[profile/ivi/qtdeclarative.git] / src / quick / particles / qquicktargetdirection_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the Declarative module 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
42 #ifndef DIRECTEDVECTOR_H
43 #define DIRECTEDVECTOR_H
44 #include "qquickdirection_p.h"
45 QT_BEGIN_HEADER
46
47 QT_BEGIN_NAMESPACE
48
49 class QQuickItem;
50 class QQuickTargetDirection : public QQuickDirection
51 {
52     Q_OBJECT
53     Q_PROPERTY(qreal targetX READ targetX WRITE setTargetX NOTIFY targetXChanged)
54     Q_PROPERTY(qreal targetY READ targetY WRITE setTargetY NOTIFY targetYChanged)
55     //If targetItem is set, X/Y are ignored. Aims at middle of item, use variation for variation
56     Q_PROPERTY(QQuickItem* targetItem READ targetItem WRITE setTargetItem NOTIFY targetItemChanged)
57
58     Q_PROPERTY(qreal targetVariation READ targetVariation WRITE setTargetVariation NOTIFY targetVariationChanged)
59
60     //TODO: An enum would be better
61     Q_PROPERTY(bool proportionalMagnitude READ proportionalMagnitude WRITE setProportionalMagnitude NOTIFY proprotionalMagnitudeChanged)
62     Q_PROPERTY(qreal magnitude READ magnitude WRITE setMagnitude NOTIFY magnitudeChanged)
63     Q_PROPERTY(qreal magnitudeVariation READ magnitudeVariation WRITE setMagnitudeVariation NOTIFY magnitudeVariationChanged)
64
65 public:
66     explicit QQuickTargetDirection(QObject *parent = 0);
67     virtual const QPointF sample(const QPointF &from);
68
69     qreal targetX() const
70     {
71         return m_targetX;
72     }
73
74     qreal targetY() const
75     {
76         return m_targetY;
77     }
78
79     qreal targetVariation() const
80     {
81         return m_targetVariation;
82     }
83
84     qreal magnitude() const
85     {
86         return m_magnitude;
87     }
88
89     bool proportionalMagnitude() const
90     {
91         return m_proportionalMagnitude;
92     }
93
94     qreal magnitudeVariation() const
95     {
96         return m_magnitudeVariation;
97     }
98
99     QQuickItem* targetItem() const
100     {
101         return m_targetItem;
102     }
103
104 signals:
105
106     void targetXChanged(qreal arg);
107
108     void targetYChanged(qreal arg);
109
110     void targetVariationChanged(qreal arg);
111
112     void magnitudeChanged(qreal arg);
113
114     void proprotionalMagnitudeChanged(bool arg);
115
116     void magnitudeVariationChanged(qreal arg);
117
118     void targetItemChanged(QQuickItem* arg);
119
120 public slots:
121     void setTargetX(qreal arg)
122     {
123         if (m_targetX != arg) {
124             m_targetX = arg;
125             emit targetXChanged(arg);
126         }
127     }
128
129     void setTargetY(qreal arg)
130     {
131         if (m_targetY != arg) {
132             m_targetY = arg;
133             emit targetYChanged(arg);
134         }
135     }
136
137     void setTargetVariation(qreal arg)
138     {
139         if (m_targetVariation != arg) {
140             m_targetVariation = arg;
141             emit targetVariationChanged(arg);
142         }
143     }
144
145     void setMagnitude(qreal arg)
146     {
147         if (m_magnitude != arg) {
148             m_magnitude = arg;
149             emit magnitudeChanged(arg);
150         }
151     }
152
153     void setProportionalMagnitude(bool arg)
154     {
155         if (m_proportionalMagnitude != arg) {
156             m_proportionalMagnitude = arg;
157             emit proprotionalMagnitudeChanged(arg);
158         }
159     }
160
161     void setMagnitudeVariation(qreal arg)
162     {
163         if (m_magnitudeVariation != arg) {
164             m_magnitudeVariation = arg;
165             emit magnitudeVariationChanged(arg);
166         }
167     }
168
169     void setTargetItem(QQuickItem* arg)
170     {
171         if (m_targetItem != arg) {
172             m_targetItem = arg;
173             emit targetItemChanged(arg);
174         }
175     }
176
177 private:
178     qreal m_targetX;
179     qreal m_targetY;
180     qreal m_targetVariation;
181     bool m_proportionalMagnitude;
182     qreal m_magnitude;
183     qreal m_magnitudeVariation;
184     QQuickItem *m_targetItem;
185 };
186
187 QT_END_NAMESPACE
188 QT_END_HEADER
189 #endif // DIRECTEDVECTOR_H