modernize: Use std::make_unique
[quassel.git] / src / qtui / sslinfodlg.h
index 1fcd338..a8a2acf 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2009 by the Quassel Project                             *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   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 <QDialog>
+#include <QSslCertificate>
 
 #include "ui_sslinfodlg.h"
 
@@ -31,19 +32,22 @@ class QSslSocket;
 //  SslInfoDialog
 // ========================================
 
-class QSslCertificate;
-
 class SslInfoDlg : public QDialog
 {
     Q_OBJECT
 
 public:
-    SslInfoDlg(const QSslSocket *socket, QWidget *parent = 0);
+    SslInfoDlg(const QSslSocket *socket, QWidget *parent = nullptr);
     inline const QSslSocket *socket() const { return _socket; }
 
 private slots:
     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;