40 lines
766 B
C
Raw Normal View History

2026-02-11 00:53:51 +08:00
#ifndef DIALOGDEVICECONFIG_H
#define DIALOGDEVICECONFIG_H
#include <QDialog>
namespace Ui {
class DialogDeviceConfig;
}
class BagThreadPositionPresenter;
/**
* @brief
*
* IPIP
*/
class DialogDeviceConfig : public QDialog
{
Q_OBJECT
public:
explicit DialogDeviceConfig(QWidget *parent = nullptr);
~DialogDeviceConfig();
void SetPresenter(BagThreadPositionPresenter* presenter);
private slots:
void on_btnSave_clicked();
void on_btnCancel_clicked();
private:
void loadConfig();
private:
Ui::DialogDeviceConfig* ui;
BagThreadPositionPresenter* m_presenter = nullptr;
};
#endif // DIALOGDEVICECONFIG_H