2022-11-07 17:06:11 +00:00
|
|
|
#ifndef _CGUICOMPOUNDWIDGET
|
|
|
|
#define _CGUICOMPOUNDWIDGET
|
|
|
|
|
|
|
|
#include "GuiSys/CGuiWidget.hpp"
|
|
|
|
|
|
|
|
class CGuiCompoundWidget : public CGuiWidget {
|
|
|
|
public:
|
2023-10-22 05:08:46 +00:00
|
|
|
~CGuiCompoundWidget();
|
2023-02-06 17:01:01 +00:00
|
|
|
FourCC GetWidgetTypeID() const override { return -1; }
|
2022-11-07 17:06:11 +00:00
|
|
|
|
2023-02-06 17:01:01 +00:00
|
|
|
void OnVisible() override;
|
|
|
|
void OnActivate() override;
|
2022-11-07 17:06:11 +00:00
|
|
|
virtual CGuiWidget* GetWorkerWidget(int id) const;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CGUICOMPOUNDWIDGET
|