mirror of https://github.com/AxioDL/metaforce.git
23 lines
451 B
C++
23 lines
451 B
C++
#ifndef __URDE_CGUICOMPOUNDWIDGET_HPP__
|
|
#define __URDE_CGUICOMPOUNDWIDGET_HPP__
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CGuiCompoundWidget : public CGuiWidget
|
|
{
|
|
public:
|
|
CGuiCompoundWidget(const CGuiWidgetParms& parms);
|
|
FourCC GetWidgetTypeID() const {return FourCC(-1);}
|
|
|
|
void OnVisibleChange();
|
|
void OnActiveChange();
|
|
virtual CGuiWidget* GetWorkerWidget(int id) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CGUICOMPOUNDWIDGET_HPP__
|