2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#ifndef AUTOFILLMANAGER_H
|
|
|
|
#define AUTOFILLMANAGER_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2013-05-18 19:50:12 +02:00
|
|
|
class PasswordManager;
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class AutoFillManager;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QT_QUPZILLA_EXPORT AutoFillManager : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-03-17 17:03:04 +01:00
|
|
|
explicit AutoFillManager(QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
~AutoFillManager();
|
|
|
|
|
|
|
|
void showExceptions();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void loadPasswords();
|
2013-05-17 15:42:06 +02:00
|
|
|
void changePasswordBackend();
|
2013-05-18 19:50:12 +02:00
|
|
|
void showBackendOptions();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
void removePass();
|
|
|
|
void removeAllPass();
|
|
|
|
void editPass();
|
2011-10-26 19:23:50 +02:00
|
|
|
void showPasswords();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
void removeExcept();
|
|
|
|
void removeAllExcept();
|
|
|
|
|
2012-02-06 20:10:50 +01:00
|
|
|
void importPasswords();
|
|
|
|
void exportPasswords();
|
|
|
|
|
2013-05-23 18:16:20 +02:00
|
|
|
void slotImportPasswords();
|
|
|
|
void slotExportPasswords();
|
|
|
|
|
2013-06-08 14:58:36 +02:00
|
|
|
void currentPasswordBackendChanged();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::AutoFillManager* ui;
|
2011-10-26 19:23:50 +02:00
|
|
|
|
2013-05-18 19:50:12 +02:00
|
|
|
PasswordManager* m_passwordManager;
|
2013-05-23 18:16:20 +02:00
|
|
|
QString m_fileName;
|
2011-10-26 19:23:50 +02:00
|
|
|
bool m_passwordsShown;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AUTOFILLMANAGER_H
|