mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 22:44:56 -04:00
modificado el estilo de los splitters y la toolbar de comics
This commit is contained in:
29
YACReader/notifications_label_widget.h
Normal file
29
YACReader/notifications_label_widget.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef NOTIFICATIONS_LABEL_WIDGET_H
|
||||
#define NOTIFICATIONS_LABEL_WIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QLabel;
|
||||
class QPropertyAnimation;
|
||||
class QGraphicsOpacityEffect;
|
||||
|
||||
class NotificationsLabelWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
QLabel * imgLabel;
|
||||
QLabel * textLabel;
|
||||
QPropertyAnimation * anim;
|
||||
QPropertyAnimation * anim2;
|
||||
QGraphicsOpacityEffect * effect;
|
||||
QGraphicsOpacityEffect * effect2;
|
||||
public:
|
||||
NotificationsLabelWidget(QWidget * parent);
|
||||
|
||||
public slots:
|
||||
void flash();
|
||||
void setText(const QString & text);
|
||||
void updatePosition();
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user