Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickpositioners_p_p.h
1 // Commit: 2c7cab4172f1acc86fd49345a2847417e162f2c3
2 /****************************************************************************
3 **
4 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
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 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef QQUICKPOSITIONERS_P_P_H
44 #define QQUICKPOSITIONERS_P_P_H
45
46 //
47 //  W A R N I N G
48 //  -------------
49 //
50 // This file is not part of the Qt API.  It exists purely as an
51 // implementation detail.  This header file may change from version to
52 // version without notice, or even be removed.
53 //
54 // We mean it.
55 //
56
57 #include "qquickpositioners_p.h"
58 #include "qquickimplicitsizeitem_p_p.h"
59
60 #include <QtQuick/private/qdeclarativestate_p.h>
61 #include <private/qdeclarativetransitionmanager_p_p.h>
62 #include <private/qdeclarativestateoperations_p.h>
63
64 #include <QtCore/qobject.h>
65 #include <QtCore/qstring.h>
66 #include <QtCore/qtimer.h>
67
68 QT_BEGIN_NAMESPACE
69
70 class QQuickBasePositionerPrivate : public QQuickImplicitSizeItemPrivate, public QQuickItemChangeListener
71 {
72     Q_DECLARE_PUBLIC(QQuickBasePositioner)
73
74 public:
75     QQuickBasePositionerPrivate()
76         : spacing(0), type(QQuickBasePositioner::None)
77         , moveTransition(0), addTransition(0), positioningDirty(false)
78         , doingPositioning(false), anchorConflict(false), layoutDirection(Qt::LeftToRight)
79     {
80     }
81
82     void init(QQuickBasePositioner::PositionerType at)
83     {
84         type = at;
85         childrenDoNotOverlap = true;
86     }
87
88     int spacing;
89
90     QQuickBasePositioner::PositionerType type;
91     QDeclarativeTransition *moveTransition;
92     QDeclarativeTransition *addTransition;
93     QDeclarativeStateOperation::ActionList addActions;
94     QDeclarativeStateOperation::ActionList moveActions;
95     QDeclarativeTransitionManager addTransitionManager;
96     QDeclarativeTransitionManager moveTransitionManager;
97
98     void watchChanges(QQuickItem *other);
99     void unwatchChanges(QQuickItem* other);
100     void setPositioningDirty() {
101         Q_Q(QQuickBasePositioner);
102         if (!positioningDirty) {
103             positioningDirty = true;
104             q->polish();
105         }
106     }
107
108     bool positioningDirty : 1;
109     bool doingPositioning : 1;
110     bool anchorConflict : 1;
111
112     Qt::LayoutDirection layoutDirection;
113
114     void mirrorChange() {
115         Q_Q(QQuickBasePositioner);
116         if (type != QQuickBasePositioner::Vertical)
117             q->prePositioning(); //Don't postpone, as it might be the only trigger for visible changes.
118     }
119     bool isLeftToRight() const {
120         if (type == QQuickBasePositioner::Vertical)
121             return true;
122         else
123             return effectiveLayoutMirror ? layoutDirection == Qt::RightToLeft : layoutDirection == Qt::LeftToRight;
124     }
125
126     virtual void itemSiblingOrderChanged(QQuickItem* other)
127     {
128         Q_UNUSED(other);
129         setPositioningDirty();
130     }
131
132     void itemGeometryChanged(QQuickItem *, const QRectF &newGeometry, const QRectF &oldGeometry)
133     {
134         if (newGeometry.size() != oldGeometry.size())
135             setPositioningDirty();
136     }
137
138     virtual void itemVisibilityChanged(QQuickItem *)
139     {
140         setPositioningDirty();
141     }
142
143     void itemDestroyed(QQuickItem *item)
144     {
145         Q_Q(QQuickBasePositioner);
146         q->positionedItems.removeOne(QQuickBasePositioner::PositionedItem(item));
147     }
148
149     static Qt::LayoutDirection getLayoutDirection(const QQuickBasePositioner *positioner)
150     {
151         return positioner->d_func()->layoutDirection;
152     }
153
154     static Qt::LayoutDirection getEffectiveLayoutDirection(const QQuickBasePositioner *positioner)
155     {
156         if (positioner->d_func()->effectiveLayoutMirror)
157             return positioner->d_func()->layoutDirection == Qt::RightToLeft ? Qt::LeftToRight : Qt::RightToLeft;
158         else
159             return positioner->d_func()->layoutDirection;
160     }
161 };
162
163 QT_END_NAMESPACE
164
165 #endif // QQUICKPOSITIONERS_P_P_H