2011-03-04 13:59:07 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-04 13:59:07 +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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#ifndef SSLMANAGER_H
|
|
|
|
#define SSLMANAGER_H
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
#include <QDialog>
|
2011-03-04 15:15:21 +01:00
|
|
|
#include <QSslCertificate>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
2011-03-04 13:59:07 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class SSLManager;
|
2011-03-04 13:59:07 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QT_QUPZILLA_EXPORT SSLManager : public QDialog
|
2011-03-04 13:59:07 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-03-17 17:03:04 +01:00
|
|
|
explicit SSLManager(QWidget* parent = 0);
|
2011-03-04 13:59:07 +01:00
|
|
|
~SSLManager();
|
|
|
|
|
2011-03-04 15:15:21 +01:00
|
|
|
private slots:
|
2011-10-12 22:28:41 +02:00
|
|
|
void showLocalCertInfo();
|
|
|
|
void showCaCertInfo();
|
2012-04-20 14:49:16 +02:00
|
|
|
void addLocalCertificate();
|
2011-10-12 22:28:41 +02:00
|
|
|
|
2011-03-04 15:15:21 +01:00
|
|
|
void deleteCertificate();
|
|
|
|
void ignoreAll(bool state);
|
|
|
|
|
2011-10-12 22:28:41 +02:00
|
|
|
void addPath();
|
|
|
|
void deletePath();
|
|
|
|
|
2011-03-04 13:59:07 +01:00
|
|
|
private:
|
2011-11-06 17:01:23 +01:00
|
|
|
void closeEvent(QCloseEvent* e);
|
2011-10-12 22:28:41 +02:00
|
|
|
|
|
|
|
void refreshLocalList();
|
|
|
|
void refreshCAList();
|
|
|
|
void refreshPaths();
|
|
|
|
|
|
|
|
void showCertificateInfo(const QSslCertificate &cert);
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::SSLManager* ui;
|
2011-10-12 22:28:41 +02:00
|
|
|
QList<QSslCertificate> m_localCerts;
|
|
|
|
QList<QSslCertificate> m_caCerts;
|
2011-03-04 13:59:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SSLMANAGER_H
|