mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
37 lines
771 B
Plaintext
37 lines
771 B
Plaintext
|
class QgsAuthImportIdentityDialog : QDialog
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgsauthimportidentitydialog.h>
|
||
|
%End
|
||
|
|
||
|
public:
|
||
|
enum IdentityType
|
||
|
{
|
||
|
CertIdentity = 0,
|
||
|
};
|
||
|
|
||
|
enum BundleTypes
|
||
|
{
|
||
|
PkiPaths = 0,
|
||
|
PkiPkcs12 = 1,
|
||
|
};
|
||
|
|
||
|
enum Validity
|
||
|
{
|
||
|
Valid,
|
||
|
Invalid,
|
||
|
Unknown
|
||
|
};
|
||
|
|
||
|
explicit QgsAuthImportIdentityDialog( QgsAuthImportIdentityDialog::IdentityType identitytype,
|
||
|
QWidget *parent /TransferThis/ = 0 );
|
||
|
~QgsAuthImportIdentityDialog();
|
||
|
|
||
|
QgsAuthImportIdentityDialog::IdentityType identityType();
|
||
|
|
||
|
// Should not be available via Python binding
|
||
|
//const QPair<QSslCertificate, QSslKey> certBundleToImport();
|
||
|
|
||
|
const QgsPkiBundle pkiBundleToImport();
|
||
|
};
|