source: trunk/demos/embeddeddialogs/customproxy.cpp@ 397

Last change on this file since 397 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 6.1 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the demonstration applications of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "customproxy.h"
43
44#include <QtGui>
45
46CustomProxy::CustomProxy(QGraphicsItem *parent, Qt::WindowFlags wFlags)
47 : QGraphicsProxyWidget(parent, wFlags), popupShown(false), currentPopup(0)
48{
49 timeLine = new QTimeLine(250, this);
50 connect(timeLine, SIGNAL(valueChanged(qreal)),
51 this, SLOT(updateStep(qreal)));
52 connect(timeLine, SIGNAL(stateChanged(QTimeLine::State)),
53 this, SLOT(stateChanged(QTimeLine::State)));
54}
55
56QRectF CustomProxy::boundingRect() const
57{
58 return QGraphicsProxyWidget::boundingRect().adjusted(0, 0, 10, 10);
59}
60
61void CustomProxy::paintWindowFrame(QPainter *painter, const QStyleOptionGraphicsItem *option,
62 QWidget *widget)
63{
64 const QColor color(0, 0, 0, 64);
65
66 QRectF r = windowFrameRect();
67 QRectF right(r.right(), r.top() + 10, 10, r.height() - 10);
68 QRectF bottom(r.left() + 10, r.bottom(), r.width(), 10);
69 bool intersectsRight = right.intersects(option->exposedRect);
70 bool intersectsBottom = bottom.intersects(option->exposedRect);
71 if (intersectsRight && intersectsBottom) {
72 QPainterPath path;
73 path.addRect(right);
74 path.addRect(bottom);
75 painter->setPen(Qt::NoPen);
76 painter->setBrush(color);
77 painter->drawPath(path);
78 } else if (intersectsBottom) {
79 painter->fillRect(bottom, color);
80 } else if (intersectsRight) {
81 painter->fillRect(right, color);
82 }
83
84 QGraphicsProxyWidget::paintWindowFrame(painter, option, widget);
85}
86
87void CustomProxy::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
88{
89 QGraphicsProxyWidget::hoverEnterEvent(event);
90 scene()->setActiveWindow(this);
91 if (timeLine->currentValue() != 1)
92 zoomIn();
93}
94
95void CustomProxy::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
96{
97 QGraphicsProxyWidget::hoverLeaveEvent(event);
98 if (!popupShown && (timeLine->direction() != QTimeLine::Backward || timeLine->currentValue() != 0))
99 zoomOut();
100}
101
102bool CustomProxy::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
103{
104 if (watched->isWindow() && (event->type() == QEvent::UngrabMouse || event->type() == QEvent::GrabMouse)) {
105 popupShown = watched->isVisible();
106 if (!popupShown && !isUnderMouse())
107 zoomOut();
108 }
109 return QGraphicsProxyWidget::sceneEventFilter(watched, event);
110}
111
112QVariant CustomProxy::itemChange(GraphicsItemChange change, const QVariant &value)
113{
114 if (change == ItemChildAddedChange || change == ItemChildRemovedChange) {
115 if (change == ItemChildAddedChange) {
116 currentPopup = qVariantValue<QGraphicsItem *>(value);
117 currentPopup->setCacheMode(ItemCoordinateCache);
118 if (scene())
119 currentPopup->installSceneEventFilter(this);
120 } else if (scene()) {
121 currentPopup->removeSceneEventFilter(this);
122 currentPopup = 0;
123 }
124 } else if (currentPopup && change == ItemSceneHasChanged) {
125 currentPopup->installSceneEventFilter(this);
126 }
127 return QGraphicsProxyWidget::itemChange(change, value);
128}
129
130void CustomProxy::updateStep(qreal step)
131{
132 QRectF r = boundingRect();
133 setTransform(QTransform()
134 .translate(r.width() / 2, r.height() / 2)
135 .rotate(step * 30, Qt::XAxis)
136 .rotate(step * 10, Qt::YAxis)
137 .rotate(step * 5, Qt::ZAxis)
138 .scale(1 + 1.5 * step, 1 + 1.5 * step)
139 .translate(-r.width() / 2, -r.height() / 2));
140}
141
142void CustomProxy::stateChanged(QTimeLine::State state)
143{
144 if (state == QTimeLine::Running) {
145 if (timeLine->direction() == QTimeLine::Forward)
146 setCacheMode(ItemCoordinateCache);
147 } else if (state == QTimeLine::NotRunning) {
148 if (timeLine->direction() == QTimeLine::Backward)
149 setCacheMode(DeviceCoordinateCache);
150 }
151}
152
153void CustomProxy::zoomIn()
154{
155 if (timeLine->direction() != QTimeLine::Forward)
156 timeLine->setDirection(QTimeLine::Forward);
157 if (timeLine->state() == QTimeLine::NotRunning)
158 timeLine->start();
159}
160
161void CustomProxy::zoomOut()
162{
163 if (timeLine->direction() != QTimeLine::Backward)
164 timeLine->setDirection(QTimeLine::Backward);
165 if (timeLine->state() == QTimeLine::NotRunning)
166 timeLine->start();
167}
Note: See TracBrowser for help on using the repository browser.