diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-06 16:57:41 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-06 16:57:41 +0100 |
commit | 9bbd68f357f3cab1be0031bd6f72e52143b2a918 (patch) | |
tree | 7168f61b0add306b3e07b5c63deacebd694c3ed6 /menuitems.h | |
parent | 72e93b614bac42cd4a142b10d47e5b1673f19800 (diff) | |
download | vdr-9bbd68f357f3cab1be0031bd6f72e52143b2a918.tar.gz vdr-9bbd68f357f3cab1be0031bd6f72e52143b2a918.tar.bz2 |
Implemented letter input via numeric keys (Easy
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h index ce252b1e..bfaf4362 100644 --- a/menuitems.h +++ b/menuitems.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.h 1.14 2006/01/06 14:19:12 kls Exp $ + * $Id: menuitems.h 1.15 2006/01/06 15:16:25 kls Exp $ */ #ifndef __MENUITEMS_H @@ -82,6 +82,9 @@ private: char *allowed; int pos; bool insert, newchar, uppercase; + const char *charMap; + const char *currentChar; + eKeys lastKey; void SetHelpKeys(void); virtual void Set(void); char Inc(char c, bool Up); |