54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#ifndef QT_SETTINGSPORTS_HPP
|
|
#define QT_SETTINGSPORTS_HPP
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class SettingsPorts;
|
|
}
|
|
|
|
class SettingsPorts : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsPorts(QWidget *parent = nullptr);
|
|
~SettingsPorts();
|
|
|
|
void save();
|
|
private slots:
|
|
void on_checkBoxSerialPassThru4_clicked(bool checked);
|
|
|
|
private slots:
|
|
void on_checkBoxSerialPassThru3_clicked(bool checked);
|
|
|
|
private slots:
|
|
void on_checkBoxSerialPassThru2_clicked(bool checked);
|
|
|
|
private slots:
|
|
void on_pushButtonSerialPassThru4_clicked();
|
|
|
|
private slots:
|
|
void on_pushButtonSerialPassThru3_clicked();
|
|
|
|
private slots:
|
|
void on_pushButtonSerialPassThru2_clicked();
|
|
|
|
private slots:
|
|
void on_pushButtonSerialPassThru1_clicked();
|
|
|
|
private slots:
|
|
void on_checkBoxSerialPassThru1_clicked(bool checked);
|
|
|
|
private slots:
|
|
void on_checkBoxParallel3_stateChanged(int arg1);
|
|
void on_checkBoxParallel2_stateChanged(int arg1);
|
|
void on_checkBoxParallel1_stateChanged(int arg1);
|
|
|
|
void on_checkBoxParallel4_stateChanged(int arg1);
|
|
|
|
private:
|
|
Ui::SettingsPorts *ui;
|
|
};
|
|
|
|
#endif // QT_SETTINGSPORTS_HPP
|