mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
1ad561ca4c
following https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rh-override virtual means exactly and only "this is a new virtual function." override means exactly and only "this is a non-final overrider." final means exactly and only "this is a final overrider." Nothing was changed from e.g. override to final, just reduced duplication of these labels.
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/*
|
|
Copyright © 2015-2019 by The qTox Project Contributors
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef TOOLBOXGRAPHICSITEM_HPP
|
|
#define TOOLBOXGRAPHICSITEM_HPP
|
|
|
|
#include <QGraphicsItemGroup>
|
|
#include <QObject>
|
|
#include <QPropertyAnimation>
|
|
|
|
class ToolBoxGraphicsItem final : public QObject, public QGraphicsItemGroup
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity)
|
|
public:
|
|
ToolBoxGraphicsItem();
|
|
~ToolBoxGraphicsItem();
|
|
|
|
void paint(QPainter* painter, const QStyleOptionGraphicsItem* option,
|
|
QWidget* widget) final;
|
|
|
|
protected:
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent* event) final;
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent* event) final;
|
|
|
|
private:
|
|
void startAnimation(QAbstractAnimation::Direction direction);
|
|
|
|
QPropertyAnimation* opacityAnimation;
|
|
qreal idleOpacity = 0.0f;
|
|
qreal activeOpacity = 1.0f;
|
|
int fadeTimeMs = 300;
|
|
};
|
|
|
|
#endif // TOOLBOXGRAPHICSITEM_HPP
|