#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