--- tools/bluetooth-player.c | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/tools/bluetooth-player.c b/tools/bluetooth-player.c index 4fbae0c0a..3dc7dc985 100644 --- a/tools/bluetooth-player.c +++ b/tools/bluetooth-player.c @@ -75,6 +75,27 @@ static bool check_default_player(void) return TRUE; } +static char *generic_generator(const char *text, int state, GList *source) +{ + static int index = 0; + + if (!state) { + index = 0; + } + + return g_dbus_proxy_path_lookup(source, &index, text); +} + +static char *player_generator(const char *text, int state) +{ + return generic_generator(text, state, players); +} + +static char *item_generator(const char *text, int state) +{ + return generic_generator(text, state, items); +} + static void play_reply(DBusMessage *message, void *user_data) { DBusError error; @@ -909,9 +930,12 @@ static const struct bt_shell_menu main_menu = { .name = "main", .entries = { { "list", NULL, cmd_list, "List available players" }, - { "show", "[player]", cmd_show, "Player information" }, - { "select", "<player>", cmd_select, "Select default player" }, - { "play", "[item]", cmd_play, "Start playback" }, + { "show", "[player]", cmd_show, "Player information", + player_generator}, + { "select", "<player>", cmd_select, "Select default player", + player_generator}, + { "play", "[item]", cmd_play, "Start playback", + item_generator}, { "pause", NULL, cmd_pause, "Pause playback" }, { "stop", NULL, cmd_stop, "Stop playback" }, { "next", NULL, cmd_next, "Jump to next item" }, @@ -933,8 +957,10 @@ static const struct bt_shell_menu main_menu = { "List items of current folder" }, { "search", "<string>", cmd_search, "Search items containing string" }, - { "queue", "<item>", cmd_queue, "Add item to playlist queue" }, - { "show-item", "<item>", cmd_show_item, "Show item information" }, + { "queue", "<item>", cmd_queue, "Add item to playlist queue", + item_generator}, + { "show-item", "<item>", cmd_show_item, "Show item information", + item_generator}, {} }, }; -- 2.14.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html