1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/auth/qgsauthcertificateinfo.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsAuthCertInfo : QWidget
{
%Docstring(signature="appended")
Widget for viewing detailed info on a certificate and its hierarchical
trust chain
%End
%TypeHeaderCode
#include "qgsauthcertificateinfo.h"
%End
public:
explicit QgsAuthCertInfo( const QSslCertificate &cert, bool manageCertTrust = false, QWidget *parent /TransferThis/ = 0, const QList<QSslCertificate> &connectionCAs = QList<QSslCertificate>() );
%Docstring
Constructor for QgsAuthCertInfo
%End
bool trustCacheRebuilt();
};
class QgsAuthCertInfoDialog : QDialog
{
%Docstring(signature="appended")
Dialog wrapper for widget displaying detailed info on a certificate and
its hierarchical trust chain
%End
%TypeHeaderCode
#include "qgsauthcertificateinfo.h"
%End
public:
explicit QgsAuthCertInfoDialog( const QSslCertificate &cert, bool manageCertTrust, QWidget *parent /TransferThis/ = 0, const QList<QSslCertificate> &connectionCAs = QList<QSslCertificate>() );
%Docstring
Construct a dialog displaying detailed info on a certificate and its
hierarchical trust chain
:param cert: Certificate object
:param manageCertTrust: Whether to show widgets to manage the trust
policy of certs in hierarchy
:param parent: Parent widget
:param connectionCAs: List of hierarchical certificates in a connection
%End
QgsAuthCertInfo *certInfoWidget();
%Docstring
Gets access to embedded info widget
%End
bool trustCacheRebuilt();
%Docstring
Whether the trust cache has been rebuilt
.. note::
This happens when a trust policy has been adjusted for any cert in the hierarchy
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/auth/qgsauthcertificateinfo.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|