1
0
Fork 0
forked from len0rd/rockbox

Add a possibility for plugins to go directly to the WPS after exiting.

It only works for plugins executed via the filebrowser for now. Those
executed from the context menu or a simplelist (such as "Open With...") need additional hacking.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21680 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-07-05 22:12:42 +00:00
parent 9431ea8c65
commit df6f955a82
3 changed files with 52 additions and 31 deletions

View file

@ -664,6 +664,7 @@ static const struct plugin_api rockbox_api = {
int plugin_load(const char* plugin, const void* parameter)
{
int rc;
int i;
int oldbars;
struct plugin_header *hdr;
#ifdef SIMULATOR
@ -804,8 +805,6 @@ int plugin_load(const char* plugin, const void* parameter)
#endif /* LCD_DEPTH */
#endif /* HAVE_LCD_BITMAP */
lcd_clear_display();
lcd_update();
#ifdef HAVE_REMOTE_LCD
#if LCD_REMOTE_DEPTH > 1
@ -814,32 +813,27 @@ int plugin_load(const char* plugin, const void* parameter)
#else
lcd_remote_set_drawmode(DRMODE_SOLID);
#endif
lcd_remote_clear_display();
lcd_remote_update();
#endif
if (rc != PLUGIN_GOTO_WPS)
{
FOR_NB_SCREENS(i)
{
screens[i].clear_display();
screens[i].update();
}
}
viewportmanager_set_statusbar(oldbars);
if (pfn_tsr_exit == NULL)
plugin_loaded = false;
sim_plugin_close(pd);
switch (rc) {
case PLUGIN_OK:
break;
if (rc == PLUGIN_ERROR)
splash(HZ*2, str(LANG_PLUGIN_ERROR));
case PLUGIN_USB_CONNECTED:
return PLUGIN_USB_CONNECTED;
default:
splash(HZ*2, str(LANG_PLUGIN_ERROR));
break;
}
return PLUGIN_OK;
return rc;
}
/* Returns a pointer to the portion of the plugin buffer that is not already