Return menu result

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1893 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Commit: cefd76754d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2011-11-25 (Fri, 25 Nov 2011)
This commit is contained in:
[CST] Focus
2011-11-25 09:58:24 +00:00
parent 2170a18b39
commit 9fd2136a57
2 changed files with 5 additions and 10 deletions

View File

@@ -40,14 +40,12 @@
#include <driver/screen_max.h>
CInfoMenu::CInfoMenu()
{
width = w_max (40, 10);
selected = -1;
}
CInfoMenu::~CInfoMenu()
{
@@ -62,14 +60,12 @@ int CInfoMenu::exec(CMenuTarget* parent, const std::string &/*actionKey*/)
if (parent != NULL)
parent->hide();
showMenu();
res = showMenu();
return res;
}
void CInfoMenu::showMenu()
int CInfoMenu::showMenu()
{
printf("[neutrino] CInfoMenu call %s...\n", __FUNCTION__);
@@ -81,11 +77,10 @@ void CInfoMenu::showMenu()
info->addItem(new CMenuForwarder(LOCALE_EXTRA_DBOXINFO, true, NULL, new CDBoxInfoWidget, NULL, CRCInput::RC_green, NEUTRINO_ICON_BUTTON_GREEN));
info->addItem(new CMenuForwarder(LOCALE_STREAMINFO_HEAD, true, NULL, new CStreamInfo2(), NULL, CRCInput::RC_yellow, NEUTRINO_ICON_BUTTON_YELLOW));
info->exec(NULL, "");
int res = info->exec(NULL, "");
info->hide();
selected = info->getSelected();
delete info;
return res;
}