2024-10-31 22:02:32 +08:00
|
|
|
|
#ifndef MAINWINDOW_H
|
2024-10-31 17:47:16 +08:00
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class MainWindow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow {
|
2024-10-31 22:02:32 +08:00
|
|
|
|
Q_OBJECT
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
|
|
|
|
public:
|
2024-10-31 22:02:32 +08:00
|
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
|
|
|
~MainWindow();
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
|
|
|
|
private slots:
|
2024-10-31 22:02:32 +08:00
|
|
|
|
void on_pushButton_close_clicked();
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
2024-10-31 22:02:32 +08:00
|
|
|
|
void on_pushButton_max_clicked();
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
2024-10-31 22:02:32 +08:00
|
|
|
|
void on_pushButton_min_clicked();
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
|
|
|
|
private:
|
2024-10-31 22:02:32 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief calendarLoopPlay 时间轮播
|
|
|
|
|
*/
|
|
|
|
|
void calendarLoopPlay();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief addcoalDistributChart 添加煤流分布柱状图
|
|
|
|
|
*/
|
|
|
|
|
void addcoalDistributChart();
|
2024-10-31 17:47:16 +08:00
|
|
|
|
|
|
|
|
|
private:
|
2024-10-31 22:02:32 +08:00
|
|
|
|
Ui::MainWindow *ui;
|
2024-10-31 17:47:16 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|