metaforce/Runtime/GuiSys/CGuiGroup.hpp

30 lines
715 B
C++
Raw Normal View History

2016-03-11 00:23:16 +00:00
#ifndef __URDE_CGUIGROUP_HPP__
#define __URDE_CGUIGROUP_HPP__
#include "CGuiCompoundWidget.hpp"
namespace urde
{
class CGuiGroup : public CGuiCompoundWidget
{
u32 xb8_workerCount = 0;
int xbc_selectedWorker;
bool xc0_b;
2016-03-11 00:23:16 +00:00
public:
2016-03-16 03:37:51 +00:00
CGuiGroup(const CGuiWidgetParms& parms, int defaultWorker, bool b);
2016-03-16 20:49:35 +00:00
FourCC GetWidgetTypeID() const {return FOURCC('GRUP');}
2016-03-16 03:37:51 +00:00
void SelectWorkerWidget(int workerId, bool setActive, bool setVisible);
CGuiWidget* GetSelectedWidget();
bool AddWorkerWidget(CGuiWidget* worker);
void OnActiveChange();
2016-03-16 03:37:51 +00:00
static CGuiGroup* Create(CGuiFrame* frame, CInputStream& in, bool flag);
2016-03-11 00:23:16 +00:00
static void LoadWidgetFnMap();
};
}
#endif // __URDE_CGUIGROUP_HPP__