Neutrino menu forwarder: add possibility to show value from jump target

based on idea by martii <m4rtii@gmx.de> in Neutrino-MP Git
This commit is contained in:
Christian Schuett
2013-12-30 23:25:26 +01:00
committed by svenhoefer
parent 0a195c7c48
commit 7d04113307
2 changed files with 6 additions and 5 deletions

View File

@@ -1789,10 +1789,10 @@ const char * CMenuForwarder::getOption(void)
{
if (option)
return option;
else
if (option_string)
return option_string->c_str();
else
if (jumpTarget)
return jumpTarget->getTargetValue();
return NULL;
}

View File

@@ -79,6 +79,7 @@ class CMenuTarget
virtual void hide(){}
virtual int exec(CMenuTarget* parent, const std::string & actionKey) = 0;
virtual fb_pixel_t getColor(void) { return 0; }
virtual const char * getTargetValue() { return NULL; }
};
class CMenuItem