Return menu result, to close all menus

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1879 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
focus
2011-11-22 11:46:22 +00:00
parent 8dceacd2a7
commit d4eb80abec
8 changed files with 20 additions and 19 deletions

View File

@@ -82,7 +82,7 @@ int CAudioPlayerSetup::exec(CMenuTarget* parent, const std::string &actionKey)
return res;
}
showAudioPlayerSetup();
res = showAudioPlayerSetup();
return res;
}
@@ -97,7 +97,7 @@ const CMenuOptionChooser::keyval AUDIOPLAYER_DISPLAY_ORDER_OPTIONS[AUDIOPLAYER_D
/*shows the audio setup menue*/
void CAudioPlayerSetup::showAudioPlayerSetup()
int CAudioPlayerSetup::showAudioPlayerSetup()
{
CMenuWidget* audioplayerSetup = new CMenuWidget(LOCALE_MAINMENU_SETTINGS, NEUTRINO_ICON_SETTINGS, width);
audioplayerSetup->setSelected(selected);
@@ -120,8 +120,9 @@ void CAudioPlayerSetup::showAudioPlayerSetup()
audioplayerSetup->addItem(new CMenuForwarder(LOCALE_AUDIOPLAYER_DEFDIR, true, g_settings.network_nfs_audioplayerdir, this, "audioplayerdir"));
audioplayerSetup->addItem(new CMenuOptionChooser(LOCALE_AUDIOPLAYER_ENABLE_SC_METADATA, &g_settings.audioplayer_enable_sc_metadata, MESSAGEBOX_NO_YES_OPTIONS, MESSAGEBOX_NO_YES_OPTION_COUNT, true ));
audioplayerSetup->exec (NULL, "");
int res = audioplayerSetup->exec (NULL, "");
audioplayerSetup->hide ();
selected = audioplayerSetup->getSelected();
delete audioplayerSetup;
return res;
}

View File

@@ -41,7 +41,7 @@ class CAudioPlayerSetup : public CMenuTarget
private:
int width, selected;
void showAudioPlayerSetup();
int showAudioPlayerSetup();
public:

View File

@@ -74,13 +74,13 @@ int CMediaPlayerSetup::exec(CMenuTarget* parent, const std::string & /*actionKey
parent->hide();
showMediaPlayerSetup();
res = showMediaPlayerSetup();
return res;
}
/*shows media setup menue entries*/
void CMediaPlayerSetup::showMediaPlayerSetup()
int CMediaPlayerSetup::showMediaPlayerSetup()
{
CMenuWidget* mediaSetup = new CMenuWidget(LOCALE_MAINMENU_SETTINGS, NEUTRINO_ICON_SETTINGS, width);
@@ -92,9 +92,9 @@ void CMediaPlayerSetup::showMediaPlayerSetup()
mediaSetup->addItem(new CMenuForwarder(LOCALE_PICTUREVIEWER_HEAD, true, NULL, new CPictureViewerSetup(), "", CRCInput::RC_red, NEUTRINO_ICON_BUTTON_RED));
mediaSetup->addItem(new CMenuForwarder(LOCALE_AUDIOPLAYER_NAME, true, NULL, new CAudioPlayerSetup(), "", CRCInput::RC_green, NEUTRINO_ICON_BUTTON_GREEN));
mediaSetup->exec (NULL, "");
int res = mediaSetup->exec (NULL, "");
mediaSetup->hide ();
selected = mediaSetup->getSelected();
delete mediaSetup;
return res;
}

View File

@@ -42,7 +42,7 @@ class CMediaPlayerSetup : public CMenuTarget
private:
int width, selected;
void showMediaPlayerSetup();
int showMediaPlayerSetup();
public:

View File

@@ -117,9 +117,7 @@ int CMiscMenue::exec(CMenuTarget* parent, const std::string &actionKey)
}
#endif /*ONE_KEY_PLUGIN*/
showMiscSettingsMenu();
return menu_return::RETURN_REPAINT;
return showMiscSettingsMenu();
}
@@ -160,7 +158,7 @@ const CMenuOptionChooser::keyval_ext CPU_FREQ_OPTIONS[CPU_FREQ_OPTION_COUNT] =
#endif /*CPU_FREQ*/
//show misc settings menue
void CMiscMenue::showMiscSettingsMenu()
int CMiscMenue::showMiscSettingsMenu()
{
//misc settings
fanNotifier = new CFanControlNotifier();
@@ -212,11 +210,12 @@ void CMiscMenue::showMiscSettingsMenu()
misc_menue->addItem( new CMenuForwarderNonLocalized("CPU", true, NULL, misc_menue_cpu, NULL, CRCInput::RC_4));
#endif /*CPU_FREQ*/
misc_menue->exec(NULL, "");
int res = misc_menue->exec(NULL, "");
misc_menue->hide();
selected = misc_menue->getSelected();
delete fanNotifier;
delete misc_menue;
return res;
}
//general settings

View File

@@ -42,7 +42,7 @@ class CMiscMenue : public CMenuTarget
CFanControlNotifier *fanNotifier;
int width, selected;
void showMiscSettingsMenu();
int showMiscSettingsMenu();
void showMiscSettingsMenuGeneral(CMenuWidget *ms_general);
void showMiscSettingsMenuEnergy(CMenuWidget *ms_energy);
void showMiscSettingsMenuEpg(CMenuWidget *ms_epg);

View File

@@ -81,7 +81,7 @@ int CPictureViewerSetup::exec(CMenuTarget* parent, const std::string &actionKey)
return res;
}
showPictureViewerSetup();
res = showPictureViewerSetup();
return res;
}
@@ -97,7 +97,7 @@ const CMenuOptionChooser::keyval PICTUREVIEWER_SCALING_OPTIONS[PICTUREVIEWER_SCA
/*shows the picviewer setup menue*/
void CPictureViewerSetup::showPictureViewerSetup()
int CPictureViewerSetup::showPictureViewerSetup()
{
CMenuWidget* picviewsetup = new CMenuWidget(LOCALE_MAINMENU_SETTINGS, NEUTRINO_ICON_SETTINGS, width);
@@ -111,8 +111,9 @@ void CPictureViewerSetup::showPictureViewerSetup()
picviewsetup->addItem(new CMenuForwarder(LOCALE_PICTUREVIEWER_SLIDE_TIME, true, g_settings.picviewer_slide_time, pic_timeout));
picviewsetup->addItem(new CMenuForwarder(LOCALE_PICTUREVIEWER_DEFDIR, true, g_settings.network_nfs_picturedir, this, "picturedir"));
picviewsetup->exec(NULL, "");
int res = picviewsetup->exec(NULL, "");
picviewsetup->hide();
selected = picviewsetup->getSelected();
delete picviewsetup;
return res;
}

View File

@@ -43,7 +43,7 @@ class CPictureViewerSetup : public CMenuTarget
private:
int width, selected;
void showPictureViewerSetup();
int showPictureViewerSetup();
public: