OSDN Git Service

357dbdbac5a3fc779e9cde3beb562f8c920dccff
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / components / formeditor / movemanipulator.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
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 #ifndef MOVEMANIPULATOR_H
35 #define MOVEMANIPULATOR_H
36
37 #include <QWeakPointer>
38 #include <QGraphicsItem>
39 #include <QGraphicsLineItem>
40 #include <QHash>
41 #include <QPointF>
42 #include <QRectF>
43
44 #include "controlelement.h"
45 #include "formeditoritem.h"
46 #include "rewritertransaction.h"
47 #include "snapper.h"
48 #include "formeditorview.h"
49
50 namespace QmlDesigner {
51
52 class ModelNodeChangeSet;
53 class Model;
54
55 class MoveManipulator
56 {
57 public:
58     enum Snapping {
59         UseSnapping,
60         UseSnappingAndAnchoring,
61         NoSnapping
62     };
63
64     enum State {
65         UseActualState,
66         UseBaseState
67     };
68
69     MoveManipulator(LayerItem *layerItem, FormEditorView *view);
70     ~MoveManipulator();
71     void setItems(const QList<FormEditorItem*> &itemList);
72     void setItem(FormEditorItem* item);
73
74     void begin(const QPointF& beginPoint);
75     void update(const QPointF& updatePoint, Snapping useSnapping, State stateToBeManipulated = UseActualState);
76     void reparentTo(FormEditorItem *newParent);
77     void end(const QPointF& endPoint);
78
79     void moveBy(double deltaX, double deltaY);
80
81     void beginRewriterTransaction();
82     void endRewriterTransaction();
83
84     QPointF beginPoint() const;
85
86     void clear();
87
88     bool isActive() const;
89
90 protected:
91     void setOpacityForAllElements(qreal opacity);
92
93     QPointF findSnappingOffset(const QHash<FormEditorItem*, QRectF> &boundingRectHash);
94
95     void deleteSnapLines();
96
97     QHash<FormEditorItem*, QRectF> tanslatedBoundingRects(const QHash<FormEditorItem*, QRectF> &boundingRectHash, const QPointF& offset);
98     QPointF calculateBoundingRectMovementOffset(const QPointF& updatePoint);
99     QRectF boundingRect(FormEditorItem* item, const QPointF& updatePoint);
100
101     void generateSnappingLines(const QHash<FormEditorItem*, QRectF> &boundingRectHash);
102     void updateHashes();
103
104     bool itemsCanReparented() const;
105
106     void setPosition(QmlItemNode itemNode, const QPointF &position);
107
108 private:
109     Snapper m_snapper;
110     QWeakPointer<LayerItem> m_layerItem;
111     QWeakPointer<FormEditorView> m_view;
112     QList<FormEditorItem*> m_itemList;
113     QHash<FormEditorItem*, QRectF> m_beginItemRectHash;
114     QHash<FormEditorItem*, QPointF> m_beginPositionHash;
115     QHash<FormEditorItem*, QPointF> m_beginPositionInSceneSpaceHash;
116     QPointF m_beginPoint;
117     QHash<FormEditorItem*, double> m_beginTopMarginHash;
118     QHash<FormEditorItem*, double> m_beginLeftMarginHash;
119     QHash<FormEditorItem*, double> m_beginRightMarginHash;
120     QHash<FormEditorItem*, double> m_beginBottomMarginHash;
121     QHash<FormEditorItem*, double> m_beginHorizontalCenterHash;
122     QHash<FormEditorItem*, double> m_beginVerticalCenterHash;
123     QList<QGraphicsItem*> m_graphicsLineList;
124     bool m_isActive;
125     RewriterTransaction m_rewriterTransaction;
126 };
127
128 }
129 #endif // MOVEMANIPULATOR_H