2021-11-25 10:20:56 +01:00
|
|
|
#ifndef QT_SETTINGSPORTS_HPP
|
|
|
|
|
#define QT_SETTINGSPORTS_HPP
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class SettingsPorts;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-19 08:49:04 -05:00
|
|
|
class SettingsPorts : public QWidget {
|
2021-11-25 10:20:56 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit SettingsPorts(QWidget *parent = nullptr);
|
|
|
|
|
~SettingsPorts();
|
|
|
|
|
|
|
|
|
|
void save();
|
2024-06-29 19:11:37 -04:00
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
private slots:
|
|
|
|
|
void on_checkBoxSerialPassThru7_clicked(bool checked);
|
|
|
|
|
void on_checkBoxSerialPassThru6_clicked(bool checked);
|
|
|
|
|
void on_checkBoxSerialPassThru5_clicked(bool checked);
|
|
|
|
|
#endif
|
2023-02-14 20:37:58 -05:00
|
|
|
void on_checkBoxSerialPassThru4_clicked(bool checked);
|
|
|
|
|
void on_checkBoxSerialPassThru3_clicked(bool checked);
|
|
|
|
|
void on_checkBoxSerialPassThru2_clicked(bool checked);
|
2024-06-29 19:11:37 -04:00
|
|
|
void on_checkBoxSerialPassThru1_clicked(bool checked);
|
|
|
|
|
|
|
|
|
|
private slots:
|
2025-01-06 22:40:18 -05:00
|
|
|
#if 0
|
2024-06-29 19:11:37 -04:00
|
|
|
void on_pushButtonSerialPassThru7_clicked();
|
|
|
|
|
void on_pushButtonSerialPassThru6_clicked();
|
|
|
|
|
void on_pushButtonSerialPassThru5_clicked();
|
2025-01-06 22:40:18 -05:00
|
|
|
#endif
|
2023-02-14 20:37:58 -05:00
|
|
|
void on_pushButtonSerialPassThru4_clicked();
|
|
|
|
|
void on_pushButtonSerialPassThru3_clicked();
|
|
|
|
|
void on_pushButtonSerialPassThru2_clicked();
|
|
|
|
|
void on_pushButtonSerialPassThru1_clicked();
|
|
|
|
|
|
|
|
|
|
private slots:
|
2024-06-29 19:11:59 -04:00
|
|
|
void on_checkBoxParallel4_stateChanged(int arg1);
|
2021-11-25 10:20:56 +01:00
|
|
|
void on_checkBoxParallel3_stateChanged(int arg1);
|
|
|
|
|
void on_checkBoxParallel2_stateChanged(int arg1);
|
|
|
|
|
void on_checkBoxParallel1_stateChanged(int arg1);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::SettingsPorts *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // QT_SETTINGSPORTS_HPP
|