Home | History | Annotate | Download | only in app

Lines Matching refs:keyCode

280  * Handle <button keyCode="zzz" src="zzz" x="123" y="123"/> and
281 * <button keyCode="zzz"/>.
288 const char* keyCode;
300 * Only keyCode is mandatory. If they specify "src", then "x" and "y"
304 keyCode = pElem->Attribute("keyCode");
305 if (keyCode == NULL)
317 tmpButton.Create(keyCode);
326 tmpButton.Create(keyCode, fileName, x, y);
334 fprintf(stderr, "SimCFG: <button> requires keycode and may have src/x/y\n");
416 PhoneButton* PhoneView::FindButtonByKey(int32_t keyCode)
421 if ((*ii).GetKeyCode() == keyCode)