This commit is contained in:
Misaki
2025-12-04 19:11:29 +08:00
commit bb600bbbc4
2741 changed files with 364700 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef T_HOME_H
#define T_HOME_H
#include "T_BasePage.h"
class ElaMenu;
class T_Home : public T_BasePage
{
Q_OBJECT
public:
Q_INVOKABLE explicit T_Home(QWidget* parent = nullptr);
~T_Home();
Q_SIGNALS:
Q_SIGNAL void elaScreenNavigation();
Q_SIGNAL void elaBaseComponentNavigation();
Q_SIGNAL void elaSceneNavigation();
Q_SIGNAL void elaCardNavigation();
Q_SIGNAL void elaIconNavigation();
protected:
virtual void mouseReleaseEvent(QMouseEvent* event);
private:
ElaMenu* _homeMenu{nullptr};
};
#endif // T_HOME_H