Lines Matching refs:m_cursor
79 m_cursor = 0; in TenKey()
168 m_cursor = 0; in Finalize()
189 m_cursor = 0; in Reset()
198 m_cursor = scene::wstrlen(pInitial); in Reset()
199 … memcpy(m_pInput, pInitial, (m_cursor > m_length ? m_length : m_cursor) * sizeof (m_pInput[0])); in Reset()
202 if (m_cursor >= m_numLowestChars) in Reset()
269 if (pTenKey->m_cursor > 0) in MyControlEventCallback()
272 pTenKey->m_pInput[--pTenKey->m_cursor] = '\0'; in MyControlEventCallback()
273 … pTenKey->m_controlManager.FindBy(CONTROL_ID_INPUT_BASE + pTenKey->m_cursor)->SetText(L""); in MyControlEventCallback()
275 if (pTenKey->m_cursor < pTenKey->m_numLowestChars) in MyControlEventCallback()
287 if (pTenKey->m_cursor < pTenKey->m_length) 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()
301 pTenKey->m_pInput[pTenKey->m_cursor++] = '0' + controlId; in MyControlEventCallback()
304 if (pTenKey->m_cursor >= pTenKey->m_numLowestChars) in MyControlEventCallback()