mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
33 lines
797 B
C++
33 lines
797 B
C++
|
#include "wizard/owncloudconnectionmethoddialog.h"
|
||
|
|
||
|
OwncloudConnectionMethodDialog::OwncloudConnectionMethodDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::OwncloudConnectionMethodDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
connect(ui->btnNoTLS, SIGNAL(clicked(bool)), this, SLOT(returnNoTLS()));
|
||
|
connect(ui->btnClientSideTLS, SIGNAL(clicked(bool)), this, SLOT(returnClientSideTLS()));
|
||
|
connect(ui->btnBack, SIGNAL(clicked(bool)), this, SLOT(returnBack()));
|
||
|
}
|
||
|
|
||
|
void OwncloudConnectionMethodDialog::returnNoTLS()
|
||
|
{
|
||
|
done(No_TLS);
|
||
|
}
|
||
|
|
||
|
void OwncloudConnectionMethodDialog::returnClientSideTLS()
|
||
|
{
|
||
|
done(Client_Side_TLS);
|
||
|
}
|
||
|
|
||
|
void OwncloudConnectionMethodDialog::returnBack()
|
||
|
{
|
||
|
done(Back);
|
||
|
}
|
||
|
|
||
|
OwncloudConnectionMethodDialog::~OwncloudConnectionMethodDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|