-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathRemoteControlTab.cpp
110 lines (94 loc) · 2.77 KB
/
RemoteControlTab.cpp
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//
// RemoteControlTab.cpp: description
// Copyright (C) 2023 Gonzalo José Carracedo Carballal
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program. If not, see
// <http://www.gnu.org/licenses/>
//
#include "RemoteControlTab.h"
#include "ui_RemoteControlTab.h"
#include <SuWidgetsHelpers.h>
using namespace SigDigger;
void
RemoteControlTab::save()
{
this->rcConfig.enabled = this->ui->enableCheck->isChecked();
this->rcConfig.host = this->ui->hostEdit->text().toStdString();
this->rcConfig.port = SCAST(unsigned, this->ui->portSpin->value());
}
void
RemoteControlTab::refreshUi()
{
this->ui->enableCheck->setChecked(this->rcConfig.enabled);
this->ui->hostEdit->setText(QString::fromStdString(this->rcConfig.host));
this->ui->portSpin->setValue(this->ui->portSpin->value());
this->ui->hostEdit->setEnabled(this->ui->enableCheck->isChecked());
this->ui->portSpin->setEnabled(this->ui->enableCheck->isChecked());
}
void
RemoteControlTab::setRemoteControlConfig(RemoteControlConfig const &config)
{
this->rcConfig = config;
this->refreshUi();
this->modified = false;
}
RemoteControlConfig
RemoteControlTab::getRemoteControlConfig() const
{
return this->rcConfig;
}
bool
RemoteControlTab::hasChanged() const
{
return this->modified;
}
void
RemoteControlTab::connectAll()
{
connect(
this->ui->enableCheck,
SIGNAL(toggled(bool)),
this,
SLOT(onConfigChanged()));
connect(
this->ui->hostEdit,
SIGNAL(textEdited(QString)),
this,
SLOT(onConfigChanged()));
connect(
this->ui->portSpin,
SIGNAL(valueChanged(int)),
this,
SLOT(onConfigChanged()));
}
RemoteControlTab::RemoteControlTab(QWidget *parent) :
ConfigTab(parent, "Remote control"),
ui(new Ui::RemoteControlTab)
{
ui->setupUi(this);
this->connectAll();
}
RemoteControlTab::~RemoteControlTab()
{
delete ui;
}
////////////////////////////////// Slots ///////////////////////////////////////
void
RemoteControlTab::onConfigChanged()
{
this->ui->hostEdit->setEnabled(this->ui->enableCheck->isChecked());
this->ui->portSpin->setEnabled(this->ui->enableCheck->isChecked());
this->modified = true;
emit changed();
}