27 lines
560 B
C++
27 lines
560 B
C++
#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
|