[totem] main: Add "remote-command" GAction
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem] main: Add "remote-command" GAction
- Date: Mon, 20 Oct 2014 17:12:22 +0000 (UTC)
commit 187158d2fc7e0a3c2d11e0032aa431f9e7d21916
Author: Bastien Nocera <hadess hadess net>
Date: Mon Oct 20 17:16:36 2014 +0200
main: Add "remote-command" GAction
Which will be available on the bus for us to use.
src/totem-menu.c | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/src/totem-menu.c b/src/totem-menu.c
index d17a6d0..7ac40bf 100644
--- a/src/totem-menu.c
+++ b/src/totem-menu.c
@@ -267,6 +267,24 @@ previous_chapter_action_cb (GSimpleAction *action,
TOTEM_PROFILE (totem_object_seek_previous (TOTEM_OBJECT (user_data)));
}
+static void
+remote_command_cb (GSimpleAction *action,
+ GVariant *parameter,
+ gpointer user_data)
+{
+ TotemObject *totem;
+ TotemRemoteCommand cmd;
+ const char *url;
+
+ totem = TOTEM_OBJECT (user_data);
+ g_variant_get (parameter, "(i&s)", &cmd, &url);
+
+ if (url && *url == '\0')
+ totem_object_remote_command (totem, cmd, NULL);
+ else
+ totem_object_remote_command (totem, cmd, url);
+}
+
static GActionEntry app_entries[] = {
/* Main app menu */
{ "open", open_action_cb, NULL, NULL, NULL },
@@ -297,6 +315,9 @@ static GActionEntry app_entries[] = {
{ "play", play_action_cb, NULL, NULL, NULL },
{ "next-chapter", next_chapter_action_cb, NULL, NULL, NULL },
{ "previous-chapter", previous_chapter_action_cb, NULL, NULL, NULL },
+
+ /* Remote command handling */
+ { "remote-command", remote_command_cb, "(is)", NULL, NULL },
};
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]