emsApplication/applications/EmsShower/formserialportsettingdialog.h

33 lines
595 B
C
Raw Normal View History

2025-03-05 13:37:23 +08:00
#ifndef FORMSERIALPORTSETTINGDIALOG_H
#define FORMSERIALPORTSETTINGDIALOG_H
#include <QDialog>
#include <QStringList>
namespace Ui
{
class FormSerialPortSettingDialog;
}
class FormSerialPortSettingDialog : public QDialog
{
Q_OBJECT
public:
explicit FormSerialPortSettingDialog(QWidget *parent = nullptr);
~FormSerialPortSettingDialog();
private:
Ui::FormSerialPortSettingDialog *ui;
protected:
void InitializeUi();
QStringList get_avail_sp_() noexcept;
private slots:
void onOkClicked();
void onCancelClicked();
};
#endif // FORMSERIALPORTSETTINGDIALOG_H