2 * Copyright © 2010 Codethink Limited
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published
6 * by the Free Software Foundation; either version 2 of the licence or (at
7 * your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Authors: Ryan Lortie <desrt@desrt.ca>
26 G_DEFINE_INTERFACE (GAction, g_action, G_TYPE_OBJECT)
31 * @short_description: An action interface
34 * #GAction represents a single named action.
36 * The main interface to an action is that it can be activated with
37 * g_action_activate(). This results in the 'activate' signal being
38 * emitted. An activation has a #GVariant parameter (which may be
39 * %NULL). The correct type for the parameter is determined by a static
40 * parameter type (which is given at construction time).
42 * An action may optionally have a state, in which case the state may be
43 * set with g_action_change_state(). This call takes a #GVariant. The
44 * correct type for the state is determined by a static state type
45 * (which is given at construction time).
47 * The state may have a hint associated with it, specifying its valid
50 * #GAction is merely the interface to the concept of an action, as
51 * described above. Various implementations of actions exist, including
54 * In all cases, the implementing class is responsible for storing the
55 * name of the action, the parameter type, the enabled state, the
56 * optional state type and the state and emitting the appropriate
57 * signals when these change. The implementor responsible for filtering
58 * calls to g_action_activate() and g_action_change_state() for type
59 * safety and for the state being enabled.
61 * Probably the only useful thing to do with a #GAction is to put it
62 * inside of a #GSimpleActionGroup.
67 * @get_name: the virtual function pointer for g_action_get_name()
68 * @get_parameter_type: the virtual function pointer for g_action_get_parameter_type()
69 * @get_state_type: the virtual function pointer for g_action_get_state_type()
70 * @get_state_hint: the virtual function pointer for g_action_get_state_hint()
71 * @get_enabled: the virtual function pointer for g_action_get_enabled()
72 * @get_state: the virtual function pointer for g_action_get_state()
73 * @change_state: the virtual function pointer for g_action_change_state()
74 * @activate: the virtual function pointer for g_action_activate(). Note that #GAction does not have an
75 * 'activate' signal but that implementations of it may have one.
77 * The virtual function table for #GAction.
83 g_action_default_init (GActionInterface *iface)
88 * The name of the action. This is mostly meaningful for identifying
89 * the action once it has been added to a #GActionGroup. It is immutable.
93 g_object_interface_install_property (iface,
94 g_param_spec_string ("name",
96 P_("The name used to invoke the action"),
99 G_PARAM_STATIC_STRINGS));
102 * GAction:parameter-type:
104 * The type of the parameter that must be given when activating the
105 * action. This is immutable, and may be %NULL if no parameter is needed when
106 * activating the action.
110 g_object_interface_install_property (iface,
111 g_param_spec_boxed ("parameter-type",
112 P_("Parameter Type"),
113 P_("The type of GVariant passed to activate()"),
116 G_PARAM_STATIC_STRINGS));
121 * If @action is currently enabled.
123 * If the action is disabled then calls to g_action_activate() and
124 * g_action_change_state() have no effect.
128 g_object_interface_install_property (iface,
129 g_param_spec_boolean ("enabled",
131 P_("If the action can be activated"),
134 G_PARAM_STATIC_STRINGS));
137 * GAction:state-type:
139 * The #GVariantType of the state that the action has, or %NULL if the
140 * action is stateless. This is immutable.
144 g_object_interface_install_property (iface,
145 g_param_spec_boxed ("state-type",
147 P_("The type of the state kept by the action"),
150 G_PARAM_STATIC_STRINGS));
155 * The state of the action, or %NULL if the action is stateless.
159 g_object_interface_install_property (iface,
160 g_param_spec_variant ("state",
162 P_("The state the action is in"),
166 G_PARAM_STATIC_STRINGS));
170 * g_action_change_state:
171 * @action: a #GAction
172 * @value: the new state
174 * Request for the state of @action to be changed to @value.
176 * The action must be stateful and @value must be of the correct type.
177 * See g_action_get_state_type().
179 * This call merely requests a change. The action may refuse to change
180 * its state or may change its state to something other than @value.
181 * See g_action_get_state_hint().
183 * If the @value GVariant is floating, it is consumed.
188 g_action_change_state (GAction *action,
191 const GVariantType *state_type;
193 g_return_if_fail (G_IS_ACTION (action));
194 g_return_if_fail (value != NULL);
195 state_type = g_action_get_state_type (action);
196 g_return_if_fail (state_type != NULL);
197 g_return_if_fail (g_variant_is_of_type (value, state_type));
199 g_variant_ref_sink (value);
201 G_ACTION_GET_IFACE (action)
202 ->change_state (action, value);
204 g_variant_unref (value);
208 * g_action_get_state:
209 * @action: a #GAction
211 * Queries the current state of @action.
213 * If the action is not stateful then %NULL will be returned. If the
214 * action is stateful then the type of the return value is the type
215 * given by g_action_get_state_type().
217 * The return value (if non-%NULL) should be freed with
218 * g_variant_unref() when it is no longer required.
220 * Returns: (transfer full): the current state of the action
225 g_action_get_state (GAction *action)
227 g_return_val_if_fail (G_IS_ACTION (action), NULL);
229 return G_ACTION_GET_IFACE (action)
230 ->get_state (action);
235 * @action: a #GAction
237 * Queries the name of @action.
239 * Returns: the name of the action
244 g_action_get_name (GAction *action)
246 g_return_val_if_fail (G_IS_ACTION (action), NULL);
248 return G_ACTION_GET_IFACE (action)
253 * g_action_get_parameter_type:
254 * @action: a #GAction
256 * Queries the type of the parameter that must be given when activating
259 * When activating the action using g_action_activate(), the #GVariant
260 * given to that function must be of the type returned by this function.
262 * In the case that this function returns %NULL, you must not give any
263 * #GVariant, but %NULL instead.
265 * Returns: (allow-none): the parameter type
270 g_action_get_parameter_type (GAction *action)
272 g_return_val_if_fail (G_IS_ACTION (action), NULL);
274 return G_ACTION_GET_IFACE (action)
275 ->get_parameter_type (action);
279 * g_action_get_state_type:
280 * @action: a #GAction
282 * Queries the type of the state of @action.
284 * If the action is stateful (e.g. created with
285 * g_simple_action_new_stateful()) then this function returns the
286 * #GVariantType of the state. This is the type of the initial value
287 * given as the state. All calls to g_action_change_state() must give a
288 * #GVariant of this type and g_action_get_state() will return a
289 * #GVariant of the same type.
291 * If the action is not stateful (e.g. created with g_simple_action_new())
292 * then this function will return %NULL. In that case, g_action_get_state()
293 * will return %NULL and you must not call g_action_change_state().
295 * Returns: (allow-none): the state type, if the action is stateful
300 g_action_get_state_type (GAction *action)
302 g_return_val_if_fail (G_IS_ACTION (action), NULL);
304 return G_ACTION_GET_IFACE (action)
305 ->get_state_type (action);
309 * g_action_get_state_hint:
310 * @action: a #GAction
312 * Requests a hint about the valid range of values for the state of
315 * If %NULL is returned it either means that the action is not stateful
316 * or that there is no hint about the valid range of values for the
317 * state of the action.
319 * If a #GVariant array is returned then each item in the array is a
320 * possible value for the state. If a #GVariant pair (ie: two-tuple) is
321 * returned then the tuple specifies the inclusive lower and upper bound
322 * of valid values for the state.
324 * In any case, the information is merely a hint. It may be possible to
325 * have a state value outside of the hinted range and setting a value
326 * within the range may fail.
328 * The return value (if non-%NULL) should be freed with
329 * g_variant_unref() when it is no longer required.
331 * Returns: (nullable) (transfer full): the state range hint
336 g_action_get_state_hint (GAction *action)
338 g_return_val_if_fail (G_IS_ACTION (action), NULL);
340 return G_ACTION_GET_IFACE (action)
341 ->get_state_hint (action);
345 * g_action_get_enabled:
346 * @action: a #GAction
348 * Checks if @action is currently enabled.
350 * An action must be enabled in order to be activated or in order to
351 * have its state changed from outside callers.
353 * Returns: whether the action is enabled
358 g_action_get_enabled (GAction *action)
360 g_return_val_if_fail (G_IS_ACTION (action), FALSE);
362 return G_ACTION_GET_IFACE (action)
363 ->get_enabled (action);
368 * @action: a #GAction
369 * @parameter: (allow-none): the parameter to the activation
371 * Activates the action.
373 * @parameter must be the correct type of parameter for the action (ie:
374 * the parameter type given at construction time). If the parameter
375 * type was %NULL then @parameter must also be %NULL.
377 * If the @parameter GVariant is floating, it is consumed.
382 g_action_activate (GAction *action,
385 g_return_if_fail (G_IS_ACTION (action));
387 if (parameter != NULL)
388 g_variant_ref_sink (parameter);
390 G_ACTION_GET_IFACE (action)
391 ->activate (action, parameter);
393 if (parameter != NULL)
394 g_variant_unref (parameter);
398 * g_action_name_is_valid:
399 * @action_name: an potential action name
401 * Checks if @action_name is valid.
403 * @action_name is valid if it consists only of alphanumeric characters,
404 * plus '-' and '.'. The empty string is not a valid action name.
406 * It is an error to call this function with a non-utf8 @action_name.
407 * @action_name must not be %NULL.
409 * Returns: %TRUE if @action_name is valid
414 g_action_name_is_valid (const gchar *action_name)
419 g_return_val_if_fail (action_name != NULL, FALSE);
421 for (i = 0; (c = action_name[i]); i++)
422 if (!g_ascii_isalnum (c) && c != '.' && c != '-')
429 * g_action_parse_detailed_name:
430 * @detailed_name: a detailed action name
431 * @action_name: (out): the action name
432 * @target_value: (out): the target value, or %NULL for no target
433 * @error: a pointer to a %NULL #GError, or %NULL
435 * Parses a detailed action name into its separate name and target
438 * Detailed action names can have three formats.
440 * The first format is used to represent an action name with no target
441 * value and consists of just an action name containing no whitespace
442 * nor the characters ':', '(' or ')'. For example: "app.action".
444 * The second format is used to represent an action with a target value
445 * that is a non-empty string consisting only of alphanumerics, plus '-'
446 * and '.'. In that case, the action name and target value are
447 * separated by a double colon ("::"). For example:
448 * "app.action::target".
450 * The third format is used to represent an action with any type of
451 * target value, including strings. The target value follows the action
452 * name, surrounded in parens. For example: "app.action(42)". The
453 * target value is parsed using g_variant_parse(). If a tuple-typed
454 * value is desired, it must be specified in the same way, resulting in
455 * two sets of parens, for example: "app.action((1,2,3))". A string
456 * target can be specified this way as well: "app.action('target')".
457 * For strings, this third format must be used if * target value is
458 * empty or contains characters other than alphanumerics, '-' and '.'.
460 * Returns: %TRUE if successful, else %FALSE with @error set
465 g_action_parse_detailed_name (const gchar *detailed_name,
467 GVariant **target_value,
474 /* For historical (compatibility) reasons, this function accepts some
475 * cases of invalid action names as long as they don't interfere with
476 * the separation of the action from the target value.
478 * We decide which format we have based on which we see first between
482 if (*detailed_name == '\0' || *detailed_name == ' ')
485 base_len = strcspn (detailed_name, ": ()");
486 target = detailed_name + base_len;
487 target_len = strlen (target);
496 if (target[1] != ':')
499 *target_value = g_variant_ref_sink (g_variant_new_string (target + 2));
504 if (target[target_len - 1] != ')')
507 *target_value = g_variant_parse (NULL, target + 1, target + target_len - 1, NULL, error);
508 if (*target_value == NULL)
514 *target_value = NULL;
518 *action_name = g_strndup (detailed_name, base_len);
526 g_set_error (error, G_VARIANT_PARSE_ERROR, G_VARIANT_PARSE_ERROR_FAILED,
527 "Detailed action name '%s' has invalid format", detailed_name);
529 g_prefix_error (error, "Detailed action name '%s' has invalid format: ", detailed_name);
536 * g_action_print_detailed_name:
537 * @action_name: a valid action name
538 * @target_value: (allow-none): a #GVariant target value, or %NULL
540 * Formats a detailed action name from @action_name and @target_value.
542 * It is an error to call this function with an invalid action name.
544 * This function is the opposite of
545 * g_action_parse_detailed_action_name(). It will produce a string that
546 * can be parsed back to the @action_name and @target_value by that
549 * See that function for the types of strings that will be printed by
552 * Returns: a detailed format string
557 g_action_print_detailed_name (const gchar *action_name,
558 GVariant *target_value)
560 g_return_val_if_fail (g_action_name_is_valid (action_name), NULL);
562 if (target_value == NULL)
563 return g_strdup (action_name);
565 if (g_variant_is_of_type (target_value, G_VARIANT_TYPE_STRING))
567 const gchar *str = g_variant_get_string (target_value, NULL);
569 if (g_action_name_is_valid (str))
570 return g_strconcat (action_name, "::", str, NULL);
574 GString *result = g_string_new (action_name);
575 g_string_append_c (result, '(');
576 g_variant_print_string (target_value, result, TRUE);
577 g_string_append_c (result, ')');
579 return g_string_free (result, FALSE);