Lines Matching refs:m_controlManager
107 scene::AddYesNoButtons(&m_controlManager, CONTROL_ID_OK, CONTROL_ID_CANCEL, L"OK", L"Cancel"); in Initialize()
109 m_controlManager.Add(new scene::Button(CONTROL_ID_BACK, 258, 58, 60, 30, backIcon)); in Initialize()
110 m_controlManager.Add(new scene::Button(CONTROL_ID_CLEAR, 2, 58, 60, 30, L"CLR")); in Initialize()
111 m_controlManager.Add(new scene::Button(1, 66, 58, 60, 30, L"1")); in Initialize()
112 m_controlManager.Add(new scene::Button(2, 130, 58, 60, 30, L"2")); in Initialize()
113 m_controlManager.Add(new scene::Button(3, 194, 58, 60, 30, L"3")); in Initialize()
114 m_controlManager.Add(new scene::Button(4, 66, 92, 60, 30, L"4")); in Initialize()
115 m_controlManager.Add(new scene::Button(5, 130, 92, 60, 30, L"5")); in Initialize()
116 m_controlManager.Add(new scene::Button(6, 194, 92, 60, 30, L"6")); in Initialize()
117 m_controlManager.Add(new scene::Button(7, 66, 126, 60, 30, L"7")); in Initialize()
118 m_controlManager.Add(new scene::Button(8, 130, 126, 60, 30, L"8")); in Initialize()
119 m_controlManager.Add(new scene::Button(9, 194, 126, 60, 30, L"9")); in Initialize()
120 m_controlManager.Add(new scene::Button(0, 130, 160, 60, 30, L"0")); in Initialize()
137 m_controlManager.Add(CreateInputBox(id, x, L"")); in Initialize()
142 m_controlManager.Add(CreateHyphen(x)); in Initialize()
153 m_controlManager.RegisterControlEventCallback(TenKey::MyControlEventCallback, this); in Initialize()
171 m_controlManager.Clear(); in Finalize()
177 m_controlManager.Update(); in Update()
183 m_controlManager.Draw(); in Draw()
205 m_controlManager.FindBy(CONTROL_ID_OK)->SetState(scene::CONTROL_STATE_DEFAULT); in Reset()
210 m_controlManager.FindBy(CONTROL_ID_OK)->SetState(scene::CONTROL_STATE_DISABLED); in Reset()
218 m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + i)->SetText(L"*"); in Reset()
225 m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + i)->SetText(text); in Reset()
273 … pTenKey->m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + pTenKey->m_cursor)->SetText(L""); in MyControlEventCallback()
278 … pTenKey->m_controlManager.FindBy(CONTROL_ID_OK)->SetState(scene::CONTROL_STATE_DISABLED); in MyControlEventCallback()
291 … pTenKey->m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + pTenKey->m_cursor)->SetText(L"*"); in MyControlEventCallback()
298 … pTenKey->m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + pTenKey->m_cursor)->SetText(text); in MyControlEventCallback()
307 … pTenKey->m_controlManager.FindBy(CONTROL_ID_OK)->SetState(scene::CONTROL_STATE_DEFAULT); in MyControlEventCallback()