cleanup
[platform/upstream/glib.git] / gio / gactiongroup.c
1 /*
2  * Copyright © 2010 Codethink Limited
3  *
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.
8  *
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.
13  *
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/>.
16  *
17  * Authors: Ryan Lortie <desrt@desrt.ca>
18  */
19
20 #include "config.h"
21 #include "gactiongroup.h"
22 #include "gaction.h"
23 #include "glibintl.h"
24
25 /**
26  * SECTION:gactiongroup
27  * @title: GActionGroup
28  * @short_description: A group of actions
29  * @include: gio/gio.h
30  * @see_also: #GAction
31  *
32  * #GActionGroup represents a group of actions. Actions can be used to
33  * expose functionality in a structured way, either from one part of a
34  * program to another, or to the outside world. Action groups are often
35  * used together with a #GMenuModel that provides additional
36  * representation data for displaying the actions to the user, e.g. in
37  * a menu.
38  *
39  * The main way to interact with the actions in a GActionGroup is to
40  * activate them with g_action_group_activate_action(). Activating an
41  * action may require a #GVariant parameter. The required type of the
42  * parameter can be inquired with g_action_group_get_action_parameter_type().
43  * Actions may be disabled, see g_action_group_get_action_enabled().
44  * Activating a disabled action has no effect.
45  *
46  * Actions may optionally have a state in the form of a #GVariant. The
47  * current state of an action can be inquired with
48  * g_action_group_get_action_state(). Activating a stateful action may
49  * change its state, but it is also possible to set the state by calling
50  * g_action_group_change_action_state().
51  *
52  * As typical example, consider a text editing application which has an
53  * option to change the current font to 'bold'. A good way to represent
54  * this would be a stateful action, with a boolean state. Activating the
55  * action would toggle the state.
56  *
57  * Each action in the group has a unique name (which is a string).  All
58  * method calls, except g_action_group_list_actions() take the name of
59  * an action as an argument.
60  *
61  * The #GActionGroup API is meant to be the 'public' API to the action
62  * group.  The calls here are exactly the interaction that 'external
63  * forces' (eg: UI, incoming D-Bus messages, etc.) are supposed to have
64  * with actions.  'Internal' APIs (ie: ones meant only to be accessed by
65  * the action group implementation) are found on subclasses.  This is
66  * why you will find - for example - g_action_group_get_action_enabled()
67  * but not an equivalent set() call.
68  *
69  * Signals are emitted on the action group in response to state changes
70  * on individual actions.
71  *
72  * Implementations of #GActionGroup should provide implementations for
73  * the virtual functions g_action_group_list_actions() and
74  * g_action_group_query_action().  The other virtual functions should
75  * not be implemented - their "wrappers" are actually implemented with
76  * calls to g_action_group_query_action().
77  */
78
79 /**
80  * GActionGroupInterface:
81  * @has_action: the virtual function pointer for g_action_group_has_action()
82  * @list_actions: the virtual function pointer for g_action_group_list_actions()
83  * @get_action_parameter_type: the virtual function pointer for g_action_group_get_action_parameter_type()
84  * @get_action_state_type: the virtual function pointer for g_action_group_get_action_state_type()
85  * @get_action_state_hint: the virtual function pointer for g_action_group_get_action_state_hint()
86  * @get_action_enabled: the virtual function pointer for g_action_group_get_action_enabled()
87  * @get_action_state: the virtual function pointer for g_action_group_get_action_state()
88  * @change_action_state: the virtual function pointer for g_action_group_change_action_state()
89  * @query_action: the virtual function pointer for g_action_group_query_action()
90  * @activate_action: the virtual function pointer for g_action_group_activate_action()
91  * @change_action_state: the virtual function pointer for g_action_group_change_action_state()
92  * @action_added: the class closure for the #GActionGroup::action-added signal
93  * @action_removed: the class closure for the #GActionGroup::action-removed signal
94  * @action_enabled_changed: the class closure for the #GActionGroup::action-enabled-changed signal
95  * @action_state_changed: the class closure for the #GActionGroup::action-enabled-changed signal
96  *
97  * The virtual function table for #GActionGroup.
98  *
99  * Since: 2.28
100  **/
101
102 G_DEFINE_INTERFACE (GActionGroup, g_action_group, G_TYPE_OBJECT)
103
104 enum
105 {
106   SIGNAL_ACTION_ADDED,
107   SIGNAL_ACTION_REMOVED,
108   SIGNAL_ACTION_ENABLED_CHANGED,
109   SIGNAL_ACTION_STATE_CHANGED,
110   NR_SIGNALS
111 };
112
113 static guint g_action_group_signals[NR_SIGNALS];
114
115 static gboolean
116 g_action_group_real_has_action (GActionGroup *action_group,
117                                 const gchar  *action_name)
118 {
119   return g_action_group_query_action (action_group, action_name, NULL, NULL, NULL, NULL, NULL);
120 }
121
122 static gboolean
123 g_action_group_real_get_action_enabled (GActionGroup *action_group,
124                                         const gchar  *action_name)
125 {
126   gboolean enabled = FALSE;
127
128   g_action_group_query_action (action_group, action_name, &enabled, NULL, NULL, NULL, NULL);
129
130   return enabled;
131 }
132
133 static const GVariantType *
134 g_action_group_real_get_action_parameter_type (GActionGroup *action_group,
135                                                const gchar  *action_name)
136 {
137   const GVariantType *type = NULL;
138
139   g_action_group_query_action (action_group, action_name, NULL, &type, NULL, NULL, NULL);
140
141   return type;
142 }
143
144 static const GVariantType *
145 g_action_group_real_get_action_state_type (GActionGroup *action_group,
146                                            const gchar  *action_name)
147 {
148   const GVariantType *type = NULL;
149
150   g_action_group_query_action (action_group, action_name, NULL, NULL, &type, NULL, NULL);
151
152   return type;
153 }
154
155 static GVariant *
156 g_action_group_real_get_action_state_hint (GActionGroup *action_group,
157                                            const gchar  *action_name)
158 {
159   GVariant *hint = NULL;
160
161   g_action_group_query_action (action_group, action_name, NULL, NULL, NULL, &hint, NULL);
162
163   return hint;
164 }
165
166 static GVariant *
167 g_action_group_real_get_action_state (GActionGroup *action_group,
168                                       const gchar  *action_name)
169 {
170   GVariant *state = NULL;
171
172   g_action_group_query_action (action_group, action_name, NULL, NULL, NULL, NULL, &state);
173
174   return state;
175 }
176
177 static gboolean
178 g_action_group_real_query_action (GActionGroup        *action_group,
179                                   const gchar         *action_name,
180                                   gboolean            *enabled,
181                                   const GVariantType **parameter_type,
182                                   const GVariantType **state_type,
183                                   GVariant           **state_hint,
184                                   GVariant           **state)
185 {
186   GActionGroupInterface *iface = G_ACTION_GROUP_GET_IFACE (action_group);
187
188   /* we expect implementations to override this method, but we also
189    * allow for implementations that existed before this method was
190    * introduced to override the individual accessors instead.
191    *
192    * detect the case that neither has happened and report it.
193    */
194   if G_UNLIKELY (iface->has_action == g_action_group_real_has_action ||
195                  iface->get_action_enabled == g_action_group_real_get_action_enabled ||
196                  iface->get_action_parameter_type == g_action_group_real_get_action_parameter_type ||
197                  iface->get_action_state_type == g_action_group_real_get_action_state_type ||
198                  iface->get_action_state_hint == g_action_group_real_get_action_state_hint ||
199                  iface->get_action_state == g_action_group_real_get_action_state)
200     {
201       g_critical ("Class '%s' implements GActionGroup interface without overriding "
202                   "query_action() method -- bailing out to avoid infinite recursion.",
203                   G_OBJECT_TYPE_NAME (action_group));
204       return FALSE;
205     }
206
207   if (!(* iface->has_action) (action_group, action_name))
208     return FALSE;
209
210   if (enabled != NULL)
211     *enabled = (* iface->get_action_enabled) (action_group, action_name);
212
213   if (parameter_type != NULL)
214     *parameter_type = (* iface->get_action_parameter_type) (action_group, action_name);
215
216   if (state_type != NULL)
217     *state_type = (* iface->get_action_state_type) (action_group, action_name);
218
219   if (state_hint != NULL)
220     *state_hint = (* iface->get_action_state_hint) (action_group, action_name);
221
222   if (state != NULL)
223     *state = (* iface->get_action_state) (action_group, action_name);
224
225   return TRUE;
226 }
227
228 static void
229 g_action_group_default_init (GActionGroupInterface *iface)
230 {
231   iface->has_action = g_action_group_real_has_action;
232   iface->get_action_enabled = g_action_group_real_get_action_enabled;
233   iface->get_action_parameter_type = g_action_group_real_get_action_parameter_type;
234   iface->get_action_state_type = g_action_group_real_get_action_state_type;
235   iface->get_action_state_hint = g_action_group_real_get_action_state_hint;
236   iface->get_action_state = g_action_group_real_get_action_state;
237   iface->query_action = g_action_group_real_query_action;
238
239   /**
240    * GActionGroup::action-added:
241    * @action_group: the #GActionGroup that changed
242    * @action_name: the name of the action in @action_group
243    *
244    * Signals that a new action was just added to the group.
245    * This signal is emitted after the action has been added
246    * and is now visible.
247    *
248    * Since: 2.28
249    **/
250   g_action_group_signals[SIGNAL_ACTION_ADDED] =
251     g_signal_new (I_("action-added"),
252                   G_TYPE_ACTION_GROUP,
253                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
254                   G_STRUCT_OFFSET (GActionGroupInterface, action_added),
255                   NULL, NULL,
256                   g_cclosure_marshal_VOID__STRING,
257                   G_TYPE_NONE, 1,
258                   G_TYPE_STRING);
259
260   /**
261    * GActionGroup::action-removed:
262    * @action_group: the #GActionGroup that changed
263    * @action_name: the name of the action in @action_group
264    *
265    * Signals that an action is just about to be removed from the group.
266    * This signal is emitted before the action is removed, so the action
267    * is still visible and can be queried from the signal handler.
268    *
269    * Since: 2.28
270    **/
271   g_action_group_signals[SIGNAL_ACTION_REMOVED] =
272     g_signal_new (I_("action-removed"),
273                   G_TYPE_ACTION_GROUP,
274                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
275                   G_STRUCT_OFFSET (GActionGroupInterface, action_removed),
276                   NULL, NULL,
277                   g_cclosure_marshal_VOID__STRING,
278                   G_TYPE_NONE, 1,
279                   G_TYPE_STRING);
280
281
282   /**
283    * GActionGroup::action-enabled-changed:
284    * @action_group: the #GActionGroup that changed
285    * @action_name: the name of the action in @action_group
286    * @enabled: whether the action is enabled or not
287    *
288    * Signals that the enabled status of the named action has changed.
289    *
290    * Since: 2.28
291    **/
292   g_action_group_signals[SIGNAL_ACTION_ENABLED_CHANGED] =
293     g_signal_new (I_("action-enabled-changed"),
294                   G_TYPE_ACTION_GROUP,
295                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
296                   G_STRUCT_OFFSET (GActionGroupInterface,
297                                    action_enabled_changed),
298                   NULL, NULL,
299                   NULL,
300                   G_TYPE_NONE, 2,
301                   G_TYPE_STRING,
302                   G_TYPE_BOOLEAN);
303
304   /**
305    * GActionGroup::action-state-changed:
306    * @action_group: the #GActionGroup that changed
307    * @action_name: the name of the action in @action_group
308    * @value: the new value of the state
309    *
310    * Signals that the state of the named action has changed.
311    *
312    * Since: 2.28
313    **/
314   g_action_group_signals[SIGNAL_ACTION_STATE_CHANGED] =
315     g_signal_new (I_("action-state-changed"),
316                   G_TYPE_ACTION_GROUP,
317                   G_SIGNAL_RUN_LAST |
318                   G_SIGNAL_DETAILED |
319                   G_SIGNAL_MUST_COLLECT,
320                   G_STRUCT_OFFSET (GActionGroupInterface,
321                                    action_state_changed),
322                   NULL, NULL,
323                   NULL,
324                   G_TYPE_NONE, 2,
325                   G_TYPE_STRING,
326                   G_TYPE_VARIANT);
327 }
328
329 /**
330  * g_action_group_list_actions:
331  * @action_group: a #GActionGroup
332  *
333  * Lists the actions contained within @action_group.
334  *
335  * The caller is responsible for freeing the list with g_strfreev() when
336  * it is no longer required.
337  *
338  * Returns: (transfer full): a %NULL-terminated array of the names of the
339  * actions in the groupb
340  *
341  * Since: 2.28
342  **/
343 gchar **
344 g_action_group_list_actions (GActionGroup *action_group)
345 {
346   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
347
348   return G_ACTION_GROUP_GET_IFACE (action_group)
349     ->list_actions (action_group);
350 }
351
352 /**
353  * g_action_group_has_action:
354  * @action_group: a #GActionGroup
355  * @action_name: the name of the action to check for
356  *
357  * Checks if the named action exists within @action_group.
358  *
359  * Returns: whether the named action exists
360  *
361  * Since: 2.28
362  **/
363 gboolean
364 g_action_group_has_action (GActionGroup *action_group,
365                            const gchar  *action_name)
366 {
367   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), FALSE);
368
369   return G_ACTION_GROUP_GET_IFACE (action_group)
370     ->has_action (action_group, action_name);
371 }
372
373 /**
374  * g_action_group_get_action_parameter_type:
375  * @action_group: a #GActionGroup
376  * @action_name: the name of the action to query
377  *
378  * Queries the type of the parameter that must be given when activating
379  * the named action within @action_group.
380  *
381  * When activating the action using g_action_group_activate_action(),
382  * the #GVariant given to that function must be of the type returned
383  * by this function.
384  *
385  * In the case that this function returns %NULL, you must not give any
386  * #GVariant, but %NULL instead.
387  *
388  * The parameter type of a particular action will never change but it is
389  * possible for an action to be removed and for a new action to be added
390  * with the same name but a different parameter type.
391  *
392  * Returns: (nullable): the parameter type
393  *
394  * Since: 2.28
395  **/
396 const GVariantType *
397 g_action_group_get_action_parameter_type (GActionGroup *action_group,
398                                           const gchar  *action_name)
399 {
400   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
401
402   return G_ACTION_GROUP_GET_IFACE (action_group)
403     ->get_action_parameter_type (action_group, action_name);
404 }
405
406 /**
407  * g_action_group_get_action_state_type:
408  * @action_group: a #GActionGroup
409  * @action_name: the name of the action to query
410  *
411  * Queries the type of the state of the named action within
412  * @action_group.
413  *
414  * If the action is stateful then this function returns the
415  * #GVariantType of the state.  All calls to
416  * g_action_group_change_action_state() must give a #GVariant of this
417  * type and g_action_group_get_action_state() will return a #GVariant
418  * of the same type.
419  *
420  * If the action is not stateful then this function will return %NULL.
421  * In that case, g_action_group_get_action_state() will return %NULL
422  * and you must not call g_action_group_change_action_state().
423  *
424  * The state type of a particular action will never change but it is
425  * possible for an action to be removed and for a new action to be added
426  * with the same name but a different state type.
427  *
428  * Returns: (nullable) (transfer full): the state type, if the action
429  * is stateful
430  *
431  * Since: 2.28
432  **/
433 const GVariantType *
434 g_action_group_get_action_state_type (GActionGroup *action_group,
435                                       const gchar  *action_name)
436 {
437   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
438
439   return G_ACTION_GROUP_GET_IFACE (action_group)
440     ->get_action_state_type (action_group, action_name);
441 }
442
443 /**
444  * g_action_group_get_action_state_hint:
445  * @action_group: a #GActionGroup
446  * @action_name: the name of the action to query
447  *
448  * Requests a hint about the valid range of values for the state of the
449  * named action within @action_group.
450  *
451  * If %NULL is returned it either means that the action is not stateful
452  * or that there is no hint about the valid range of values for the
453  * state of the action.
454  *
455  * If a #GVariant array is returned then each item in the array is a
456  * possible value for the state.  If a #GVariant pair (ie: two-tuple) is
457  * returned then the tuple specifies the inclusive lower and upper bound
458  * of valid values for the state.
459  *
460  * In any case, the information is merely a hint.  It may be possible to
461  * have a state value outside of the hinted range and setting a value
462  * within the range may fail.
463  *
464  * The return value (if non-%NULL) should be freed with
465  * g_variant_unref() when it is no longer required.
466  *
467  * Returns: (nullable) (transfer full): the state range hint
468  *
469  * Since: 2.28
470  **/
471 GVariant *
472 g_action_group_get_action_state_hint (GActionGroup *action_group,
473                                       const gchar  *action_name)
474 {
475   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
476
477   return G_ACTION_GROUP_GET_IFACE (action_group)
478     ->get_action_state_hint (action_group, action_name);
479 }
480
481 /**
482  * g_action_group_get_action_enabled:
483  * @action_group: a #GActionGroup
484  * @action_name: the name of the action to query
485  *
486  * Checks if the named action within @action_group is currently enabled.
487  *
488  * An action must be enabled in order to be activated or in order to
489  * have its state changed from outside callers.
490  *
491  * Returns: whether or not the action is currently enabled
492  *
493  * Since: 2.28
494  **/
495 gboolean
496 g_action_group_get_action_enabled (GActionGroup *action_group,
497                                    const gchar  *action_name)
498 {
499   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), FALSE);
500
501   return G_ACTION_GROUP_GET_IFACE (action_group)
502     ->get_action_enabled (action_group, action_name);
503 }
504
505 /**
506  * g_action_group_get_action_state:
507  * @action_group: a #GActionGroup
508  * @action_name: the name of the action to query
509  *
510  * Queries the current state of the named action within @action_group.
511  *
512  * If the action is not stateful then %NULL will be returned.  If the
513  * action is stateful then the type of the return value is the type
514  * given by g_action_group_get_action_state_type().
515  *
516  * The return value (if non-%NULL) should be freed with
517  * g_variant_unref() when it is no longer required.
518  *
519  * Returns: (nullable): the current state of the action
520  *
521  * Since: 2.28
522  **/
523 GVariant *
524 g_action_group_get_action_state (GActionGroup *action_group,
525                                  const gchar  *action_name)
526 {
527   g_return_val_if_fail (G_IS_ACTION_GROUP (action_group), NULL);
528
529   return G_ACTION_GROUP_GET_IFACE (action_group)
530     ->get_action_state (action_group, action_name);
531 }
532
533 /**
534  * g_action_group_change_action_state:
535  * @action_group: a #GActionGroup
536  * @action_name: the name of the action to request the change on
537  * @value: the new state
538  *
539  * Request for the state of the named action within @action_group to be
540  * changed to @value.
541  *
542  * The action must be stateful and @value must be of the correct type.
543  * See g_action_group_get_action_state_type().
544  *
545  * This call merely requests a change.  The action may refuse to change
546  * its state or may change its state to something other than @value.
547  * See g_action_group_get_action_state_hint().
548  *
549  * If the @value GVariant is floating, it is consumed.
550  *
551  * Since: 2.28
552  **/
553 void
554 g_action_group_change_action_state (GActionGroup *action_group,
555                                     const gchar  *action_name,
556                                     GVariant     *value)
557 {
558   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
559   g_return_if_fail (action_name != NULL);
560   g_return_if_fail (value != NULL);
561
562   G_ACTION_GROUP_GET_IFACE (action_group)
563     ->change_action_state (action_group, action_name, value);
564 }
565
566 /**
567  * g_action_group_activate_action:
568  * @action_group: a #GActionGroup
569  * @action_name: the name of the action to activate
570  * @parameter: (allow-none): parameters to the activation
571  *
572  * Activate the named action within @action_group.
573  *
574  * If the action is expecting a parameter, then the correct type of
575  * parameter must be given as @parameter.  If the action is expecting no
576  * parameters then @parameter must be %NULL.  See
577  * g_action_group_get_action_parameter_type().
578  *
579  * Since: 2.28
580  **/
581 void
582 g_action_group_activate_action (GActionGroup *action_group,
583                                 const gchar  *action_name,
584                                 GVariant     *parameter)
585 {
586   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
587   g_return_if_fail (action_name != NULL);
588
589   G_ACTION_GROUP_GET_IFACE (action_group)
590     ->activate_action (action_group, action_name, parameter);
591 }
592
593 /**
594  * g_action_group_action_added:
595  * @action_group: a #GActionGroup
596  * @action_name: the name of an action in the group
597  *
598  * Emits the #GActionGroup::action-added signal on @action_group.
599  *
600  * This function should only be called by #GActionGroup implementations.
601  *
602  * Since: 2.28
603  **/
604 void
605 g_action_group_action_added (GActionGroup *action_group,
606                              const gchar  *action_name)
607 {
608   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
609   g_return_if_fail (action_name != NULL);
610
611   g_signal_emit (action_group,
612                  g_action_group_signals[SIGNAL_ACTION_ADDED],
613                  g_quark_try_string (action_name),
614                  action_name);
615 }
616
617 /**
618  * g_action_group_action_removed:
619  * @action_group: a #GActionGroup
620  * @action_name: the name of an action in the group
621  *
622  * Emits the #GActionGroup::action-removed signal on @action_group.
623  *
624  * This function should only be called by #GActionGroup implementations.
625  *
626  * Since: 2.28
627  **/
628 void
629 g_action_group_action_removed (GActionGroup *action_group,
630                                const gchar  *action_name)
631 {
632   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
633   g_return_if_fail (action_name != NULL);
634
635   g_signal_emit (action_group,
636                  g_action_group_signals[SIGNAL_ACTION_REMOVED],
637                  g_quark_try_string (action_name),
638                  action_name);
639 }
640
641 /**
642  * g_action_group_action_enabled_changed:
643  * @action_group: a #GActionGroup
644  * @action_name: the name of an action in the group
645  * @enabled: whether or not the action is now enabled
646  *
647  * Emits the #GActionGroup::action-enabled-changed signal on @action_group.
648  *
649  * This function should only be called by #GActionGroup implementations.
650  *
651  * Since: 2.28
652  **/
653 void
654 g_action_group_action_enabled_changed (GActionGroup *action_group,
655                                        const gchar  *action_name,
656                                        gboolean      enabled)
657 {
658   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
659   g_return_if_fail (action_name != NULL);
660
661   enabled = !!enabled;
662
663   g_signal_emit (action_group,
664                  g_action_group_signals[SIGNAL_ACTION_ENABLED_CHANGED],
665                  g_quark_try_string (action_name),
666                  action_name,
667                  enabled);
668 }
669
670 /**
671  * g_action_group_action_state_changed:
672  * @action_group: a #GActionGroup
673  * @action_name: the name of an action in the group
674  * @state: the new state of the named action
675  *
676  * Emits the #GActionGroup::action-state-changed signal on @action_group.
677  *
678  * This function should only be called by #GActionGroup implementations.
679  *
680  * Since: 2.28
681  **/
682 void
683 g_action_group_action_state_changed (GActionGroup *action_group,
684                                      const gchar  *action_name,
685                                      GVariant     *state)
686 {
687   g_return_if_fail (G_IS_ACTION_GROUP (action_group));
688   g_return_if_fail (action_name != NULL);
689
690   g_signal_emit (action_group,
691                  g_action_group_signals[SIGNAL_ACTION_STATE_CHANGED],
692                  g_quark_try_string (action_name),
693                  action_name,
694                  state);
695 }
696
697 /**
698  * g_action_group_query_action:
699  * @action_group: a #GActionGroup
700  * @action_name: the name of an action in the group
701  * @enabled: (out): if the action is presently enabled
702  * @parameter_type: (out) (allow-none): the parameter type, or %NULL if none needed
703  * @state_type: (out) (allow-none): the state type, or %NULL if stateless
704  * @state_hint: (out) (allow-none): the state hint, or %NULL if none
705  * @state: (out) (allow-none): the current state, or %NULL if stateless
706  *
707  * Queries all aspects of the named action within an @action_group.
708  *
709  * This function acquires the information available from
710  * g_action_group_has_action(), g_action_group_get_action_enabled(),
711  * g_action_group_get_action_parameter_type(),
712  * g_action_group_get_action_state_type(),
713  * g_action_group_get_action_state_hint() and
714  * g_action_group_get_action_state() with a single function call.
715  *
716  * This provides two main benefits.
717  *
718  * The first is the improvement in efficiency that comes with not having
719  * to perform repeated lookups of the action in order to discover
720  * different things about it.  The second is that implementing
721  * #GActionGroup can now be done by only overriding this one virtual
722  * function.
723  *
724  * The interface provides a default implementation of this function that
725  * calls the individual functions, as required, to fetch the
726  * information.  The interface also provides default implementations of
727  * those functions that call this function.  All implementations,
728  * therefore, must override either this function or all of the others.
729  *
730  * If the action exists, %TRUE is returned and any of the requested
731  * fields (as indicated by having a non-%NULL reference passed in) are
732  * filled.  If the action doesn't exist, %FALSE is returned and the
733  * fields may or may not have been modified.
734  *
735  * Returns: %TRUE if the action exists, else %FALSE
736  *
737  * Since: 2.32
738  **/
739 gboolean
740 g_action_group_query_action (GActionGroup        *action_group,
741                              const gchar         *action_name,
742                              gboolean            *enabled,
743                              const GVariantType **parameter_type,
744                              const GVariantType **state_type,
745                              GVariant           **state_hint,
746                              GVariant           **state)
747 {
748   return G_ACTION_GROUP_GET_IFACE (action_group)
749     ->query_action (action_group, action_name, enabled, parameter_type, state_type, state_hint, state);
750 }