You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
530 B
C++
34 lines
530 B
C++
#ifndef FLYSIMULATEDDLG_H
|
|
#define FLYSIMULATEDDLG_H
|
|
|
|
//MSVC编译器界面显示乱码问题
|
|
#if _MSC_VER >= 1600
|
|
#pragma execution_character_set("utf-8")
|
|
#endif
|
|
|
|
#include <QDialog>
|
|
|
|
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
|