use one line for header short description
 do not use "#pragma once"
This commit is contained in:
Glenn Maynard
2004-11-27 02:33:03 +00:00
parent ccf3cc79e4
commit a207a57116
2 changed files with 14 additions and 14 deletions
+10 -3
View File
@@ -1,3 +1,10 @@
/*
* Commands are mapped as follows:
* left - delete
* right - move cursor right (with space as default character)
* up/down - change right most character to next/previous character
*/
#include "global.h"
#include "VirtualKeyboard.h"
@@ -12,12 +19,12 @@ VirtualKeyboard::~VirtualKeyboard()
{
}
void VirtualKeyboard::Reset(VirtualKeyboardMode mode)
void VirtualKeyboard::Reset( VirtualKeyboardMode mode )
{
currentMode = mode;
}
int VirtualKeyboard::Translate(const DeviceInput& DeviceI, const MenuInput &MenuI, const wstring &cur_string, bool *nextChar)
int VirtualKeyboard::Translate( const DeviceInput& DeviceI, const MenuInput &MenuI, const wstring &cur_string, bool *nextChar )
{
*nextChar = false;
MenuButton button = MenuI.button;
@@ -216,4 +223,4 @@ int VirtualKeyboard::Translate(const DeviceInput& DeviceI, const MenuInput &Menu
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
*/