2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2019-09-22 21:52:05 +00:00
|
|
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CGuiCompoundWidget : public CGuiWidget {
|
2016-03-16 03:37:51 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CGuiCompoundWidget(const CGuiWidgetParms& parms);
|
2019-08-09 12:45:18 +00:00
|
|
|
FourCC GetWidgetTypeID() const override { return FourCC(-1); }
|
2016-03-16 03:37:51 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
void OnVisibleChange() override;
|
|
|
|
void OnActiveChange() override;
|
2018-12-08 05:30:43 +00:00
|
|
|
virtual CGuiWidget* GetWorkerWidget(int id) const;
|
2016-03-10 03:47:37 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|