Newer
Older
PhaseMeasure / SetConfig.h
tanyue on 30 Jun 2023 527 bytes 20230630 适配串口
#ifndef SETCONFIG_H
#define SETCONFIG_H

#include <QDialog>
#include "common/utils/SettingConfig.h"
namespace Ui {
class SetConfig;
}

class SetConfig : public QDialog
{
    Q_OBJECT

public:
    explicit SetConfig(QWidget *parent = nullptr);
    ~SetConfig();

    void init();
private slots:
    void on_buttonBox_accepted();

    void on_comTypeSelect_currentIndexChanged(int index);
    void onLogPathInputDoubleClicked();

private:
    Ui::SetConfig *ui;

    void showConfigItemByComType();

};

#endif // SETCONFIG_H