OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / share / qtcreator / qml / qmljsdebugger / editor / livesingleselectionmanipulator.cpp
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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #include "livesingleselectionmanipulator.h"
34 #include "qdeclarativeviewobserver.h"
35 #include "../qdeclarativeviewobserver_p.h"
36 #include <QtDebug>
37
38 namespace QmlJSDebugger {
39
40 LiveSingleSelectionManipulator::LiveSingleSelectionManipulator(QDeclarativeViewObserver *editorView)
41     : m_editorView(editorView),
42       m_isActive(false)
43 {
44 }
45
46
47 void LiveSingleSelectionManipulator::begin(const QPointF &beginPoint)
48 {
49     m_beginPoint = beginPoint;
50     m_isActive = true;
51     m_oldSelectionList = QDeclarativeViewObserverPrivate::get(m_editorView)->selectedItems();
52 }
53
54 void LiveSingleSelectionManipulator::update(const QPointF &/*updatePoint*/)
55 {
56     m_oldSelectionList.clear();
57 }
58
59 void LiveSingleSelectionManipulator::clear()
60 {
61     m_beginPoint = QPointF();
62     m_oldSelectionList.clear();
63 }
64
65
66 void LiveSingleSelectionManipulator::end(const QPointF &/*updatePoint*/)
67 {
68     m_oldSelectionList.clear();
69     m_isActive = false;
70 }
71
72 void LiveSingleSelectionManipulator::select(SelectionType selectionType,
73                                             const QList<QGraphicsItem*> &items,
74                                             bool /*selectOnlyContentItems*/)
75 {
76     QGraphicsItem *selectedItem = 0;
77
78     foreach (QGraphicsItem* item, items)
79     {
80         //FormEditorItem *formEditorItem = FormEditorItem::fromQGraphicsItem(item);
81         if (item
82             /*&& !formEditorItem->qmlItemNode().isRootNode()
83                && (formEditorItem->qmlItemNode().hasShowContent() || !selectOnlyContentItems)*/)
84         {
85             selectedItem = item;
86             break;
87         }
88     }
89
90     QList<QGraphicsItem*> resultList;
91
92     switch(selectionType) {
93     case AddToSelection: {
94         resultList.append(m_oldSelectionList);
95         if (selectedItem && !m_oldSelectionList.contains(selectedItem))
96             resultList.append(selectedItem);
97     }
98         break;
99     case ReplaceSelection: {
100         if (selectedItem)
101             resultList.append(selectedItem);
102     }
103         break;
104     case RemoveFromSelection: {
105         resultList.append(m_oldSelectionList);
106         if (selectedItem)
107             resultList.removeAll(selectedItem);
108     }
109         break;
110     case InvertSelection: {
111         if (selectedItem
112                 && !m_oldSelectionList.contains(selectedItem))
113         {
114             resultList.append(selectedItem);
115         }
116     }
117     }
118
119     m_editorView->setSelectedItems(resultList);
120 }
121
122 void LiveSingleSelectionManipulator::select(SelectionType selectionType, bool selectOnlyContentItems)
123 {
124     QDeclarativeViewObserverPrivate *observerPrivate =
125             QDeclarativeViewObserverPrivate::get(m_editorView);
126     QList<QGraphicsItem*> itemList = observerPrivate->selectableItems(m_beginPoint);
127     select(selectionType, itemList, selectOnlyContentItems);
128 }
129
130
131 bool LiveSingleSelectionManipulator::isActive() const
132 {
133     return m_isActive;
134 }
135
136 QPointF LiveSingleSelectionManipulator::beginPoint() const
137 {
138     return m_beginPoint;
139 }
140
141 } // namespace QmlJSDebugger