| /CTR-SDK-4.2.7-SampleDemos/common/libraries/scene/ |
| D | GuiControlBase.cpp | 21 s32 wstrlen(const wchar_t* pText) in wstrlen() argument 25 while (pText[length] != '\0') in wstrlen() 38 …rolType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,… in ControlBase() argument 58 SetText(pText); in ControlBase() 68 void ControlBase::SetText(const wchar_t* pText) in SetText() argument 70 if (pText) in SetText() 72 s32 length = wstrlen(pText); in SetText() 83 memcpy(m_pText, pText, length * sizeof (m_pText[0])); in SetText()
|
| D | Util.cpp | 42 u32 wstrlen(const wchar_t* pText) in wstrlen() argument 46 while (*pText++ != '\0') in wstrlen() 55 u32 wtoi(const wchar_t* pText) in wtoi() argument 60 while (*pText != '\0' && *pText >= '0' && *pText <= '9') in wtoi() 62 value = value * 10 + (*pText - '0'); in wtoi() 63 pText++; in wtoi()
|
| D | GuiLabel.cpp | 22 Label::Label(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData, f… in Label() argument 23 : ControlBase(CONTROL_TYPE_LABEL, id, x, y, width, height, pText, pExtraData, fontScale) in Label()
|
| D | GuiButton.cpp | 22 Button::Button(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,… in Button() argument 23 : ControlBase(CONTROL_TYPE_BUTTON, id, x, y, width, height, pText, pExtraData, fontScale) in Button()
|
| D | TenKey.cpp | 43 scene::Label* CreateInputBox(u32 id, u16 x, const wchar_t* pText) in CreateInputBox() argument 46 scene::Label* pLabel = new scene::Label(id, x, 8, BOX_SIZE, 36, pText); in CreateInputBox()
|
| /CTR-SDK-4.2.7-SampleDemos/common/include/scene/ |
| D | Util.h | 30 u32 wstrlen(const wchar_t* pText); 35 u32 wtoi(const wchar_t* pText);
|
| D | GuiLabel.h | 40 …Label(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText = NULL, void* pExtraData =…
|
| D | GuiButton.h | 40 …Button(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText = NULL, void* pExtraData …
|
| D | GuiControlBase.h | 48 …rolType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,… 226 void SetText(const wchar_t* pText);
|