1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the examples of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:BSD$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** BSD License Usage |
18 | ** Alternatively, you may use this file under the terms of the BSD license |
19 | ** as follows: |
20 | ** |
21 | ** "Redistribution and use in source and binary forms, with or without |
22 | ** modification, are permitted provided that the following conditions are |
23 | ** met: |
24 | ** * Redistributions of source code must retain the above copyright |
25 | ** notice, this list of conditions and the following disclaimer. |
26 | ** * Redistributions in binary form must reproduce the above copyright |
27 | ** notice, this list of conditions and the following disclaimer in |
28 | ** the documentation and/or other materials provided with the |
29 | ** distribution. |
30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
31 | ** contributors may be used to endorse or promote products derived |
32 | ** from this software without specific prior written permission. |
33 | ** |
34 | ** |
35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
46 | ** |
47 | ** $QT_END_LICENSE$ |
48 | ** |
49 | ****************************************************************************/ |
50 | |
51 | #include "fademessage.h" |
52 | |
53 | #include <QtWidgets> |
54 | |
55 | FadeMessage::FadeMessage(QWidget *parent): QGraphicsView(parent) |
56 | { |
57 | setScene(&m_scene); |
58 | setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); |
59 | setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); |
60 | |
61 | setupScene(); |
62 | |
63 | m_animation = new QPropertyAnimation(m_effect, "strength" , this); |
64 | m_animation->setDuration(500); |
65 | m_animation->setEasingCurve(QEasingCurve::InOutSine); |
66 | m_animation->setStartValue(0); |
67 | m_animation->setEndValue(1); |
68 | |
69 | setRenderHint(QPainter::Antialiasing, true); |
70 | setFrameStyle(QFrame::NoFrame); |
71 | } |
72 | |
73 | void FadeMessage::() |
74 | { |
75 | if (m_message->isVisible()) { |
76 | m_message->setVisible(false); |
77 | m_animation->setDirection(QAbstractAnimation::Backward); |
78 | } else { |
79 | m_message->setVisible(true); |
80 | m_animation->setDirection(QAbstractAnimation::Forward); |
81 | } |
82 | m_animation->start(); |
83 | } |
84 | |
85 | void FadeMessage::setupScene() |
86 | { |
87 | QGraphicsRectItem *parent = m_scene.addRect(0, 0, 800, 600); |
88 | parent->setPen(Qt::NoPen); |
89 | parent->setZValue(0); |
90 | |
91 | QGraphicsPixmapItem *bg = m_scene.addPixmap(QPixmap(":/background.jpg" )); |
92 | bg->setParentItem(parent); |
93 | bg->setZValue(-1); |
94 | |
95 | for (int i = 1; i < 5; ++i) |
96 | for (int j = 2; j < 5; ++j) { |
97 | QGraphicsRectItem *item = m_scene.addRect(i * 50, (j - 1) * 50, 38, 38); |
98 | item->setParentItem(parent); |
99 | item->setZValue(1); |
100 | int hue = 12 * (i * 5 + j); |
101 | item->setBrush(QColor::fromHsv(hue, 128, 128)); |
102 | } |
103 | |
104 | QFont font; |
105 | font.setPointSize(font.pointSize() * 2); |
106 | font.setBold(true); |
107 | QFontMetrics fontMetrics(font); |
108 | int fh = fontMetrics.height(); |
109 | |
110 | QString sceneText = "Qt Everywhere!" ; |
111 | int sceneTextWidth = fontMetrics.horizontalAdvance(sceneText); |
112 | |
113 | QGraphicsRectItem *block = m_scene.addRect(50, 300, sceneTextWidth, fh + 3); |
114 | block->setPen(Qt::NoPen); |
115 | block->setBrush(QColor(102, 153, 51)); |
116 | |
117 | QGraphicsTextItem *text = m_scene.addText(sceneText, font); |
118 | text->setDefaultTextColor(Qt::white); |
119 | text->setPos(50, 300); |
120 | block->setZValue(2); |
121 | block->hide(); |
122 | |
123 | text->setParentItem(block); |
124 | m_message = block; |
125 | |
126 | m_effect = new QGraphicsColorizeEffect; |
127 | m_effect->setColor(QColor(122, 193, 66)); |
128 | m_effect->setStrength(0); |
129 | m_effect->setEnabled(true); |
130 | parent->setGraphicsEffect(m_effect); |
131 | |
132 | QPushButton *press = new QPushButton; |
133 | press->setText(tr("Press me" )); |
134 | connect(press, &QAbstractButton::clicked, this, &FadeMessage::togglePopup); |
135 | m_scene.addWidget(press); |
136 | |
137 | press->move(300, 500); |
138 | } |
139 | |