QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsauthcertificatemanager.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsauthcertificatemanager.cpp
3 ---------------------
4 begin : September, 2015
5 copyright : (C) 2015 by Boundless Spatial, Inc. USA
6 author : Larry Shaffer
7 email : lshaffer at boundlessgeo dot com
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
18
19#include "qgssettings.h"
20
21#include <QDialog>
22#include <QDialogButtonBox>
23#include <QPushButton>
24
25#include "moc_qgsauthcertificatemanager.cpp"
26
28 : QWidget( parent )
29{
30 setupUi( this );
31 const QgsSettings settings;
32 tabWidget->setCurrentIndex( settings.value( QStringLiteral( "AuthCertEditorsSelectedTab" ), 0, QgsSettings::Section::Auth ).toInt() );
33}
34
36{
37 QgsSettings settings;
38 settings.setValue( QStringLiteral( "AuthCertEditorsSelectedTab" ), tabWidget->currentIndex(), QgsSettings::Section::Auth );
39}
40
41
43 : QDialog( parent )
44{
45 setWindowTitle( tr( "Certificate Manager" ) );
46 QVBoxLayout *layout = new QVBoxLayout( this );
47 layout->setContentsMargins( 6, 6, 6, 6 );
48
49 mCertEditors = new QgsAuthCertEditors( this );
50 layout->addWidget( mCertEditors );
51
52 QDialogButtonBox *buttonBox = new QDialogButtonBox( QDialogButtonBox::Close, Qt::Horizontal, this );
53 buttonBox->button( QDialogButtonBox::Close )->setDefault( true );
54 connect( buttonBox, &QDialogButtonBox::rejected, this, &QWidget::close );
55 layout->addWidget( buttonBox );
56
57 setLayout( layout );
58}
Wrapper widget to manage available certificate editors.
QgsAuthCertEditors(QWidget *parent=nullptr)
Construct a widget to contain various certificate editors.
~QgsAuthCertEditors() override
Destructor: store last selected tab.
QgsAuthCertManager(QWidget *parent=nullptr)
Construct a dialog wrapper for widget to manage available certificate editors.
Stores settings for use within QGIS.
Definition qgssettings.h:65
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
void setValue(const QString &key, const QVariant &value, QgsSettings::Section section=QgsSettings::NoSection)
Sets the value of setting key to value.