#ifndef FLYSIMULATEDDLG_H #define FLYSIMULATEDDLG_H //MSVC编译器界面显示乱码问题 #if _MSC_VER >= 1600 #pragma execution_character_set("utf-8") #endif #include namespace Ui { class FlySimulatedDlg; } class FlySimulatedDlg : public QDialog { Q_OBJECT public: explicit FlySimulatedDlg(QWidget *parent = nullptr); ~FlySimulatedDlg(); private slots: void on_openFlyFileBtn_clicked(); private: void spinBoxInit(); private: Ui::FlySimulatedDlg *ui; }; #endif // FLYSIMULATEDDLG_H