mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 07:47:40 +00:00
22
include/GuiSys/CGuiGroup.hpp
Normal file
22
include/GuiSys/CGuiGroup.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _CGUIGROUP
|
||||
#define _CGUIGROUP
|
||||
|
||||
#include "GuiSys/CGuiCompoundWidget.hpp"
|
||||
|
||||
class CGuiGroup : public CGuiCompoundWidget {
|
||||
public:
|
||||
FourCC GetWidgetTypeID() const override { return 'GRUP'; }
|
||||
|
||||
void SelectWorkerWidget(int workerId, bool setActive, bool setVisible);
|
||||
CGuiWidget* GetSelectedWidget();
|
||||
const CGuiWidget* GetSelectedWidget() const;
|
||||
bool AddWorkerWidget(CGuiWidget* worker) override;
|
||||
void OnActiveChange() override;
|
||||
|
||||
private:
|
||||
uint xb8_workerCount;
|
||||
int xbc_selectedWorker;
|
||||
bool xc0_b;
|
||||
};
|
||||
|
||||
#endif // _CGUIGROUP
|
||||
Reference in New Issue
Block a user