2016-03-11 22:50:15 +00:00
|
|
|
#ifndef __URDE_CGUIHEADWIDGET_HPP__
|
|
|
|
#define __URDE_CGUIHEADWIDGET_HPP__
|
|
|
|
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CGuiHeadWidget : public CGuiWidget
|
|
|
|
{
|
|
|
|
public:
|
2017-01-29 03:58:16 +00:00
|
|
|
FourCC GetWidgetTypeID() const { return FOURCC('HWIG'); }
|
2016-03-11 22:50:15 +00:00
|
|
|
CGuiHeadWidget(const CGuiWidgetParms& parms);
|
2017-01-22 01:40:12 +00:00
|
|
|
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
|
|
|
|
|
|
|
|
std::shared_ptr<CGuiHeadWidget> shared_from_this()
|
|
|
|
{ return std::static_pointer_cast<CGuiHeadWidget>(CGuiObject::shared_from_this()); }
|
2016-03-11 22:50:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CGUIHEADWIDGET_HPP__
|