This commit is contained in:
2026-06-14 15:54:35 +08:00
commit 3caeb07e54
2804 changed files with 373231 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef T_POPUP_H
#define T_POPUP_H
#include "T_BasePage.h"
class ElaToolButton;
class ElaColorDialog;
class ElaCalendar;
class ElaCalendarPicker;
class ElaKeyBinder;
class T_Popup : public T_BasePage
{
Q_OBJECT
public:
Q_INVOKABLE explicit T_Popup(QWidget* parent = nullptr);
~T_Popup();
private:
ElaToolButton* _toolButton{nullptr};
ElaColorDialog* _colorDialog{nullptr};
ElaCalendar* _calendar{nullptr};
ElaCalendarPicker* _calendarPicker{nullptr};
ElaKeyBinder* _keyBinder{nullptr};
};
#endif// T_POPUP_H