| 12345678910111213141516171819202122232425262728293031323334 |
- #ifndef MAINWINDOW_H
- #define MAINWINDOW_H
- #include <QMainWindow>
- #include "configinfo.h"
- #include "handle/database.h"
- 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_pushAuto_clicked();
- void on_pushList_clicked();
- private:
- void backMenu();
- void pageStatusChange(const ProjectInfo & info, int status);
- void changedjmb(QImage image);
- Database database;
- private:
- Ui::MainWindow *ui;
- };
- #endif // MAINWINDOW_H
|