mainwindow.h 526 B

123456789101112131415161718192021222324252627282930
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include "configinfo.h"
  5. QT_BEGIN_NAMESPACE
  6. namespace Ui { class MainWindow; }
  7. QT_END_NAMESPACE
  8. class MainWindow : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. MainWindow(QWidget *parent = nullptr);
  13. ~MainWindow();
  14. private slots:
  15. void on_pushAuto_clicked();
  16. private:
  17. void backMenu();
  18. void pageStatusChange(const ProjectInfo & info, int status);
  19. void changedjmb(QImage image);
  20. private:
  21. Ui::MainWindow *ui;
  22. };
  23. #endif // MAINWINDOW_H