Home
last modified time | relevance | path

Searched refs:ControlBase (Results 1 – 10 of 10) sorted by relevance

/CTR-SDK-4.2.7-SampleDemos/common/include/scene/
DGuiControlManager.h27 …typedef void (*ControlEventCallback)(ControlEvent event, ControlBase* pControl, s16 x, s16 y, void…
32 typedef List<ControlBase*> ControlList;
55 void Add(ControlBase* pControl);
69 ControlBase* FindBy(u32 id);
76 List<ControlBase*>* GetList();
DGuiControlBase.h30 class ControlBase
48ControlBase(ControlType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, v…
53 virtual ~ControlBase();
DGuiLabel.h26 class Label : public ControlBase
DGuiButton.h26 class Button : public ControlBase
DTenKey.h131 …static void MyControlEventCallback(scene::ControlEvent event, scene::ControlBase* pControl, s16 x,…
/CTR-SDK-4.2.7-SampleDemos/common/libraries/scene/
DGuiControlBase.cpp38 ControlBase::ControlBase(ControlType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar… in ControlBase() function in scene::ControlBase
62 ControlBase::~ControlBase() in ~ControlBase()
68 void ControlBase::SetText(const wchar_t* pText) in SetText()
110 void ControlBase::SetFormattedText(const wchar_t* pFormat, ...) in SetFormattedText()
127 s32 ControlBase::CalculateTextX(s32 offsetL, s32 offsetR) in CalculateTextX()
156 s32 ControlBase::CalculateTextY(s32 offset) in CalculateTextY()
DGuiControlManager.cpp40 void ControlManager::Add(ControlBase* pControl) in Add()
72 ControlBase* ControlManager::FindBy(u32 id) in FindBy()
DGuiLabel.cpp23 : ControlBase(CONTROL_TYPE_LABEL, id, x, y, width, height, pText, pExtraData, fontScale) in Label()
DGuiButton.cpp23 : ControlBase(CONTROL_TYPE_BUTTON, id, x, y, width, height, pText, pExtraData, fontScale) in Button()
DTenKey.cpp238 void TenKey::MyControlEventCallback(scene::ControlEvent event, scene::ControlBase* pControl, s16 x,… in MyControlEventCallback()