mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
33 lines
668 B
C
33 lines
668 B
C
|
// Copyright (C) 2017 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef CERTIFICATEINFO_H
|
||
|
#define CERTIFICATEINFO_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QList>
|
||
|
#include <QSslCertificate>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
class Ui_CertificateInfo;
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class CertificateInfo : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CertificateInfo(QWidget *parent = nullptr);
|
||
|
~CertificateInfo();
|
||
|
|
||
|
void setCertificateChain(const QList<QSslCertificate> &chain);
|
||
|
|
||
|
private slots:
|
||
|
void updateCertificateInfo(int index);
|
||
|
|
||
|
private:
|
||
|
Ui_CertificateInfo *form = nullptr;
|
||
|
QList<QSslCertificate> certificateChain;
|
||
|
};
|
||
|
|
||
|
#endif
|