mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-22 03:36:35 +01:00
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
* ============================================================ */
|
|
#ifndef AUTOFILL_H
|
|
#define AUTOFILL_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "qzcommon.h"
|
|
|
|
class QUrl;
|
|
class QWebEnginePage;
|
|
|
|
class WebPage;
|
|
class BrowserWindow;
|
|
class PasswordManager;
|
|
struct PageFormData;
|
|
struct PasswordEntry;
|
|
|
|
struct PageFormData {
|
|
QString username;
|
|
QString password;
|
|
QByteArray postData;
|
|
|
|
bool isValid() const {
|
|
return !password.isEmpty();
|
|
}
|
|
};
|
|
|
|
class QUPZILLA_EXPORT AutoFill : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AutoFill(QObject* parent = 0);
|
|
|
|
PasswordManager* passwordManager() const;
|
|
void loadSettings();
|
|
|
|
bool isStored(const QUrl &url);
|
|
bool isStoringEnabled(const QUrl &url);
|
|
void blockStoringforUrl(const QUrl &url);
|
|
|
|
QVector<PasswordEntry> getFormData(const QUrl &url);
|
|
QVector<PasswordEntry> getAllFormData();
|
|
|
|
void updateLastUsed(PasswordEntry &data);
|
|
|
|
void addEntry(const QUrl &url, const QString &name, const QString &pass);
|
|
void addEntry(const QUrl &url, const PageFormData &formData);
|
|
|
|
void updateEntry(const QUrl &url, const QString &name, const QString &pass);
|
|
bool updateEntry(const PasswordEntry &entry);
|
|
|
|
void removeEntry(const PasswordEntry &entry);
|
|
void removeAllEntries();
|
|
|
|
void saveForm(WebPage *page, const QUrl &frameUrl, const PageFormData &formData);
|
|
QVector<PasswordEntry> completePage(WebPage *page, const QUrl &frameUrl);
|
|
|
|
QByteArray exportPasswords();
|
|
bool importPasswords(const QByteArray &data);
|
|
|
|
private:
|
|
PasswordManager* m_manager;
|
|
bool m_isStoring;
|
|
|
|
};
|
|
|
|
#endif // AUTOFILL_H
|