diff options
author | Stephen Kennedy | 2008-07-07 14:30:11 +0000 |
---|---|---|
committer | Stephen Kennedy | 2008-07-07 14:30:11 +0000 |
commit | 98f999f8e01c4752a771f1a8c6aec77b6efe3fb5 (patch) | |
tree | b56a61b845e25225491aea6a82180ae5903c32e4 /base | |
parent | 950b68be7b0e228addf92150abf0fbca1091e57e (diff) | |
download | scummvm-rg350-98f999f8e01c4752a771f1a8c6aec77b6efe3fb5.tar.gz scummvm-rg350-98f999f8e01c4752a771f1a8c6aec77b6efe3fb5.tar.bz2 scummvm-rg350-98f999f8e01c4752a771f1a8c6aec77b6efe3fb5.zip |
WIP: VirtualKeyboard updates:
- got keyboard bitmap displaying (no transparency as yet)
- simple event loop for VK to capture mouse clicks done (and untested code to process the clicks)
- pollEvent() method to deliver the virtual key press events to EventManager
svn-id: r32939
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/base/main.cpp b/base/main.cpp index 4ab486ee9b..88d9f3bab5 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -52,12 +52,6 @@ #include "gui/launcher.h" #endif -#define ___VK_TEST - -#if defined(___VK_TEST) -#include "gui/virtualKeyboard.h" -#endif - static bool launcherDialog(OSystem &system) { @@ -74,13 +68,6 @@ static bool launcherDialog(OSystem &system) { // Clear the main screen system.clearScreen(); -#if defined(___VK_TEST) - GUI::VirtualKeyboard *vk = new GUI::VirtualKeyboard(); - if (vk->loadKeyboardPack("test")) - printf("Successfully parsed test keyboard pack\n"); - -#endif - #if defined(_WIN32_WCE) CELauncherDialog dlg; #elif defined(__DC__) |