summaryrefslogtreecommitdiff
path: root/plugins/hotkeys
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-11-10 14:56:59 +0100
committerGravatar waker <wakeroid@gmail.com>2012-11-10 14:56:59 +0100
commit3fca08e59e1e2a497c3ca4526a9f76233e51d2bf (patch)
tree78daee582446b9d8ece9962b11228121cbb94a5c /plugins/hotkeys
parentfeb75686e0dfe37fa1357b108152dad9da901304 (diff)
hotkeys: fixed/updated few action stubs
Diffstat (limited to 'plugins/hotkeys')
-rw-r--r--plugins/hotkeys/hotkeys.c28
1 files changed, 22 insertions, 6 deletions
diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c
index 812dd356..0b533065 100644
--- a/plugins/hotkeys/hotkeys.c
+++ b/plugins/hotkeys/hotkeys.c
@@ -609,6 +609,14 @@ action_toggle_stop_after_current_cb (struct DB_plugin_action_s *action, int ctx)
return 0;
}
+static DB_plugin_action_t action_reload_metadata = {
+ .title = "[stub] Reload metadata",
+ .name = "reload_metadata",
+ .flags = DB_ACTION_MULTIPLE_TRACKS,
+ .callback = NULL,
+ .next = NULL
+};
+
static DB_plugin_action_t action_jump_to_current = {
.title = "Playback/[stub] Jump to currently playing track",
.name = "jump_to_current_track",
@@ -754,10 +762,10 @@ static DB_plugin_action_t action_crop_selected = {
.next = &action_sort_by_title
};
-static DB_plugin_action_t action_remove_selected = {
- .title = "Edit/[stub] Remove Selected",
- .name = "remove_selected",
- .flags = DB_ACTION_COMMON,
+static DB_plugin_action_t action_remove_from_playlist = {
+ .title = "[stub] Remove from playlist",
+ .name = "remove_from_playlist",
+ .flags = DB_ACTION_MULTIPLE_TRACKS,
.callback = NULL,
.next = &action_crop_selected
};
@@ -767,7 +775,7 @@ static DB_plugin_action_t action_invert_selection = {
.name = "invert_selection",
.flags = DB_ACTION_COMMON,
.callback = NULL,
- .next = &action_remove_selected
+ .next = &action_remove_from_playlist
};
static DB_plugin_action_t action_deselect_all = {
@@ -834,12 +842,20 @@ static DB_plugin_action_t action_add_files = {
.next = &action_add_folders
};
+static DB_plugin_action_t action_remove_from_playqueue = {
+ .title = "Playback/[stub] Add To Playback Queue",
+ .name = "remove_from_playback_queue",
+ .flags = DB_ACTION_MULTIPLE_TRACKS,
+ .callback = NULL,
+ .next = &action_add_files
+};
+
static DB_plugin_action_t action_add_to_playqueue = {
.title = "Playback/[stub] Add To Playback Queue",
.name = "add_to_playback_queue",
.flags = DB_ACTION_MULTIPLE_TRACKS,
.callback = NULL,
- .next = &action_add_files
+ .next = &action_remove_from_playqueue
};
static DB_plugin_action_t action_toggle_mute = {