X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsslinfodlg.h;h=d7d36dc76e33356892de1f5b7872498b222f3e70;hb=4e51500401db3c85dbe5e92e5e5c15b6e3c87787;hp=d76602157a420ce985e30898b4626663ea170e46;hpb=e052c6532456d818b804ce726c8a6e66c81ad8a0;p=quassel.git diff --git a/src/qtui/sslinfodlg.h b/src/qtui/sslinfodlg.h index d7660215..d7d36dc7 100644 --- a/src/qtui/sslinfodlg.h +++ b/src/qtui/sslinfodlg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,13 +15,14 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef SSLINFODLG_H #define SSLINFODLG_H #include +#include #include "ui_sslinfodlg.h" @@ -31,21 +32,25 @@ class QSslSocket; // SslInfoDialog // ======================================== -class QSslCertificate; - -class SslInfoDlg : public QDialog { - Q_OBJECT +class SslInfoDlg : public QDialog +{ + Q_OBJECT public: - SslInfoDlg(const QSslSocket *socket, QWidget *parent = 0); - inline const QSslSocket *socket() const { return _socket; } + SslInfoDlg(const QSslSocket* socket, QWidget* parent = nullptr); + inline const QSslSocket* socket() const { return _socket; } private slots: - void setCurrentCert(int index); + void setCurrentCert(int index); + +private: + // simplify handling the API changes between Qt4 and Qt5 (QString -> QStringList) + QString subjectInfo(const QSslCertificate& cert, QSslCertificate::SubjectInfo subjectInfo) const; + QString issuerInfo(const QSslCertificate& cert, QSslCertificate::SubjectInfo subjectInfo) const; private: - Ui::SslInfoDlg ui; - const QSslSocket *_socket; + Ui::SslInfoDlg ui; + const QSslSocket* _socket; }; #endif