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

38 lines
645 B
C++

#ifndef AUTOFILLWIDGET_H
#define AUTOFILLWIDGET_H
#include <QWidget>
#include <QUrl>
#include <QTimeLine>
#include <QTimer>
#include <QDebug>
namespace Ui {
class AutoFillWidget;
}
class AutoFillNotification : public QWidget
{
Q_OBJECT
public:
explicit AutoFillNotification(QUrl url, QByteArray data, QString pass, QWidget *parent = 0);
~AutoFillNotification();
private slots:
void frameChanged(int frame);
void remember();
void never();
void hide();
private:
Ui::AutoFillWidget *ui;
QUrl m_url;
QByteArray m_data;
QString m_pass;
QTimeLine* m_animation;
};
#endif // AUTOFILLWIDGET_H