fix cpu locale, fix menu & descrete rc

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@783 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2010-09-20 17:41:44 +00:00
parent 953b1d8010
commit 216bd2d407
3 changed files with 6 additions and 2 deletions

View File

@@ -151,6 +151,10 @@ colorthememenu.gray Grau
colorthememenu.head Theme auswählen colorthememenu.head Theme auswählen
colorthememenu.neutrino_theme Neutrino Theme colorthememenu.neutrino_theme Neutrino Theme
colorthememenu.red_theme Simply Red colorthememenu.red_theme Simply Red
cpu.freq CPU Frequenz
cpu.freq_normal Normale Frequenz
cpu.freq_standby Standby Frequenz
cpu.freq_default Standard Frequenz
date.Apr Apr date.Apr Apr
date.Aug Aug date.Aug Aug
date.Dec Dez date.Dec Dez

View File

@@ -3200,7 +3200,7 @@ _repeat:
g_RCInput->postMsg(NeutrinoMessages::STANDBY_ON, 0); g_RCInput->postMsg(NeutrinoMessages::STANDBY_ON, 0);
return messages_return::handled; return messages_return::handled;
} }
else if (msg == CRCInput::RC_standby_off) { else if ((msg == CRCInput::RC_standby_off) || (msg == CRCInput::RC_power_on)) {
if (data == 0) if (data == 0)
g_RCInput->postMsg(NeutrinoMessages::STANDBY_OFF, 0); g_RCInput->postMsg(NeutrinoMessages::STANDBY_OFF, 0);
return messages_return::handled; return messages_return::handled;

View File

@@ -1476,10 +1476,10 @@ void CNeutrinoApp::InitServiceSettings(CMenuWidget &service, CMenuWidget &_scanS
CDataResetNotifier * resetNotifier = new CDataResetNotifier(); CDataResetNotifier * resetNotifier = new CDataResetNotifier();
service.addItem(new CMenuForwarder(LOCALE_RESET_CHANNELS , true, NULL, resetNotifier, "channels", CRCInput::RC_blue, NEUTRINO_ICON_BUTTON_BLUE )); service.addItem(new CMenuForwarder(LOCALE_RESET_CHANNELS , true, NULL, resetNotifier, "channels", CRCInput::RC_blue, NEUTRINO_ICON_BUTTON_BLUE ));
service.addItem(new CMenuForwarder(LOCALE_SERVICEMENU_GETPLUGINS, true, NULL, this, "reloadplugins"));
service.addItem(GenericMenuSeparatorLine); service.addItem(GenericMenuSeparatorLine);
service.addItem(new CMenuForwarder(LOCALE_SERVICEMENU_RESTART , true, NULL, this, "restart", CRCInput::RC_standby, NEUTRINO_ICON_BUTTON_POWER)); service.addItem(new CMenuForwarder(LOCALE_SERVICEMENU_RESTART , true, NULL, this, "restart", CRCInput::RC_standby, NEUTRINO_ICON_BUTTON_POWER));
service.addItem(new CMenuForwarder(LOCALE_SERVICEMENU_GETPLUGINS, true, NULL, this, "reloadplugins"));
// start infomenu in service // start infomenu in service
if (g_settings.show_infomenu == 1) { if (g_settings.show_infomenu == 1) {
CMenuWidget *info = new CMenuWidget(LOCALE_MESSAGEBOX_INFO, NEUTRINO_ICON_INFO); CMenuWidget *info = new CMenuWidget(LOCALE_MESSAGEBOX_INFO, NEUTRINO_ICON_INFO);