2011-11-30 17:36:08 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink Limited
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation; either version 2 of the licence or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-11-30 17:36:08 +01:00
|
|
|
*
|
|
|
|
* Authors: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gsimpleaction.h"
|
|
|
|
#include "gactionmap.h"
|
|
|
|
#include "gaction.h"
|
|
|
|
|
2011-12-01 01:03:41 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gactionmap
|
|
|
|
* @title: GActionMap
|
2014-01-08 04:55:43 +01:00
|
|
|
* @include: gio/gio.h
|
2011-12-01 01:03:41 +01:00
|
|
|
* @short_description: Interface for action containers
|
|
|
|
*
|
|
|
|
* The GActionMap interface is implemented by #GActionGroup
|
|
|
|
* implementations that operate by containing a number of
|
|
|
|
* named #GAction instances, such as #GSimpleActionGroup.
|
|
|
|
*
|
|
|
|
* One useful application of this interface is to map the
|
|
|
|
* names of actions from various action groups to unique,
|
|
|
|
* prefixed names (e.g. by prepending "app." or "win.").
|
|
|
|
* This is the motivation for the 'Map' part of the interface
|
|
|
|
* name.
|
2011-12-10 23:21:53 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
**/
|
|
|
|
|
2015-02-05 16:20:43 +01:00
|
|
|
/**
|
|
|
|
* GActionMap:
|
|
|
|
*
|
|
|
|
* #GActionMap is an opaque data structure and can only be accessed
|
|
|
|
* using the following functions.
|
|
|
|
**/
|
|
|
|
|
2011-12-10 23:21:53 +01:00
|
|
|
/**
|
|
|
|
* GActionMapInterface:
|
|
|
|
* @lookup_action: the virtual function pointer for g_action_map_lookup_action()
|
|
|
|
* @add_action: the virtual function pointer for g_action_map_add_action()
|
|
|
|
* @remove_action: the virtual function pointer for g_action_map_remove_action()
|
|
|
|
*
|
|
|
|
* The virtual function table for #GActionMap.
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
**/
|
2011-12-01 01:03:41 +01:00
|
|
|
|
2013-04-21 00:58:14 +02:00
|
|
|
G_DEFINE_INTERFACE (GActionMap, g_action_map, G_TYPE_OBJECT)
|
2011-11-30 17:36:08 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
g_action_map_default_init (GActionMapInterface *iface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-12-01 01:03:41 +01:00
|
|
|
/**
|
|
|
|
* g_action_map_lookup_action:
|
|
|
|
* @action_map: a #GActionMap
|
|
|
|
* @action_name: the name of an action
|
|
|
|
*
|
|
|
|
* Looks up the action with the name @action_name in @action_map.
|
|
|
|
*
|
|
|
|
* If no such action exists, returns %NULL.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): a #GAction, or %NULL
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-30 17:36:08 +01:00
|
|
|
GAction *
|
|
|
|
g_action_map_lookup_action (GActionMap *action_map,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
|
|
|
return G_ACTION_MAP_GET_IFACE (action_map)
|
|
|
|
->lookup_action (action_map, action_name);
|
|
|
|
}
|
|
|
|
|
2011-12-01 01:03:41 +01:00
|
|
|
/**
|
|
|
|
* g_action_map_add_action:
|
|
|
|
* @action_map: a #GActionMap
|
|
|
|
* @action: a #GAction
|
|
|
|
*
|
|
|
|
* Adds an action to the @action_map.
|
|
|
|
*
|
|
|
|
* If the action map already contains an action with the same name
|
|
|
|
* as @action then the old action is dropped from the action map.
|
|
|
|
*
|
|
|
|
* The action map takes its own reference on @action.
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-30 17:36:08 +01:00
|
|
|
void
|
2011-12-01 01:03:41 +01:00
|
|
|
g_action_map_add_action (GActionMap *action_map,
|
|
|
|
GAction *action)
|
2011-11-30 17:36:08 +01:00
|
|
|
{
|
2012-04-07 02:41:19 +02:00
|
|
|
G_ACTION_MAP_GET_IFACE (action_map)->add_action (action_map, action);
|
2011-11-30 17:36:08 +01:00
|
|
|
}
|
|
|
|
|
2011-12-01 01:03:41 +01:00
|
|
|
/**
|
|
|
|
* g_action_map_remove_action:
|
|
|
|
* @action_map: a #GActionMap
|
|
|
|
* @action_name: the name of the action
|
|
|
|
*
|
|
|
|
* Removes the named action from the action map.
|
|
|
|
*
|
|
|
|
* If no action of this name is in the map then nothing happens.
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-30 17:36:08 +01:00
|
|
|
void
|
|
|
|
g_action_map_remove_action (GActionMap *action_map,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
2012-04-07 02:41:19 +02:00
|
|
|
G_ACTION_MAP_GET_IFACE (action_map)->remove_action (action_map, action_name);
|
2011-11-30 17:36:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GActionEntry:
|
|
|
|
* @name: the name of the action
|
|
|
|
* @activate: the callback to connect to the "activate" signal of the
|
2014-06-29 17:13:25 +02:00
|
|
|
* action. Since GLib 2.40, this can be %NULL for stateful
|
|
|
|
* actions, in which case the default handler is used. For
|
|
|
|
* boolean-stated actions with no parameter, this is a
|
|
|
|
* toggle. For other state types (and parameter type equal
|
|
|
|
* to the state type) this will be a function that
|
|
|
|
* just calls @change_state (which you should provide).
|
2011-11-30 17:36:08 +01:00
|
|
|
* @parameter_type: the type of the parameter that must be passed to the
|
|
|
|
* activate function for this action, given as a single
|
|
|
|
* GVariant type string (or %NULL for no parameter)
|
2014-06-29 17:34:16 +02:00
|
|
|
* @state: the initial state for this action, given in
|
|
|
|
* [GVariant text format][gvariant-text]. The state is parsed
|
|
|
|
* with no extra type information, so type tags must be added to
|
|
|
|
* the string if they are necessary. Stateless actions should
|
|
|
|
* give %NULL here.
|
2011-11-30 17:36:08 +01:00
|
|
|
* @change_state: the callback to connect to the "change-state" signal
|
2014-06-29 17:13:25 +02:00
|
|
|
* of the action. All stateful actions should provide a
|
|
|
|
* handler here; stateless actions should not.
|
2011-11-30 17:36:08 +01:00
|
|
|
*
|
|
|
|
* This struct defines a single action. It is for use with
|
|
|
|
* g_action_map_add_action_entries().
|
|
|
|
*
|
|
|
|
* The order of the items in the structure are intended to reflect
|
|
|
|
* frequency of use. It is permissible to use an incomplete initialiser
|
|
|
|
* in order to leave some of the later values as %NULL. All values
|
|
|
|
* after @name are optional. Additional optional fields may be added in
|
|
|
|
* the future.
|
|
|
|
*
|
|
|
|
* See g_action_map_add_action_entries() for an example.
|
|
|
|
**/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_map_add_action_entries:
|
2011-12-01 01:03:41 +01:00
|
|
|
* @action_map: a #GActionMap
|
2013-01-13 20:49:15 +01:00
|
|
|
* @entries: (array length=n_entries) (element-type GActionEntry): a pointer to
|
|
|
|
* the first item in an array of #GActionEntry structs
|
2011-12-01 01:03:41 +01:00
|
|
|
* @n_entries: the length of @entries, or -1 if @entries is %NULL-terminated
|
2011-11-30 17:36:08 +01:00
|
|
|
* @user_data: the user data for signal connections
|
|
|
|
*
|
|
|
|
* A convenience function for creating multiple #GSimpleAction instances
|
|
|
|
* and adding them to a #GActionMap.
|
|
|
|
*
|
|
|
|
* Each action is constructed as per one #GActionEntry.
|
|
|
|
*
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2011-11-30 17:36:08 +01:00
|
|
|
* static void
|
|
|
|
* activate_quit (GSimpleAction *simple,
|
|
|
|
* GVariant *parameter,
|
|
|
|
* gpointer user_data)
|
|
|
|
* {
|
|
|
|
* exit (0);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* static void
|
|
|
|
* activate_print_string (GSimpleAction *simple,
|
|
|
|
* GVariant *parameter,
|
|
|
|
* gpointer user_data)
|
|
|
|
* {
|
|
|
|
* g_print ("%s\n", g_variant_get_string (parameter, NULL));
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* static GActionGroup *
|
|
|
|
* create_action_group (void)
|
|
|
|
* {
|
|
|
|
* const GActionEntry entries[] = {
|
|
|
|
* { "quit", activate_quit },
|
|
|
|
* { "print-string", activate_print_string, "s" }
|
|
|
|
* };
|
|
|
|
* GSimpleActionGroup *group;
|
|
|
|
*
|
|
|
|
* group = g_simple_action_group_new ();
|
|
|
|
* g_action_map_add_action_entries (G_ACTION_MAP (group), entries, G_N_ELEMENTS (entries), NULL);
|
|
|
|
*
|
|
|
|
* return G_ACTION_GROUP (group);
|
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
2011-11-30 17:36:08 +01:00
|
|
|
*
|
2011-12-01 01:03:41 +01:00
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-30 17:36:08 +01:00
|
|
|
void
|
|
|
|
g_action_map_add_action_entries (GActionMap *action_map,
|
|
|
|
const GActionEntry *entries,
|
|
|
|
gint n_entries,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_ACTION_MAP (action_map));
|
|
|
|
g_return_if_fail (entries != NULL || n_entries == 0);
|
|
|
|
|
|
|
|
for (i = 0; n_entries == -1 ? entries[i].name != NULL : i < n_entries; i++)
|
|
|
|
{
|
|
|
|
const GActionEntry *entry = &entries[i];
|
|
|
|
const GVariantType *parameter_type;
|
|
|
|
GSimpleAction *action;
|
|
|
|
|
|
|
|
if (entry->parameter_type)
|
|
|
|
{
|
|
|
|
if (!g_variant_type_string_is_valid (entry->parameter_type))
|
|
|
|
{
|
2012-04-04 12:36:45 +02:00
|
|
|
g_critical ("g_action_map_add_entries: the type "
|
2011-11-30 17:36:08 +01:00
|
|
|
"string '%s' given as the parameter type for "
|
|
|
|
"action '%s' is not a valid GVariant type "
|
|
|
|
"string. This action will not be added.",
|
|
|
|
entry->parameter_type, entry->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
parameter_type = G_VARIANT_TYPE (entry->parameter_type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
parameter_type = NULL;
|
|
|
|
|
|
|
|
if (entry->state)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *state;
|
|
|
|
|
|
|
|
state = g_variant_parse (NULL, entry->state, NULL, NULL, &error);
|
|
|
|
if (state == NULL)
|
|
|
|
{
|
2012-04-04 12:36:45 +02:00
|
|
|
g_critical ("g_action_map_add_entries: GVariant could "
|
2011-11-30 17:36:08 +01:00
|
|
|
"not parse the state value given for action '%s' "
|
|
|
|
"('%s'): %s. This action will not be added.",
|
|
|
|
entry->name, entry->state, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
action = g_simple_action_new_stateful (entry->name,
|
|
|
|
parameter_type,
|
|
|
|
state);
|
|
|
|
|
|
|
|
g_variant_unref (state);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
action = g_simple_action_new (entry->name,
|
|
|
|
parameter_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->activate != NULL)
|
|
|
|
g_signal_connect (action, "activate",
|
|
|
|
G_CALLBACK (entry->activate), user_data);
|
|
|
|
|
|
|
|
if (entry->change_state != NULL)
|
|
|
|
g_signal_connect (action, "change-state",
|
|
|
|
G_CALLBACK (entry->change_state), user_data);
|
|
|
|
|
|
|
|
g_action_map_add_action (action_map, G_ACTION (action));
|
|
|
|
g_object_unref (action);
|
|
|
|
}
|
|
|
|
}
|