GActionMuxer: pass platform data
Pass the current timestamp as platform data when activating an action. This is implemented slightly hacky, since we use clutter_get_current_event_time() to get at the timestamp, but the alternative is to expose g_action_muxer_activate_action_full to js, which would be quite a bit more involved.
This commit is contained in:
parent
6c4e9d23f2
commit
ce38293a0f
@ -26,6 +26,8 @@
|
|||||||
#include "gactionobservable.h"
|
#include "gactionobservable.h"
|
||||||
#include "gactionobserver.h"
|
#include "gactionobserver.h"
|
||||||
|
|
||||||
|
#include <clutter/clutter.h>
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -238,6 +240,26 @@ g_action_muxer_query_action (GActionGroup *action_group,
|
|||||||
parameter_type, state_type, state_hint, state);
|
parameter_type, state_type, state_hint, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GVariant *
|
||||||
|
get_platform_data (void)
|
||||||
|
{
|
||||||
|
gchar time[32];
|
||||||
|
GVariantBuilder *builder;
|
||||||
|
GVariant *result;
|
||||||
|
|
||||||
|
g_snprintf (time, 32, "_TIME%d", clutter_get_current_event_time ());
|
||||||
|
|
||||||
|
builder = g_variant_builder_new (G_VARIANT_TYPE ("a{sv}"));
|
||||||
|
|
||||||
|
g_variant_builder_add (builder, "{sv}", "desktop-startup-id",
|
||||||
|
g_variant_new_string (time));
|
||||||
|
|
||||||
|
result = g_variant_builder_end (builder);
|
||||||
|
g_variant_builder_unref (builder);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
g_action_muxer_activate_action (GActionGroup *action_group,
|
g_action_muxer_activate_action (GActionGroup *action_group,
|
||||||
const gchar *action_name,
|
const gchar *action_name,
|
||||||
@ -249,7 +271,15 @@ g_action_muxer_activate_action (GActionGroup *action_group,
|
|||||||
group = g_action_muxer_find_group (muxer, &action_name);
|
group = g_action_muxer_find_group (muxer, &action_name);
|
||||||
|
|
||||||
if (group)
|
if (group)
|
||||||
|
{
|
||||||
|
if (G_IS_DBUS_ACTION_GROUP (group->group))
|
||||||
|
g_dbus_action_group_activate_action_full (G_DBUS_ACTION_GROUP (group->group),
|
||||||
|
action_name,
|
||||||
|
parameter,
|
||||||
|
get_platform_data ());
|
||||||
|
else
|
||||||
g_action_group_activate_action (group->group, action_name, parameter);
|
g_action_group_activate_action (group->group, action_name, parameter);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -263,7 +293,15 @@ g_action_muxer_change_action_state (GActionGroup *action_group,
|
|||||||
group = g_action_muxer_find_group (muxer, &action_name);
|
group = g_action_muxer_find_group (muxer, &action_name);
|
||||||
|
|
||||||
if (group)
|
if (group)
|
||||||
|
{
|
||||||
|
if (G_IS_DBUS_ACTION_GROUP (group->group))
|
||||||
|
g_dbus_action_group_change_action_state_full (G_DBUS_ACTION_GROUP (group->group),
|
||||||
|
action_name,
|
||||||
|
state,
|
||||||
|
get_platform_data ());
|
||||||
|
else
|
||||||
g_action_group_change_action_state (group->group, action_name, state);
|
g_action_group_change_action_state (group->group, action_name, state);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user