1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/autofill/autofillnotification.h

38 lines
645 B
C
Raw Normal View History

2011-03-02 16:57:41 +01:00
#ifndef AUTOFILLWIDGET_H
#define AUTOFILLWIDGET_H
#include <QWidget>
#include <QUrl>
#include <QTimeLine>
2011-03-03 13:38:41 +01:00
#include <QTimer>
2011-03-03 15:24:23 +01:00
#include <QDebug>
2011-03-02 16:57:41 +01:00
namespace Ui {
class AutoFillWidget;
}
class AutoFillNotification : public QWidget
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
explicit AutoFillNotification(QUrl url, QByteArray data, QString pass, QWidget *parent = 0);
~AutoFillNotification();
2011-03-02 16:57:41 +01:00
private slots:
void frameChanged(int frame);
2011-03-02 16:57:41 +01:00
void remember();
void never();
void hide();
2011-03-02 16:57:41 +01:00
private:
Ui::AutoFillWidget *ui;
QUrl m_url;
QByteArray m_data;
QString m_pass;
QTimeLine* m_animation;
2011-03-02 16:57:41 +01:00
};
#endif // AUTOFILLWIDGET_H