diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2005-09-25 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2005-09-25 18:00:00 +0200 |
commit | c16bbf7422f37108580e559ca849e5aafbdac672 (patch) | |
tree | 8ee8d17a971364a9231a83abf5bcff4e30bed9b3 /menuitems.c | |
parent | d5c85f5ff84ffea666c63eca5dbe04632283cb04 (diff) | |
download | vdr-patch-lnbsharing-c16bbf7422f37108580e559ca849e5aafbdac672.tar.gz vdr-patch-lnbsharing-c16bbf7422f37108580e559ca849e5aafbdac672.tar.bz2 |
Version 1.3.33vdr-1.3.33
- Fixed two errors in 'newplugin' (thanks to Alexander Rieger).
- Fixed converting arbitrarily formatted summary.vdr files (thanks to Thomas Günther).
- Fixed handling color buttons in cMenuEditStrItem (thanks to Alexander Rieger).
- Added cChannel::LinkChannels() and cChannel::RefChannel() (suggested by Helmut Auer).
Note that VDR itself doesn't actually use the linked channels, yet, so there is
no guarantee that this really works under all circumstances.
- Added a missing include statement to the 'sky' plugin (thanks to Alfred Zastrow
for reporting this one).
- Fixed handling key macros with keys after @plugin (thanks to Rolf Ahrenberg for
reporting this one).
- Fixed error handling in cCiTransportConnection::RecvTPDU() (thanks to Georg Acher
for reporting this one).
- Removed obsolete 'shift' code in device.[hc].
- The SVDRP command DELR no longer triggers a complete reload of the global Recordings
list, but rather deletes that particular entry.
- The list of recordings is now read in a separate thread, resulting in a faster
startup if there are a great many of recordings, or the disk(s) have to spin up.
If the Recordings menu is opened while the list of recordings is still being read,
the menu will be updated accordingly.
Plugins that access the global Recordings variable should lock the thread
by putting something like
cThreadLock RecordingsLock(&Recordings);
into the respective code block. Thanks to Carsten Koch for his help in testing
and debugging this.
- The 'new' indicator in the Recordings menu is now kept up-to-date (thanks to
Thomas Günther).
- Updated the Romanian OSD texts (thanks to Lucian Muresan).
- Updated the Russian OSD texts (thanks to Oleg Roitburd).
- The '.update' file in the video directory is now touched when a recording is
added or deleted, so that other VDR instances can update their lists (thanks to
Alexander Rieger).
- Made the function ExchangeChars() public (suggested by Lucian Muresan).
Diffstat (limited to 'menuitems.c')
-rw-r--r-- | menuitems.c | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/menuitems.c b/menuitems.c index 18b001e..1f2cc14 100644 --- a/menuitems.c +++ b/menuitems.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.c 1.22 2005/03/19 15:33:34 kls Exp $ + * $Id: menuitems.c 1.23 2005/09/17 09:36:31 kls Exp $ */ #include "menuitems.h" @@ -322,10 +322,14 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key) { switch (Key) { case kRed: // Switch between upper- and lowercase characters - if (pos >= 0 && (!insert || !newchar)) { - uppercase = !uppercase; - value[pos] = uppercase ? toupper(value[pos]) : tolower(value[pos]); + if (pos >= 0) { + if (!insert || !newchar) { + uppercase = !uppercase; + value[pos] = uppercase ? toupper(value[pos]) : tolower(value[pos]); + } } + else + return osUnknown; break; case kGreen: // Toggle insert/overwrite modes if (pos >= 0) { @@ -333,6 +337,8 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key) newchar = true; SetHelpKeys(); } + else + return osUnknown; break; case kYellow|k_Repeat: case kYellow: // Remove the character at current position; in insert mode it is the character to the right of cursor @@ -350,6 +356,15 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key) uppercase = isupper(value[pos]); newchar = true; } + else + return osUnknown; + break; + case kBlue|k_Repeat: + case kBlue: // consume the key only if in edit-mode + if (pos >= 0) + ; + else + return osUnknown; break; case kLeft|k_Repeat: case kLeft: if (pos > 0) { |