aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@nokia.com>2012-08-22 15:54:33 +0200
committerMarco Bubke <marco.bubke@nokia.com>2012-08-22 16:04:36 +0200
commitfc212ce735bfb3a726bd5ecbf80c37cbc536a9bf (patch)
treec74764e737da2ea50cc1fc5e653e20623a5f832d /src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp
parent6a0e01cbcfc7ae9368f24adb0488b4ed84c76740 (diff)
QmlDesigner.FormEditor: Remove Anchor mode
Change-Id: I03935715e51777efffea533310a9d775cb676dca Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
Diffstat (limited to 'src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp')
-rw-r--r--src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp117
1 files changed, 0 insertions, 117 deletions
diff --git a/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp b/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp
deleted file mode 100644
index 37e81b83b6..0000000000
--- a/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp
+++ /dev/null
@@ -1,117 +0,0 @@
-/**************************************************************************
-**
-** This file is part of Qt Creator
-**
-** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
-**
-** Contact: http://www.qt-project.org/
-**
-**
-** GNU Lesser General Public License Usage
-**
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this file.
-** Please review the following information to ensure the GNU Lesser General
-** Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** Other Usage
-**
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**************************************************************************/
-
-#include "anchorindicator.h"
-
-#include <QSet>
-
-namespace QmlDesigner {
-
-AnchorIndicator::AnchorIndicator(LayerItem *layerItem)
- : m_layerItem(layerItem)
-{
- Q_ASSERT(layerItem);
-}
-
-AnchorIndicator::~AnchorIndicator()
-{
- m_itemControllerHash.clear();
-}
-
-void AnchorIndicator::show()
-{
- QHashIterator<FormEditorItem*, AnchorController> itemControllerIterator(m_itemControllerHash);
- while (itemControllerIterator.hasNext()) {
- AnchorController controller = itemControllerIterator.next().value();
- controller.show();
- }
-}
-
-
-void AnchorIndicator::hide()
-{
- QHashIterator<FormEditorItem*, AnchorController> itemControllerIterator(m_itemControllerHash);
- while (itemControllerIterator.hasNext()) {
- AnchorController controller = itemControllerIterator.next().value();
- controller.hide();
- }
-}
-
-void AnchorIndicator::clear()
-{
- m_itemControllerHash.clear();
-}
-
-void AnchorIndicator::setItems(const QList<FormEditorItem*> &itemList)
-{
- clear();
-
- foreach (FormEditorItem *item, itemList) {
- AnchorController controller(m_layerItem, item);
- m_itemControllerHash.insert(item, controller);
- }
-
- updateItems(itemList);
-}
-
-void AnchorIndicator::updateItems(const QList<FormEditorItem*> &itemList)
-{
- foreach (FormEditorItem *item, itemList) {
- if (m_itemControllerHash.contains(item)) {
- AnchorController controller(m_itemControllerHash.value(item));
- controller.updatePosition();
- }
- }
-}
-
-void AnchorIndicator::updateTargetPoint(FormEditorItem *item, AnchorLine::Type anchorLine, const QPointF &targetPoint)
-{
- AnchorController controller(m_itemControllerHash.value(item));
- controller.updateTargetPoint(anchorLine, targetPoint);
-}
-
-void AnchorIndicator::clearHighlight()
-{
- QHashIterator<FormEditorItem*, AnchorController> itemControllerIterator(m_itemControllerHash);
- while (itemControllerIterator.hasNext()) {
- AnchorController controller = itemControllerIterator.next().value();
- controller.clearHighlight();
- }
-}
-
-void AnchorIndicator::highlight(FormEditorItem *item, AnchorLine::Type anchorLine)
-{
- if (m_itemControllerHash.contains(item)) {
- AnchorController controller(m_itemControllerHash.value(item));
- controller.highlight(anchorLine);
- }
-}
-
-} // namespace QmlDesigner