2010-08-18 06:30:44 +02: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
|
|
|
|
* Public License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Authors: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
2010-08-18 17:54:36 +02:00
|
|
|
#include "config.h"
|
2010-08-18 06:30:44 +02:00
|
|
|
#include "gactiongroup.h"
|
2010-08-18 17:54:36 +02:00
|
|
|
#include "gaction.h"
|
|
|
|
#include "glibintl.h"
|
2010-08-18 06:30:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gactiongroup
|
|
|
|
* @title: GActionGroup
|
2010-11-29 05:55:43 +01:00
|
|
|
* @short_description: A group of actions
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* #GActionGroup represents a group of actions.
|
|
|
|
*
|
|
|
|
* Each action in the group has a unique name (which is a string). All
|
|
|
|
* method calls, except g_action_group_list_actions() take the name of
|
|
|
|
* an action as an argument.
|
|
|
|
*
|
|
|
|
* The #GActionGroup API is meant to be the 'public' API to the action
|
|
|
|
* group. The calls here are exactly the interaction that 'external
|
|
|
|
* forces' (eg: UI, incoming D-Bus messages, etc.) are supposed to have
|
|
|
|
* with actions. 'Internal' APIs (ie: ones meant only to be accessed by
|
|
|
|
* the action group implementation) are found on subclasses. This is
|
2011-06-05 00:44:44 +02:00
|
|
|
* why you will find -- for example -- g_action_group_get_action_enabled()
|
|
|
|
* but not an equivalent <function>set()</function> call.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* Signals are emitted on the action group in response to state changes
|
|
|
|
* on individual actions.
|
|
|
|
**/
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
G_DEFINE_INTERFACE (GActionGroup, g_action_group, G_TYPE_OBJECT)
|
2010-08-18 06:30:44 +02:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGNAL_ACTION_ADDED,
|
|
|
|
SIGNAL_ACTION_REMOVED,
|
|
|
|
SIGNAL_ACTION_ENABLED_CHANGED,
|
|
|
|
SIGNAL_ACTION_STATE_CHANGED,
|
|
|
|
NR_SIGNALS
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint g_action_group_signals[NR_SIGNALS];
|
|
|
|
|
|
|
|
static void
|
2010-08-30 17:31:06 +02:00
|
|
|
g_action_group_default_init (GActionGroupInterface *class)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* GActionGroup::action-added:
|
|
|
|
* @action_group: the #GActionGroup that changed
|
|
|
|
* @action_name: the name of the action in @action_group
|
|
|
|
*
|
2011-06-05 00:44:44 +02:00
|
|
|
* Signals that a new action was just added to the group.
|
|
|
|
* This signal is emitted after the action has been added
|
|
|
|
* and is now visible.
|
2010-08-18 17:54:36 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_ADDED] =
|
2010-08-18 17:54:36 +02:00
|
|
|
g_signal_new (I_("action-added"),
|
|
|
|
G_TYPE_ACTION_GROUP,
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
|
2010-08-30 17:31:06 +02:00
|
|
|
G_STRUCT_OFFSET (GActionGroupInterface, action_added),
|
2010-08-18 17:54:36 +02:00
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__STRING,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_STRING);
|
2010-08-18 06:30:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GActionGroup::action-removed:
|
|
|
|
* @action_group: the #GActionGroup that changed
|
|
|
|
* @action_name: the name of the action in @action_group
|
|
|
|
*
|
|
|
|
* Signals that an action is just about to be removed from the group.
|
|
|
|
* This signal is emitted before the action is removed, so the action
|
|
|
|
* is still visible and can be queried from the signal handler.
|
2010-08-18 17:54:36 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_REMOVED] =
|
2010-08-18 17:54:36 +02:00
|
|
|
g_signal_new (I_("action-removed"),
|
|
|
|
G_TYPE_ACTION_GROUP,
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
|
2010-08-30 17:31:06 +02:00
|
|
|
G_STRUCT_OFFSET (GActionGroupInterface, action_removed),
|
2010-08-18 17:54:36 +02:00
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__STRING,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_STRING);
|
2010-08-18 06:30:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GActionGroup::action-enabled-changed:
|
|
|
|
* @action_group: the #GActionGroup that changed
|
|
|
|
* @action_name: the name of the action in @action_group
|
|
|
|
* @enabled: whether the action is enabled or not
|
|
|
|
*
|
|
|
|
* Signals that the enabled status of the named action has changed.
|
2010-08-18 17:54:36 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_ENABLED_CHANGED] =
|
2010-08-18 17:54:36 +02:00
|
|
|
g_signal_new (I_("action-enabled-changed"),
|
|
|
|
G_TYPE_ACTION_GROUP,
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
|
2010-08-30 17:31:06 +02:00
|
|
|
G_STRUCT_OFFSET (GActionGroupInterface,
|
|
|
|
action_enabled_changed),
|
2010-08-18 17:54:36 +02:00
|
|
|
NULL, NULL,
|
2011-06-20 15:06:07 +02:00
|
|
|
g_cclosure_marshal_generic,
|
2010-08-18 17:54:36 +02:00
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
G_TYPE_BOOLEAN);
|
2010-08-18 06:30:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GActionGroup::action-state-changed:
|
|
|
|
* @action_group: the #GActionGroup that changed
|
|
|
|
* @action_name: the name of the action in @action_group
|
|
|
|
* @value: the new value of the state
|
|
|
|
*
|
|
|
|
* Signals that the state of the named action has changed.
|
2010-08-18 17:54:36 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_STATE_CHANGED] =
|
2010-08-18 17:54:36 +02:00
|
|
|
g_signal_new (I_("action-state-changed"),
|
|
|
|
G_TYPE_ACTION_GROUP,
|
2011-03-04 18:21:51 +01:00
|
|
|
G_SIGNAL_RUN_LAST |
|
|
|
|
G_SIGNAL_DETAILED |
|
|
|
|
G_SIGNAL_MUST_COLLECT,
|
2010-08-30 17:31:06 +02:00
|
|
|
G_STRUCT_OFFSET (GActionGroupInterface,
|
|
|
|
action_state_changed),
|
2010-08-18 17:54:36 +02:00
|
|
|
NULL, NULL,
|
2011-06-20 15:06:07 +02:00
|
|
|
g_cclosure_marshal_generic,
|
2010-08-18 17:54:36 +02:00
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
G_TYPE_VARIANT);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-21 21:34:18 +02:00
|
|
|
* g_action_group_list_actions:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
*
|
|
|
|
* Lists the actions contained within @action_group.
|
|
|
|
*
|
|
|
|
* The caller is responsible for freeing the list with g_strfreev() when
|
|
|
|
* it is no longer required.
|
|
|
|
*
|
2010-09-24 20:51:26 +02:00
|
|
|
* Returns: (transfer full): a %NULL-terminated array of the names of the
|
|
|
|
* actions in the groupb
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
gchar **
|
|
|
|
g_action_group_list_actions (GActionGroup *action_group)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
|
|
|
->list_actions (action_group);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_group_has_action:
|
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to check for
|
|
|
|
*
|
|
|
|
* Checks if the named action exists within @action_group.
|
|
|
|
*
|
|
|
|
* Returns: whether the named action exists
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_action_group_has_action (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
|
|
|
->has_action (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_get_action_parameter_type:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to query
|
|
|
|
*
|
|
|
|
* Queries the type of the parameter that must be given when activating
|
|
|
|
* the named action within @action_group.
|
|
|
|
*
|
2011-06-05 00:44:44 +02:00
|
|
|
* When activating the action using g_action_group_activate_action(),
|
|
|
|
* the #GVariant given to that function must be of the type returned
|
|
|
|
* by this function.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* In the case that this function returns %NULL, you must not give any
|
|
|
|
* #GVariant, but %NULL instead.
|
|
|
|
*
|
|
|
|
* The parameter type of a particular action will never change but it is
|
|
|
|
* possible for an action to be removed and for a new action to be added
|
|
|
|
* with the same name but a different parameter type.
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Return value: the parameter type
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
const GVariantType *
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_get_action_parameter_type (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->get_action_parameter_type (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_get_action_state_type:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to query
|
|
|
|
*
|
|
|
|
* Queries the type of the state of the named action within
|
|
|
|
* @action_group.
|
|
|
|
*
|
|
|
|
* If the action is stateful then this function returns the
|
2011-06-05 00:44:44 +02:00
|
|
|
* #GVariantType of the state. All calls to
|
|
|
|
* g_action_group_change_action_state() must give a #GVariant of this
|
|
|
|
* type and g_action_group_get_action_state() will return a #GVariant
|
|
|
|
* of the same type.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* If the action is not stateful then this function will return %NULL.
|
2011-06-05 00:44:44 +02:00
|
|
|
* In that case, g_action_group_get_action_state() will return %NULL
|
|
|
|
* and you must not call g_action_group_change_action_state().
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* The state type of a particular action will never change but it is
|
|
|
|
* possible for an action to be removed and for a new action to be added
|
|
|
|
* with the same name but a different state type.
|
|
|
|
*
|
2010-09-24 20:51:26 +02:00
|
|
|
* Returns: (transfer full): the state type, if the action is stateful
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
2010-08-18 17:54:36 +02:00
|
|
|
const GVariantType *
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_get_action_state_type (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->get_action_state_type (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_get_action_state_hint:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to query
|
|
|
|
*
|
|
|
|
* Requests a hint about the valid range of values for the state of the
|
|
|
|
* named action within @action_group.
|
|
|
|
*
|
|
|
|
* If %NULL is returned it either means that the action is not stateful
|
|
|
|
* or that there is no hint about the valid range of values for the
|
|
|
|
* state of the action.
|
|
|
|
*
|
|
|
|
* If a #GVariant array is returned then each item in the array is a
|
|
|
|
* possible value for the state. If a #GVariant pair (ie: two-tuple) is
|
|
|
|
* returned then the tuple specifies the inclusive lower and upper bound
|
|
|
|
* of valid values for the state.
|
|
|
|
*
|
|
|
|
* In any case, the information is merely a hint. It may be possible to
|
|
|
|
* have a state value outside of the hinted range and setting a value
|
|
|
|
* within the range may fail.
|
|
|
|
*
|
|
|
|
* The return value (if non-%NULL) should be freed with
|
|
|
|
* g_variant_unref() when it is no longer required.
|
|
|
|
*
|
2010-09-24 20:51:26 +02:00
|
|
|
* Return value: (transfer full): the state range hint
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
GVariant *
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_get_action_state_hint (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->get_action_state_hint (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_get_action_enabled:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to query
|
|
|
|
*
|
|
|
|
* Checks if the named action within @action_group is currently enabled.
|
|
|
|
*
|
|
|
|
* An action must be enabled in order to be activated or in order to
|
|
|
|
* have its state changed from outside callers.
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Return value: whether or not the action is currently enabled
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
gboolean
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_get_action_enabled (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->get_action_enabled (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_get_action_state:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to query
|
|
|
|
*
|
|
|
|
* Queries the current state of the named action within @action_group.
|
|
|
|
*
|
|
|
|
* If the action is not stateful then %NULL will be returned. If the
|
|
|
|
* action is stateful then the type of the return value is the type
|
2011-06-05 00:44:44 +02:00
|
|
|
* given by g_action_group_get_action_state_type().
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* The return value (if non-%NULL) should be freed with
|
|
|
|
* g_variant_unref() when it is no longer required.
|
|
|
|
*
|
2010-08-30 18:58:49 +02:00
|
|
|
* Return value: (allow-none): the current state of the action
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
GVariant *
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_get_action_state (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
return G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->get_action_state (action_group, action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 03:41:00 +01:00
|
|
|
* g_action_group_change_action_state:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to request the change on
|
|
|
|
* @value: the new state
|
|
|
|
*
|
|
|
|
* Request for the state of the named action within @action_group to be
|
|
|
|
* changed to @value.
|
|
|
|
*
|
|
|
|
* The action must be stateful and @value must be of the correct type.
|
2011-06-05 00:44:44 +02:00
|
|
|
* See g_action_group_get_action_state_type().
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* This call merely requests a change. The action may refuse to change
|
|
|
|
* its state or may change its state to something other than @value.
|
2011-06-05 00:44:44 +02:00
|
|
|
* See g_action_group_get_action_state_hint().
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-08-22 01:11:03 +02:00
|
|
|
* If the @value GVariant is floating, it is consumed.
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_change_action_state (GActionGroup *action_group,
|
|
|
|
const gchar *action_name,
|
|
|
|
GVariant *value)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
g_return_if_fail (value != NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->change_action_state (action_group, action_name, value);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-01 02:08:25 +01:00
|
|
|
* g_action_group_activate_action:
|
2010-08-18 06:30:44 +02:00
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of the action to activate
|
|
|
|
* @parameter: (allow-none): parameters to the activation
|
|
|
|
*
|
|
|
|
* Activate the named action within @action_group.
|
|
|
|
*
|
|
|
|
* If the action is expecting a parameter, then the correct type of
|
|
|
|
* parameter must be given as @parameter. If the action is expecting no
|
|
|
|
* parameters then @parameter must be %NULL. See
|
2011-06-05 00:44:44 +02:00
|
|
|
* g_action_group_get_action_parameter_type().
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
2010-10-11 16:45:51 +02:00
|
|
|
g_action_group_activate_action (GActionGroup *action_group,
|
|
|
|
const gchar *action_name,
|
|
|
|
GVariant *parameter)
|
2010-08-18 06:30:44 +02:00
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
|
2010-08-30 17:31:06 +02:00
|
|
|
G_ACTION_GROUP_GET_IFACE (action_group)
|
2010-10-11 16:45:51 +02:00
|
|
|
->activate_action (action_group, action_name, parameter);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_group_action_added:
|
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of an action in the group
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Emits the #GActionGroup::action-added signal on @action_group.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* This function should only be called by #GActionGroup implementations.
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
g_action_group_action_added (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
|
2010-08-18 06:30:44 +02:00
|
|
|
g_signal_emit (action_group,
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_ADDED],
|
2010-08-18 17:54:36 +02:00
|
|
|
g_quark_try_string (action_name),
|
|
|
|
action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_group_action_removed:
|
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of an action in the group
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Emits the #GActionGroup::action-removed signal on @action_group.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* This function should only be called by #GActionGroup implementations.
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
g_action_group_action_removed (GActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
|
2010-08-18 06:30:44 +02:00
|
|
|
g_signal_emit (action_group,
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_REMOVED],
|
2010-08-18 17:54:36 +02:00
|
|
|
g_quark_try_string (action_name),
|
|
|
|
action_name);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_group_action_enabled_changed:
|
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of an action in the group
|
|
|
|
* @enabled: whether or not the action is now enabled
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Emits the #GActionGroup::action-enabled-changed signal on @action_group.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* This function should only be called by #GActionGroup implementations.
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
g_action_group_action_enabled_changed (GActionGroup *action_group,
|
|
|
|
const gchar *action_name,
|
|
|
|
gboolean enabled)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
|
|
|
|
enabled = !!enabled;
|
|
|
|
|
2010-08-18 06:30:44 +02:00
|
|
|
g_signal_emit (action_group,
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_ENABLED_CHANGED],
|
2010-08-18 17:54:36 +02:00
|
|
|
g_quark_try_string (action_name),
|
|
|
|
action_name,
|
|
|
|
enabled);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_action_group_action_state_changed:
|
|
|
|
* @action_group: a #GActionGroup
|
|
|
|
* @action_name: the name of an action in the group
|
|
|
|
* @state: the new state of the named action
|
|
|
|
*
|
2010-08-18 17:54:36 +02:00
|
|
|
* Emits the #GActionGroup::action-state-changed signal on @action_group.
|
2010-08-18 06:30:44 +02:00
|
|
|
*
|
|
|
|
* This function should only be called by #GActionGroup implementations.
|
|
|
|
*
|
2010-10-11 21:57:09 +02:00
|
|
|
* Since: 2.28
|
2010-08-18 06:30:44 +02:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
g_action_group_action_state_changed (GActionGroup *action_group,
|
|
|
|
const gchar *action_name,
|
|
|
|
GVariant *state)
|
|
|
|
{
|
2010-08-18 17:54:36 +02:00
|
|
|
g_return_if_fail (G_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (action_name != NULL);
|
|
|
|
|
2010-08-18 06:30:44 +02:00
|
|
|
g_signal_emit (action_group,
|
|
|
|
g_action_group_signals[SIGNAL_ACTION_STATE_CHANGED],
|
2010-08-18 17:54:36 +02:00
|
|
|
g_quark_try_string (action_name),
|
|
|
|
action_name,
|
|
|
|
state);
|
2010-08-18 06:30:44 +02:00
|
|
|
}
|