2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CGuiCompoundWidget : public CGuiWidget
|
|
|
|
{
|
2016-03-16 03:37:51 +00:00
|
|
|
public:
|
|
|
|
CGuiCompoundWidget(const CGuiWidgetParms& parms);
|
2016-03-16 20:49:35 +00:00
|
|
|
FourCC GetWidgetTypeID() const {return FourCC(-1);}
|
2016-03-16 03:37:51 +00:00
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
void OnVisibleChange();
|
|
|
|
void OnActiveChange();
|
2017-01-09 03:44:00 +00:00
|
|
|
virtual CGuiWidget* GetWorkerWidget(int id) const;
|
2016-03-10 03:47:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|