|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2014-2016 Markus Prasser
|
|
|
|
|
* Copyright 2014-2018 Markus Prasser, Tobias Weiss
|
|
|
|
|
*
|
|
|
|
|
* This file is part of Labcontrol.
|
|
|
|
|
*
|
|
|
|
@ -17,14 +17,14 @@
|
|
|
|
|
* along with Labcontrol. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
#include "localzleafstarter.h"
|
|
|
|
|
#include "ui_localzleafstarter.h"
|
|
|
|
|
#include "Lib/settings.h"
|
|
|
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
extern std::unique_ptr<lc::Settings> settings;
|
|
|
|
|
|
|
|
|
|
lc::LocalzLeafStarter::LocalzLeafStarter(QWidget *argParent) :
|
|
|
|
@ -48,15 +48,18 @@ lc::LocalzLeafStarter::LocalzLeafStarter( QWidget *argParent ) :
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lc::LocalzLeafStarter::~LocalzLeafStarter() {
|
|
|
|
|
lc::LocalzLeafStarter::~LocalzLeafStarter()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void lc::LocalzLeafStarter::on_PBStartLocalzLeaf_clicked() {
|
|
|
|
|
void lc::LocalzLeafStarter::on_PBStartLocalzLeaf_clicked()
|
|
|
|
|
{
|
|
|
|
|
if (ui->CBzLeafVersion->currentIndex() == 0) {
|
|
|
|
|
QMessageBox::information(this, tr("No z-Tree version chosen"),
|
|
|
|
|
tr( "The was not chosen a z-Tree version, yet. This is"
|
|
|
|
|
" mandatory, so please set one" ) , QMessageBox::Ok );
|
|
|
|
|
tr("The was not chosen a z-Tree version, yet."
|
|
|
|
|
" This is mandatory, so please set one"),
|
|
|
|
|
QMessageBox::Ok);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -64,6 +67,7 @@ void lc::LocalzLeafStarter::on_PBStartLocalzLeaf_clicked() {
|
|
|
|
|
settings->SetLocalzLeafSize(ui->LELocalzLeafSize->text());
|
|
|
|
|
|
|
|
|
|
//Emit start local z-Leaf request to main window
|
|
|
|
|
emit LocalzLeafRequested( ui->LEzLeafName->text(), ui->CBzLeafVersion->currentText(),
|
|
|
|
|
emit LocalzLeafRequested(ui->LEzLeafName->text(),
|
|
|
|
|
ui->CBzLeafVersion->currentText(),
|
|
|
|
|
ui->SBzLeafPort->value());
|
|
|
|
|
}
|
|
|
|
|