29a43e56390941ed4ec92c8ecfeefcbb46688478
[profile/ivi/qtdeclarative.git] / src / qtquick1 / util / qdeclarativepropertychanges_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 QDECLARATIVEPROPERTYCHANGES_H
43 #define QDECLARATIVEPROPERTYCHANGES_H
44
45 #include "QtQuick1/private/qdeclarativestateoperations_p.h"
46 #include <QtDeclarative/private/qdeclarativecustomparser_p.h>
47
48 QT_BEGIN_HEADER
49
50 QT_BEGIN_NAMESPACE
51
52     
53 class QDeclarative1PropertyChangesPrivate;
54 class Q_QTQUICK1_EXPORT QDeclarative1PropertyChanges : public QDeclarative1StateOperation
55 {
56     Q_OBJECT
57     Q_DECLARE_PRIVATE(QDeclarative1PropertyChanges)
58
59     Q_PROPERTY(QObject *target READ object WRITE setObject)
60     Q_PROPERTY(bool restoreEntryValues READ restoreEntryValues WRITE setRestoreEntryValues)
61     Q_PROPERTY(bool explicit READ isExplicit WRITE setIsExplicit)
62 public:
63     QDeclarative1PropertyChanges();
64     ~QDeclarative1PropertyChanges();
65
66     QObject *object() const;
67     void setObject(QObject *);
68
69     bool restoreEntryValues() const;
70     void setRestoreEntryValues(bool);
71
72     bool isExplicit() const;
73     void setIsExplicit(bool);
74
75     virtual ActionList actions();
76
77     bool containsProperty(const QString &name) const;
78     bool containsValue(const QString &name) const;
79     bool containsExpression(const QString &name) const;
80     void changeValue(const QString &name, const QVariant &value);
81     void changeExpression(const QString &name, const QString &expression);
82     void removeProperty(const QString &name);
83     QVariant value(const QString &name) const;
84     QString expression(const QString &name) const;
85
86     void detachFromState();
87     void attachToState();
88
89     QVariant property(const QString &name) const;
90 };
91
92 class QDeclarative1PropertyChangesParser : public QDeclarativeCustomParser
93 {
94 public:
95     QDeclarative1PropertyChangesParser()
96     : QDeclarativeCustomParser(AcceptsAttachedProperties) {}
97
98     void compileList(QList<QPair<QString, QVariant> > &list, const QString &pre, const QDeclarativeCustomParserProperty &prop);
99
100     virtual QByteArray compile(const QList<QDeclarativeCustomParserProperty> &);
101     virtual void setCustomData(QObject *, const QByteArray &);
102 };
103
104 QT_END_NAMESPACE
105
106 QML_DECLARE_TYPE(QDeclarative1PropertyChanges)
107
108 QT_END_HEADER
109
110 #endif // QDECLARATIVEPROPERTYCHANGES_H