mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The "Back" key now restores the original string when pressed while editing a string item
This commit is contained in:
parent
5820beed02
commit
c9b5fd6588
@ -1718,6 +1718,8 @@ Malte Schr
|
|||||||
|
|
||||||
Markus Hahn <mhahn@reel-multimedia.com>
|
Markus Hahn <mhahn@reel-multimedia.com>
|
||||||
for suggesting to only start recordings if there is at least 300MB free disk space
|
for suggesting to only start recordings if there is at least 300MB free disk space
|
||||||
|
for suggesting that the "Back" key should restore the original string when pressed
|
||||||
|
while editing a string item
|
||||||
|
|
||||||
Jaroslaw Swierczynski <swiergot@gmail.com>
|
Jaroslaw Swierczynski <swiergot@gmail.com>
|
||||||
for updating the Polish OSD texts and the fontosd-iso8859-2.c file
|
for updating the Polish OSD texts and the fontosd-iso8859-2.c file
|
||||||
|
2
HISTORY
2
HISTORY
@ -4321,3 +4321,5 @@ Video Disk Recorder Revision History
|
|||||||
|
|
||||||
- Removed an unnecessary toFile->SetReadAhead() from cutter.c (thanks to Artur
|
- Removed an unnecessary toFile->SetReadAhead() from cutter.c (thanks to Artur
|
||||||
Skawina).
|
Skawina).
|
||||||
|
- The "Back" key now restores the original string when pressed while editing a
|
||||||
|
string item (suggested by Markus Hahn).
|
||||||
|
14
menuitems.c
14
menuitems.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menuitems.c 1.31 2006/02/04 12:47:08 kls Exp $
|
* $Id: menuitems.c 1.32 2006/02/12 10:31:08 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menuitems.h"
|
#include "menuitems.h"
|
||||||
@ -239,6 +239,7 @@ eOSState cMenuEditChrItem::ProcessKey(eKeys Key)
|
|||||||
cMenuEditStrItem::cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed)
|
cMenuEditStrItem::cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed)
|
||||||
:cMenuEditItem(Name)
|
:cMenuEditItem(Name)
|
||||||
{
|
{
|
||||||
|
orgValue = NULL;
|
||||||
value = Value;
|
value = Value;
|
||||||
length = Length;
|
length = Length;
|
||||||
allowed = strdup(Allowed);
|
allowed = strdup(Allowed);
|
||||||
@ -253,6 +254,7 @@ cMenuEditStrItem::cMenuEditStrItem(const char *Name, char *Value, int Length, co
|
|||||||
|
|
||||||
cMenuEditStrItem::~cMenuEditStrItem()
|
cMenuEditStrItem::~cMenuEditStrItem()
|
||||||
{
|
{
|
||||||
|
free(orgValue);
|
||||||
free(allowed);
|
free(allowed);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -409,8 +411,10 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
|
|||||||
break;
|
break;
|
||||||
case kRight|k_Repeat:
|
case kRight|k_Repeat:
|
||||||
case kRight: AdvancePos();
|
case kRight: AdvancePos();
|
||||||
if (pos == 0)
|
if (pos == 0) {
|
||||||
|
orgValue = strdup(value);
|
||||||
SetHelpKeys();
|
SetHelpKeys();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case kUp|k_Repeat:
|
case kUp|k_Repeat:
|
||||||
case kUp:
|
case kUp:
|
||||||
@ -469,7 +473,13 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
|
|||||||
return cMenuEditItem::ProcessKey(Key);
|
return cMenuEditItem::ProcessKey(Key);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case kBack:
|
||||||
case kOk: if (InEditMode()) {
|
case kOk: if (InEditMode()) {
|
||||||
|
if (Key == kBack && orgValue) {
|
||||||
|
strcpy(value, orgValue);
|
||||||
|
free(orgValue);
|
||||||
|
orgValue = NULL;
|
||||||
|
}
|
||||||
pos = -1;
|
pos = -1;
|
||||||
newchar = true;
|
newchar = true;
|
||||||
stripspace(value);
|
stripspace(value);
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menuitems.h 1.16 2006/01/21 10:45:55 kls Exp $
|
* $Id: menuitems.h 1.17 2006/02/12 10:22:03 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __MENUITEMS_H
|
#ifndef __MENUITEMS_H
|
||||||
@ -77,6 +77,7 @@ public:
|
|||||||
|
|
||||||
class cMenuEditStrItem : public cMenuEditItem {
|
class cMenuEditStrItem : public cMenuEditItem {
|
||||||
private:
|
private:
|
||||||
|
char *orgValue;
|
||||||
char *value;
|
char *value;
|
||||||
int length;
|
int length;
|
||||||
char *allowed;
|
char *allowed;
|
||||||
|
Loading…
Reference in New Issue
Block a user