int CThemes::exec(CMenuTarget* parent, const std::string & actionKey) { int res = menu_return::RETURN_REPAINT; if( !actionKey.empty() ) { if (actionKey=="theme_neutrino") { setupDefaultColors(); colorSetupNotifier->changeNotify(NONEXISTANT_LOCALE, NULL); } else { std::string themeFile = actionKey; if ( strstr(themeFile.c_str(), "{U}") != 0 ) { themeFile.erase(0, 3); readFile((char*)((std::string)USERDIR + themeFile + FILE_PREFIX).c_str()); } else readFile((char*)((std::string)THEMEDIR + themeFile + FILE_PREFIX).c_str()); } return res; } if (parent) parent->hide(); if ( !hasThemeChanged ) rememberOldTheme( true ); res = Show(); return res; }
int CThemes::exec(CMenuTarget * parent, const std::string & actionKey) { dprintf(DEBUG_NORMAL, "CThemes::exec: actionKey:%s\n", actionKey.c_str()); int res = menu_return::RETURN_REPAINT; if( !actionKey.empty() ) { if (actionKey == "theme_default") { setupDefaultColors(); notifier = new CColorSetupNotifier(); notifier->changeNotify(NONEXISTANT_LOCALE, NULL); delete notifier; CNeutrinoApp::getInstance()->exec(NULL, "savesettings"); } else { std::string themeFile = actionKey; if ( strstr(themeFile.c_str(), "{U}") != 0 ) { themeFile.erase(0, 3); readFile((char*)((std::string)USERDIR + themeFile + FILE_PREFIX).c_str()); } else readFile((char*)((std::string)THEMEDIR + themeFile + FILE_PREFIX).c_str()); } return res; } if (parent) parent->hide(); if ( !hasThemeChanged ) rememberOldTheme( true ); return Show(); }