Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / plugins / qmltooling / qmldbg_qtquick1 / subcomponentmasklayeritem.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtDeclarative module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "subcomponentmasklayeritem.h"
43
44 #include "qmlinspectorconstants.h"
45 #include "qdeclarativeviewinspector.h"
46
47 #include <QtGui/QPolygonF>
48
49 namespace QmlJSDebugger {
50 namespace QtQuick1 {
51
52 SubcomponentMaskLayerItem::SubcomponentMaskLayerItem(QDeclarativeViewInspector *inspector,
53                                                      QGraphicsItem *parentItem) :
54     QGraphicsPolygonItem(parentItem),
55     m_inspector(inspector),
56     m_currentItem(0),
57     m_borderRect(new QGraphicsRectItem(this))
58 {
59     m_borderRect->setRect(0,0,0,0);
60     m_borderRect->setPen(QPen(QColor(60, 60, 60), 1));
61     m_borderRect->setData(Constants::EditorItemDataKey, QVariant(true));
62
63     setBrush(QBrush(QColor(160,160,160)));
64     setPen(Qt::NoPen);
65 }
66
67 int SubcomponentMaskLayerItem::type() const
68 {
69     return Constants::EditorItemType;
70 }
71
72 static QRectF resizeRect(const QRectF &newRect, const QRectF &oldRect)
73 {
74     QRectF result = newRect;
75     if (oldRect.left() < newRect.left())
76         result.setLeft(oldRect.left());
77
78     if (oldRect.top() < newRect.top())
79         result.setTop(oldRect.top());
80
81     if (oldRect.right() > newRect.right())
82         result.setRight(oldRect.right());
83
84     if (oldRect.bottom() > newRect.bottom())
85         result.setBottom(oldRect.bottom());
86
87     return result;
88 }
89
90 static QPolygonF regionToPolygon(const QRegion &region)
91 {
92     QPainterPath path;
93     foreach (const QRect &rect, region.rects())
94         path.addRect(rect);
95     return path.toFillPolygon();
96 }
97
98 void SubcomponentMaskLayerItem::setCurrentItem(QGraphicsItem *item)
99 {
100     QGraphicsItem *prevItem = m_currentItem;
101     m_currentItem = item;
102
103     if (!m_currentItem)
104         return;
105
106     QRect viewRect = m_inspector->declarativeView()->rect();
107     viewRect = m_inspector->declarativeView()->mapToScene(viewRect).boundingRect().toRect();
108
109     QRectF itemRect = item->boundingRect() | item->childrenBoundingRect();
110     itemRect = item->mapRectToScene(itemRect);
111
112     // if updating the same item as before, resize the rectangle only bigger, not smaller.
113     if (prevItem == item && prevItem != 0) {
114         m_itemPolyRect = resizeRect(itemRect, m_itemPolyRect);
115     } else {
116         m_itemPolyRect = itemRect;
117     }
118     QRectF borderRect = m_itemPolyRect;
119     borderRect.adjust(-1, -1, 1, 1);
120     m_borderRect->setRect(borderRect);
121
122     const QRegion externalRegion = QRegion(viewRect).subtracted(m_itemPolyRect.toRect());
123     setPolygon(regionToPolygon(externalRegion));
124 }
125
126 QGraphicsItem *SubcomponentMaskLayerItem::currentItem() const
127 {
128     return m_currentItem;
129 }
130
131 } // namespace QtQuick1
132 } // namespace QmlJSDebugger