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

31 lines
490 B
C
Raw Normal View History

2011-03-02 16:57:41 +01:00
#ifndef AUTOFILLWIDGET_H
#define AUTOFILLWIDGET_H
#include <QWidget>
#include <QUrl>
namespace Ui {
class AutoFillWidget;
}
class AutoFillWidget : public QWidget
{
Q_OBJECT
public:
explicit AutoFillWidget(QUrl url, QByteArray data, QString pass, QWidget *parent = 0);
~AutoFillWidget();
private slots:
void remember();
void never();
private:
Ui::AutoFillWidget *ui;
QUrl m_url;
QByteArray m_data;
QString m_pass;
};
#endif // AUTOFILLWIDGET_H