summaryrefslogtreecommitdiff
path: root/apps/shortcuts.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2020-07-31 22:45:10 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2020-08-17 10:15:14 -0400
commit35502834423049b319fde41ff305b48de67d2d51 (patch)
tree00d638d9348cd38f15cf6d341e700bc36153b3f8 /apps/shortcuts.c
parentd553bb1149800daf16dcb92bc0608fe6248e1dab (diff)
downloadrockbox-35502834423049b319fde41ff305b48de67d2d51.tar.gz
rockbox-35502834423049b319fde41ff305b48de67d2d51.zip
Add open_plugin to core
open_plugin allows arbitrary plugins to be called in hotkey and start screen replaces PictureFlow Integration shortcuts menu plays plugins now too rather than store paths and parameters in the settings that reside in memory instead entries in a file are searched by hash. after all, the plugin has to be loaded from disk anyways ---------------------------------------------------------------------------- shortcut_viewer.rock-- can now call plugins rather than taking you to them in the browser ----------------------------------------------------------------------------- Added a new option to menus: F_CB_ON_SELECT_ONLY instead of option callback every time a item is accessed F_CB_ON_SELECT_ONLY fires callback only when item is selected ----------------------------------------------------------------------------- Added manual entries ----------------------------------------------------------------------------- Change-Id: I078b57b1d2b4dd633c89212c1082fcbc1b516e6a
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r--apps/shortcuts.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index c7e5755c1a..aa9a32bbb2 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -36,6 +36,7 @@
36#include "lang.h" 36#include "lang.h"
37#include "menu.h" 37#include "menu.h"
38#include "misc.h" 38#include "misc.h"
39#include "open_plugin.h"
39#include "tree.h" 40#include "tree.h"
40#include "splash.h" 41#include "splash.h"
41#include "pathfuncs.h" 42#include "pathfuncs.h"
@@ -608,6 +609,12 @@ int do_shortcut_menu(void *ignored)
608 /* else fall through */ 609 /* else fall through */
609 case SHORTCUT_BROWSER: 610 case SHORTCUT_BROWSER:
610 { 611 {
612
613 if(open_plugin_add_path(ID2P(LANG_SHORTCUTS), sc->u.path, NULL) != 0)
614 {
615 done = GO_TO_PLUGIN;
616 break;
617 }
611 struct browse_context browse; 618 struct browse_context browse;
612 browse_context_init(&browse, global_settings.dirfilter, 0, 619 browse_context_init(&browse, global_settings.dirfilter, 0,
613 NULL, NOICON, sc->u.path, NULL); 620 NULL, NOICON, sc->u.path, NULL);