2 * Copyright © 2013 Canonical 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>
22 #include "gpropertyaction.h"
24 #include "gsettings-mapping.h"
29 * SECTION:gpropertyaction
30 * @title: GPropertyAction
31 * @short_description: A GAction reflecting a GObject property
34 * A #GPropertyAction is a way to get a #GAction with a state value
35 * reflecting and controlling the value of a #GObject property.
37 * The state of the action will correspond to the value of the property.
38 * Changing it will change the property (assuming the requested value
39 * matches the requirements as specified in the #GParamSpec).
41 * Only the most common types are presently supported. Booleans are
42 * mapped to booleans, strings to strings, signed/unsigned integers to
43 * int32/uint32 and floats and doubles to doubles.
45 * If the property is an enum then the state will be string-typed and
46 * conversion will automatically be performed between the enum value and
47 * "nick" string as per the #GEnumValue table.
49 * Flags types are not currently supported.
51 * Properties of object types, boxed types and pointer types are not
52 * supported and probably never will be.
54 * Properties of #GVariant types are not currently supported.
56 * If the property is boolean-valued then the action will have a NULL
57 * parameter type, and activating the action (with no parameter) will
58 * toggle the value of the property.
60 * In all other cases, the parameter type will correspond to the type of
63 * The general idea here is to reduce the number of locations where a
64 * particular piece of state is kept (and therefore has to be
65 * synchronised between). #GPropertyAction does not have a separate
66 * state that is kept in sync with the property value -- its state
67 * <em>is</em> the property value.
69 * For example, it might be useful to create a #GAction corresponding to
70 * the "visible-child-name" property of a #GtkStack so that the current
71 * page can be switched from a menu. The active radio indication in the
72 * menu is then directly determined from the active page of the
75 * An anti-example would be binding the "active-id" property on a
76 * #GtkComboBox. This is because the state of the combobox itself is
77 * probably uninteresting and is actually being used to control
80 * Another anti-example would be to bind to the "visible-child-name"
81 * property of a #GtkStack if this value is actually stored in
82 * #GSettings. In that case, the real source of the value is
83 * #GSettings. If you want a #GAction to control a setting stored in
84 * #GSettings, see g_settings_create_action() instead, and possibly
85 * combine its use with g_settings_bind().
89 struct _GPropertyAction
91 GObject parent_instance;
96 const GVariantType *state_type;
102 * This type is opaque.
107 typedef GObjectClass GPropertyActionClass;
109 static void g_property_action_iface_init (GActionInterface *iface);
110 G_DEFINE_TYPE_WITH_CODE (GPropertyAction, g_property_action, G_TYPE_OBJECT,
111 G_IMPLEMENT_INTERFACE (G_TYPE_ACTION, g_property_action_iface_init))
126 g_property_action_get_name (GAction *action)
128 GPropertyAction *paction = G_PROPERTY_ACTION (action);
130 return paction->name;
133 static const GVariantType *
134 g_property_action_get_parameter_type (GAction *action)
136 GPropertyAction *paction = G_PROPERTY_ACTION (action);
138 return paction->pspec->value_type == G_TYPE_BOOLEAN ? NULL : paction->state_type;
141 static const GVariantType *
142 g_property_action_get_state_type (GAction *action)
144 GPropertyAction *paction = G_PROPERTY_ACTION (action);
146 return paction->state_type;
150 g_property_action_get_state_hint (GAction *action)
156 g_property_action_get_enabled (GAction *action)
162 g_property_action_set_state (GPropertyAction *paction,
165 GValue value = G_VALUE_INIT;
167 g_value_init (&value, paction->pspec->value_type);
168 g_settings_get_mapping (&value, variant, NULL);
169 g_object_set_property (paction->object, paction->pspec->name, &value);
170 g_value_unset (&value);
174 g_property_action_change_state (GAction *action,
177 GPropertyAction *paction = G_PROPERTY_ACTION (action);
179 g_return_if_fail (g_variant_is_of_type (value, paction->state_type));
181 g_property_action_set_state (paction, value);
185 g_property_action_get_state (GAction *action)
187 GPropertyAction *paction = G_PROPERTY_ACTION (action);
188 GValue value = G_VALUE_INIT;
191 g_value_init (&value, paction->pspec->value_type);
192 g_object_get_property (paction->object, paction->pspec->name, &value);
193 result = g_settings_set_mapping (&value, paction->state_type, NULL);
194 g_value_unset (&value);
196 return g_variant_ref_sink (result);
200 g_property_action_activate (GAction *action,
203 GPropertyAction *paction = G_PROPERTY_ACTION (action);
205 if (paction->pspec->value_type == G_TYPE_BOOLEAN)
209 g_return_if_fail (paction->pspec->value_type == G_TYPE_BOOLEAN && parameter == NULL);
211 g_object_get (paction->object, paction->pspec->name, &value, NULL);
213 g_object_set (paction->object, paction->pspec->name, value, NULL);
217 g_return_if_fail (parameter != NULL && g_variant_is_of_type (parameter, paction->state_type));
219 g_property_action_set_state (paction, parameter);
223 static const GVariantType *
224 g_property_action_determine_type (GParamSpec *pspec)
226 if (G_TYPE_IS_ENUM (pspec->value_type))
227 return G_VARIANT_TYPE_STRING;
229 switch (pspec->value_type)
232 return G_VARIANT_TYPE_BOOLEAN;
235 return G_VARIANT_TYPE_INT32;
238 return G_VARIANT_TYPE_UINT32;
242 return G_VARIANT_TYPE_DOUBLE;
245 return G_VARIANT_TYPE_STRING;
248 g_critical ("Unable to use GPropertyAction with property '%s::%s' of type '%s'",
249 g_type_name (pspec->owner_type), pspec->name, g_type_name (pspec->value_type));
255 g_property_action_notify (GObject *object,
259 GPropertyAction *paction = user_data;
261 g_assert (object == paction->object);
262 g_assert (pspec == paction->pspec);
264 g_object_notify (G_OBJECT (paction), "state");
268 g_property_action_set_property_name (GPropertyAction *paction,
269 const gchar *property_name)
274 pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (paction->object), property_name);
278 g_critical ("Attempted to use non-existent property '%s::%s' for GPropertyAction",
279 G_OBJECT_TYPE_NAME (paction->object), property_name);
283 if (~pspec->flags & G_PARAM_READABLE || ~pspec->flags & G_PARAM_WRITABLE || pspec->flags & G_PARAM_CONSTRUCT_ONLY)
285 g_critical ("Property '%s::%s' used with GPropertyAction must be readable, writable, and not construct-only",
286 G_OBJECT_TYPE_NAME (paction->object), property_name);
290 paction->pspec = pspec;
292 detailed = g_strconcat ("notify::", paction->pspec->name, NULL);
293 paction->state_type = g_property_action_determine_type (paction->pspec);
294 g_signal_connect (paction->object, detailed, G_CALLBACK (g_property_action_notify), paction);
299 g_property_action_set_property (GObject *object,
304 GPropertyAction *paction = G_PROPERTY_ACTION (object);
309 paction->name = g_value_dup_string (value);
313 paction->object = g_value_dup_object (value);
316 case PROP_PROPERTY_NAME:
317 g_property_action_set_property_name (paction, g_value_get_string (value));
321 g_assert_not_reached ();
326 g_property_action_get_property (GObject *object,
331 GAction *action = G_ACTION (object);
336 g_value_set_string (value, g_property_action_get_name (action));
339 case PROP_PARAMETER_TYPE:
340 g_value_set_boxed (value, g_property_action_get_parameter_type (action));
344 g_value_set_boolean (value, g_property_action_get_enabled (action));
347 case PROP_STATE_TYPE:
348 g_value_set_boxed (value, g_property_action_get_state_type (action));
352 g_value_take_variant (value, g_property_action_get_state (action));
356 g_assert_not_reached ();
361 g_property_action_finalize (GObject *object)
363 GPropertyAction *paction = G_PROPERTY_ACTION (object);
365 g_signal_handlers_disconnect_by_func (paction->object, g_property_action_notify, paction);
366 g_object_unref (paction->object);
367 g_free (paction->name);
369 G_OBJECT_CLASS (g_property_action_parent_class)
374 g_property_action_init (GPropertyAction *property)
379 g_property_action_iface_init (GActionInterface *iface)
381 iface->get_name = g_property_action_get_name;
382 iface->get_parameter_type = g_property_action_get_parameter_type;
383 iface->get_state_type = g_property_action_get_state_type;
384 iface->get_state_hint = g_property_action_get_state_hint;
385 iface->get_enabled = g_property_action_get_enabled;
386 iface->get_state = g_property_action_get_state;
387 iface->change_state = g_property_action_change_state;
388 iface->activate = g_property_action_activate;
392 g_property_action_class_init (GPropertyActionClass *class)
394 GObjectClass *object_class = G_OBJECT_CLASS (class);
396 object_class->set_property = g_property_action_set_property;
397 object_class->get_property = g_property_action_get_property;
398 object_class->finalize = g_property_action_finalize;
401 * GPropertyAction:name:
403 * The name of the action. This is mostly meaningful for identifying
404 * the action once it has been added to a #GActionMap.
408 g_object_class_install_property (object_class, PROP_NAME,
409 g_param_spec_string ("name",
411 P_("The name used to invoke the action"),
414 G_PARAM_CONSTRUCT_ONLY |
415 G_PARAM_STATIC_STRINGS));
418 * GPropertyAction:parameter-type:
420 * The type of the parameter that must be given when activating the
425 g_object_class_install_property (object_class, PROP_PARAMETER_TYPE,
426 g_param_spec_boxed ("parameter-type",
427 P_("Parameter Type"),
428 P_("The type of GVariant passed to activate()"),
431 G_PARAM_STATIC_STRINGS));
434 * GPropertyAction:enabled:
436 * If @action is currently enabled.
438 * If the action is disabled then calls to g_action_activate() and
439 * g_action_change_state() have no effect.
443 g_object_class_install_property (object_class, PROP_ENABLED,
444 g_param_spec_boolean ("enabled",
446 P_("If the action can be activated"),
449 G_PARAM_STATIC_STRINGS));
452 * GPropertyAction:state-type:
454 * The #GVariantType of the state that the action has, or %NULL if the
455 * action is stateless.
459 g_object_class_install_property (object_class, PROP_STATE_TYPE,
460 g_param_spec_boxed ("state-type",
462 P_("The type of the state kept by the action"),
465 G_PARAM_STATIC_STRINGS));
468 * GPropertyAction:state:
470 * The state of the action, or %NULL if the action is stateless.
474 g_object_class_install_property (object_class, PROP_STATE,
475 g_param_spec_variant ("state",
477 P_("The state the action is in"),
481 G_PARAM_STATIC_STRINGS));
484 * GPropertyAction:object:
486 * The object to wrap a property on.
488 * The object must be a non-%NULL #GObject with properties.
492 g_object_class_install_property (object_class, PROP_OBJECT,
493 g_param_spec_object ("object",
495 P_("The object with the property to wrap"),
498 G_PARAM_CONSTRUCT_ONLY |
499 G_PARAM_STATIC_STRINGS));
502 * GPropertyAction:property-name:
504 * The name of the property to wrap on the object.
506 * The property must exist on the passed-in object and it must be
507 * readable and writable (and not construct-only).
511 g_object_class_install_property (object_class, PROP_PROPERTY_NAME,
512 g_param_spec_string ("property-name",
514 P_("The name of the property to wrap"),
517 G_PARAM_CONSTRUCT_ONLY |
518 G_PARAM_STATIC_STRINGS));
522 * g_property_action_new:
523 * @name: the name of the action to create
524 * @object: the object that has the property to wrap
525 * @property_name: the name of the property
527 * Creates a #GAction corresponding to the value of property
528 * @property_name on @object.
530 * The property must be existent and readable and writable (and not
533 * This function takes a reference on @object and doesn't release it
534 * until the action is destroyed.
536 * Returns: a new #GPropertyAction
541 g_property_action_new (const gchar *name,
543 const gchar *property_name)
545 g_return_val_if_fail (name != NULL, NULL);
546 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
547 g_return_val_if_fail (property_name != NULL, NULL);
549 return g_object_new (G_TYPE_PROPERTY_ACTION,
552 "property-name", property_name,