keyboard_input: allow string hints ...

... in preparation for implementation in Lua instance


Origin commit data
------------------
Branch: ni/coolstream
Commit: da9ce1bb38
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-11-24 (Mon, 24 Nov 2014)

Origin message was:
------------------
- keyboard_input: allow string hints ...

... in preparation for implementation in Lua instance


------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2014-11-24 10:01:20 +01:00
parent 83da02e397
commit cc38cc44cb
2 changed files with 48 additions and 10 deletions

View File

@@ -95,6 +95,7 @@ class CKeyboardInput : public CMenuTarget
std::string head;
neutrino_locale_t name;
neutrino_locale_t hint_1, hint_2;
std::string hintText_1, hintText_2;
std::string iconfile;
int inputSize;
int selected;
@@ -126,6 +127,7 @@ class CKeyboardInput : public CMenuTarget
public:
CKeyboardInput(const neutrino_locale_t Name, std::string* Value, int Size = 0, CChangeObserver* Observ = NULL, const char * const Icon = NULL, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE);
CKeyboardInput(const std::string &Name, std::string* Value, int Size = 0, CChangeObserver* Observ = NULL, const char * const Icon = NULL, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE);
CKeyboardInput(const std::string &Name, std::string* Value, int Size = 0, CChangeObserver* Observ = NULL, const char * const Icon = NULL, std::string HintText_1 = "", std::string HintText_2 = "");
~CKeyboardInput();
void hide();