a58a9f05165da9630159d6942cf43d9698cb350f
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativebinding_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 QtDeclarative 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 QDECLARATIVEBINDING_P_H
43 #define QDECLARATIVEBINDING_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists purely as an
50 // implementation detail.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include "qdeclarative.h"
57 #include "qdeclarativepropertyvaluesource.h"
58 #include "qdeclarativeexpression.h"
59 #include "qdeclarativeproperty.h"
60 #include "qdeclarativeproperty_p.h"
61
62 #include <QtCore/QObject>
63 #include <QtCore/QMetaProperty>
64
65 QT_BEGIN_NAMESPACE
66
67 class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeAbstractBinding
68 {
69 public:
70     typedef QWeakPointer<QDeclarativeAbstractBinding> Pointer;
71
72     QDeclarativeAbstractBinding();
73
74     virtual void destroy();
75
76     virtual QString expression() const;
77
78     enum Type { PropertyBinding, ValueTypeProxy };
79     virtual Type bindingType() const { return PropertyBinding; }
80
81     QObject *object() const;
82     int propertyIndex() const;
83
84     void setEnabled(bool e) { setEnabled(e, QDeclarativePropertyPrivate::DontRemoveBinding); }
85     virtual void setEnabled(bool, QDeclarativePropertyPrivate::WriteFlags) = 0;
86
87     void update() { update(QDeclarativePropertyPrivate::DontRemoveBinding); }
88     virtual void update(QDeclarativePropertyPrivate::WriteFlags) = 0;
89
90     void addToObject(QObject *, int);
91     void removeFromObject();
92
93     static Pointer getPointer(QDeclarativeAbstractBinding *p) { return p ? p->weakPointer() : Pointer(); }
94
95 protected:
96     virtual ~QDeclarativeAbstractBinding();
97     void clear();
98
99 private:
100     Pointer weakPointer();
101
102     friend class QDeclarativeData;
103     friend class QDeclarativeComponentPrivate;
104     friend class QDeclarativeValueTypeProxyBinding;
105     friend class QDeclarativePropertyPrivate;
106     friend class QDeclarativeVME;
107     friend class QtSharedPointer::ExternalRefCount<QDeclarativeAbstractBinding>;
108
109     QObject *m_object;
110     int m_propertyIndex;
111     QDeclarativeAbstractBinding **m_mePtr;
112     QDeclarativeAbstractBinding **m_prevBinding;
113     QDeclarativeAbstractBinding  *m_nextBinding;
114     QSharedPointer<QDeclarativeAbstractBinding> m_selfPointer;
115 };
116
117 class QDeclarativeValueTypeProxyBinding : public QDeclarativeAbstractBinding
118 {
119 public:
120     QDeclarativeValueTypeProxyBinding(QObject *o, int coreIndex);
121
122     virtual Type bindingType() const { return ValueTypeProxy; }
123
124     virtual void setEnabled(bool, QDeclarativePropertyPrivate::WriteFlags);
125     virtual void update(QDeclarativePropertyPrivate::WriteFlags);
126
127     QDeclarativeAbstractBinding *binding(int propertyIndex);
128
129     void removeBindings(quint32 mask);
130
131 protected:
132     ~QDeclarativeValueTypeProxyBinding();
133
134 private:
135     void recursiveEnable(QDeclarativeAbstractBinding *, QDeclarativePropertyPrivate::WriteFlags);
136     void recursiveDisable(QDeclarativeAbstractBinding *);
137
138     friend class QDeclarativeAbstractBinding;
139     QObject *m_object;
140     int m_index;
141     QDeclarativeAbstractBinding *m_bindings;
142 };
143
144 class QDeclarativeContext;
145 class QDeclarativeBindingPrivate;
146 class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeBinding : public QDeclarativeExpression, public QDeclarativeAbstractBinding
147 {
148 Q_OBJECT
149 public:
150     enum EvaluateFlag { None = 0x00, RequiresThisObject = 0x01 };
151     Q_DECLARE_FLAGS(EvaluateFlags, EvaluateFlag)
152
153     QDeclarativeBinding(const QString &, QObject *, QDeclarativeContext *, QObject *parent=0);
154     QDeclarativeBinding(const QString &, QObject *, QDeclarativeContextData *, QObject *parent=0);
155     QDeclarativeBinding(const QString &, bool isRewritten, QObject *, QDeclarativeContextData *, 
156                         const QString &url, int lineNumber, int columnNumber = 0, QObject *parent=0);
157     QDeclarativeBinding(void *, QObject *, QDeclarativeContextData *, QObject *parent=0);
158
159     void setTarget(const QDeclarativeProperty &);
160     void setTarget(QObject *, const QDeclarativePropertyData &, QDeclarativeContextData *);
161     QDeclarativeProperty property() const;
162
163     void setEvaluateFlags(EvaluateFlags flags);
164     EvaluateFlags evaluateFlags() const;
165
166     bool enabled() const;
167
168     // Inherited from  QDeclarativeAbstractBinding
169     virtual void setEnabled(bool, QDeclarativePropertyPrivate::WriteFlags flags);
170     virtual void update(QDeclarativePropertyPrivate::WriteFlags flags);
171     virtual QString expression() const;
172
173     typedef int Identifier;
174     static Identifier Invalid;
175     static QDeclarativeBinding *createBinding(Identifier, QObject *, QDeclarativeContext *, const QString &, int, QObject *parent=0);
176
177 public Q_SLOTS:
178     void update() { update(QDeclarativePropertyPrivate::DontRemoveBinding); }
179
180 protected:
181     ~QDeclarativeBinding();
182     void expressionChanged();
183
184 private:
185     Q_DECLARE_PRIVATE(QDeclarativeBinding)
186 };
187
188 Q_DECLARE_OPERATORS_FOR_FLAGS(QDeclarativeBinding::EvaluateFlags)
189
190 QT_END_NAMESPACE
191
192 Q_DECLARE_METATYPE(QDeclarativeBinding*)
193
194 #endif // QDECLARATIVEBINDING_P_H