2024-10-10 16:59:51 +08:00
|
|
|
#ifndef DVIEMAINWINDOW_H
|
|
|
|
|
#define DVIEMAINWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class dvieMainWindow;
|
|
|
|
|
}
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2024-11-05 15:17:03 +08:00
|
|
|
class DashboardFrame;
|
2024-10-10 16:59:51 +08:00
|
|
|
|
|
|
|
|
class DvieMainWindow : public QMainWindow
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DvieMainWindow(QWidget *parent = nullptr);
|
|
|
|
|
~DvieMainWindow();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::dvieMainWindow* ui;
|
2024-11-05 15:17:03 +08:00
|
|
|
DashboardFrame* m_pDashboardFrame;
|
2024-10-10 16:59:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|