Do not repeat keys for WinCE (problems with GAPI and virtual keyboard)

svn-id: r5251
This commit is contained in:
Nicolas Bacca 2002-10-22 22:35:07 +00:00
parent 3c2a409b11
commit c585fe7a37
2 changed files with 11 additions and 0 deletions

View File

@ -197,8 +197,15 @@ bool ListWidget::handleKeyDown(char key, int modifiers)
_scrollBar->draw();
}
#ifndef _WIN32_WCE
// not done on WinCE because keyboard is emulated and
// keyup is not generated
_currentKeyDown = key;
#endif
return handled;
}

View File

@ -134,10 +134,14 @@ void NewGui::runLoop()
case OSystem::EVENT_KEYDOWN:
activeDialog->handleKeyDown((byte)event.kbd.ascii, event.kbd.flags);
#ifndef _WIN32_WCE
// init continuous event stream
// not done on WinCE because keyboard is emulated and
// keyup is not generated
_currentKeyDown = event.kbd.ascii;
_currentKeyDownFlags = event.kbd.flags;
_keyRepeatTime = time + kKeyRepeatInitialDelay;
#endif
break;
case OSystem::EVENT_KEYUP:
activeDialog->handleKeyUp((byte)event.kbd.ascii, event.kbd.flags);