36 lines
655 B
C++
36 lines
655 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include "workThread.h"
|
|
#include <QSettings>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
void on_pushButton_start_clicked();
|
|
void on_pushButton_stop_clicked();
|
|
void on_pushButton_browsegps_clicked();
|
|
void on_pushButton_browsemotion_clicked();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
WorkThread workThread;
|
|
QSettings *psettings;
|
|
void loadSetting();
|
|
void saveSetting();
|
|
};
|
|
#endif // MAINWINDOW_H
|