Initial import from qtquick2.
[profile/ivi/qtdeclarative.git] / src / declarative / items / qsgflipable_p.h
1 // Commit: ebd4bc73c46c2962742a682b6a391fb68c482aec
2 /****************************************************************************
3 **
4 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
5 ** All rights reserved.
6 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 **
8 ** This file is part of the QtDeclarative module of the Qt Toolkit.
9 **
10 ** $QT_BEGIN_LICENSE:LGPL$
11 ** No Commercial Usage
12 ** This file contains pre-release code and may not be distributed.
13 ** You may use this file in accordance with the terms and conditions
14 ** contained in the Technology Preview License Agreement accompanying
15 ** this package.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef QSGFLIPABLE_P_H
44 #define QSGFLIPABLE_P_H
45
46 #include "qsgitem.h"
47
48 #include <QtGui/qtransform.h>
49 #include <QtGui/qvector3d.h>
50 #include <QtCore/qobject.h>
51
52 QT_BEGIN_HEADER
53
54 QT_BEGIN_NAMESPACE
55
56 QT_MODULE(Declarative)
57
58 class QSGFlipablePrivate;
59 class Q_AUTOTEST_EXPORT QSGFlipable : public QSGItem
60 {
61     Q_OBJECT
62
63     Q_ENUMS(Side)
64     Q_PROPERTY(QSGItem *front READ front WRITE setFront NOTIFY frontChanged)
65     Q_PROPERTY(QSGItem *back READ back WRITE setBack NOTIFY backChanged)
66     Q_PROPERTY(Side side READ side NOTIFY sideChanged)
67     //### flipAxis
68     //### flipRotation
69 public:
70     QSGFlipable(QSGItem *parent=0);
71     ~QSGFlipable();
72
73     QSGItem *front();
74     void setFront(QSGItem *);
75
76     QSGItem *back();
77     void setBack(QSGItem *);
78
79     enum Side { Front, Back };
80     Side side() const;
81
82 Q_SIGNALS:
83     void frontChanged();
84     void backChanged();
85     void sideChanged();
86
87 protected:
88     virtual void updatePolish();
89
90 private Q_SLOTS:
91     void retransformBack();
92
93 private:
94     Q_DISABLE_COPY(QSGFlipable)
95     Q_DECLARE_PRIVATE(QSGFlipable)
96 };
97
98 QT_END_NAMESPACE
99
100 QML_DECLARE_TYPE(QSGFlipable)
101
102 QT_END_HEADER
103
104 #endif // QSGFLIPABLE_P_H