1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-14 11:02:19 +01:00
falkonOfficial/src/rss/rssnotification.h

29 lines
457 B
C
Raw Normal View History

2011-03-03 15:24:23 +01:00
#ifndef RSSNOTIFICATION_H
#define RSSNOTIFICATION_H
#include <QWidget>
#include <QTimeLine>
namespace Ui {
class RSSNotification;
}
class RSSNotification : public QWidget
{
Q_OBJECT
public:
explicit RSSNotification(QString host, QWidget *parent = 0);
~RSSNotification();
private slots:
void hide();
void frameChanged(int frame);
private:
Ui::RSSNotification *ui;
QTimeLine* m_animation;
};
#endif // RSSNOTIFICATION_H