2021-11-25 10:20:56 +01:00
|
|
|
#ifndef QT_SETTINGSSTORAGECONTROLLERS_HPP
|
|
|
|
|
#define QT_SETTINGSSTORAGECONTROLLERS_HPP
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class SettingsStorageControllers;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-19 08:49:04 -05:00
|
|
|
class SettingsStorageControllers : public QWidget {
|
2021-11-25 10:20:56 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit SettingsStorageControllers(QWidget *parent = nullptr);
|
|
|
|
|
~SettingsStorageControllers();
|
|
|
|
|
|
|
|
|
|
void save();
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void onCurrentMachineChanged(int machineId);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void on_pushButtonSCSI4_clicked();
|
|
|
|
|
void on_pushButtonSCSI3_clicked();
|
|
|
|
|
void on_pushButtonSCSI2_clicked();
|
|
|
|
|
void on_pushButtonSCSI1_clicked();
|
|
|
|
|
void on_comboBoxSCSI4_currentIndexChanged(int index);
|
|
|
|
|
void on_comboBoxSCSI3_currentIndexChanged(int index);
|
|
|
|
|
void on_comboBoxSCSI2_currentIndexChanged(int index);
|
|
|
|
|
void on_comboBoxSCSI1_currentIndexChanged(int index);
|
|
|
|
|
void on_pushButtonQuaternaryIDE_clicked();
|
|
|
|
|
void on_pushButtonTertiaryIDE_clicked();
|
|
|
|
|
void on_pushButtonFD_clicked();
|
|
|
|
|
void on_pushButtonHD_clicked();
|
2023-01-07 23:48:45 +01:00
|
|
|
void on_pushButtonCDInterface_clicked();
|
2021-11-25 10:20:56 +01:00
|
|
|
void on_checkBoxQuaternaryIDE_stateChanged(int arg1);
|
|
|
|
|
void on_checkBoxTertiaryIDE_stateChanged(int arg1);
|
|
|
|
|
void on_comboBoxFD_currentIndexChanged(int index);
|
|
|
|
|
void on_comboBoxHD_currentIndexChanged(int index);
|
2023-01-07 23:48:45 +01:00
|
|
|
void on_comboBoxCDInterface_currentIndexChanged(int index);
|
2021-11-25 10:20:56 +01:00
|
|
|
|
2024-03-06 15:10:51 +06:00
|
|
|
void on_checkBoxLbaEnhancer_stateChanged(int arg1);
|
|
|
|
|
|
|
|
|
|
void on_pushButtonConfigureLbaEnhancer_clicked();
|
|
|
|
|
|
2021-11-25 10:20:56 +01:00
|
|
|
private:
|
|
|
|
|
Ui::SettingsStorageControllers *ui;
|
2022-11-19 08:49:04 -05:00
|
|
|
int machineId = 0;
|
2021-11-25 10:20:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // QT_SETTINGSSTORAGECONTROLLERS_HPP
|