qt5base-lts/tests/manual/examples/widgets/effects/fademessage/fademessage.h
Tor Arne Vestbø 9a320b037c Move fade effect example to manual test
Pick-to: 6.5 6.6
Change-Id: I7f4e1d9b57be2d0ef22eb56d5d1f7abc5074ebae
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2023-06-28 00:09:59 +02:00

34 lines
619 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef FADEMESSAGE_H
#define FADEMESSAGE_H
#include <QGraphicsEffect>
#include <QGraphicsView>
#include <QPropertyAnimation>
#include "fademessage.h"
class FadeMessage: public QGraphicsView
{
Q_OBJECT
public:
FadeMessage(QWidget *parent = nullptr);
private:
void setupScene();
private slots:
void togglePopup();
private:
QGraphicsScene m_scene;
QGraphicsColorizeEffect *m_effect;
QGraphicsItem *m_message;
QPropertyAnimation *m_animation;
};
#endif // FADEMESSAGE_H