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 synchronised
65 * between). #GPropertyAction does not have a separate state that is kept
66 * in sync with the property value -- its state is the property value.
68 * For example, it might be useful to create a #GAction corresponding to
69 * the "visible-child-name" property of a #GtkStack so that the current
70 * page can be switched from a menu. The active radio indication in the
71 * menu is then directly determined from the active page of the
74 * An anti-example would be binding the "active-id" property on a
75 * #GtkComboBox. This is because the state of the combobox itself is
76 * probably uninteresting and is actually being used to control
79 * Another anti-example would be to bind to the "visible-child-name"
80 * property of a #GtkStack if this value is actually stored in
81 * #GSettings. In that case, the real source of the value is
82 * #GSettings. If you want a #GAction to control a setting stored in
83 * #GSettings, see g_settings_create_action() instead, and possibly
84 * combine its use with g_settings_bind().
88 struct _GPropertyAction
90 GObject parent_instance;
95 const GVariantType *state_type;
101 * This type is opaque.
106 typedef GObjectClass GPropertyActionClass;
108 static void g_property_action_iface_init (GActionInterface *iface);
109 G_DEFINE_TYPE_WITH_CODE (GPropertyAction, g_property_action, G_TYPE_OBJECT,
110 G_IMPLEMENT_INTERFACE (G_TYPE_ACTION, g_property_action_iface_init))
125 g_property_action_get_name (GAction *action)
127 GPropertyAction *paction = G_PROPERTY_ACTION (action);
129 return paction->name;
132 static const GVariantType *
133 g_property_action_get_parameter_type (GAction *action)
135 GPropertyAction *paction = G_PROPERTY_ACTION (action);
137 return paction->pspec->value_type == G_TYPE_BOOLEAN ? NULL : paction->state_type;
140 static const GVariantType *
141 g_property_action_get_state_type (GAction *action)
143 GPropertyAction *paction = G_PROPERTY_ACTION (action);
145 return paction->state_type;
149 g_property_action_get_state_hint (GAction *action)
155 g_property_action_get_enabled (GAction *action)
161 g_property_action_set_state (GPropertyAction *paction,
164 GValue value = G_VALUE_INIT;
166 g_value_init (&value, paction->pspec->value_type);
167 g_settings_get_mapping (&value, variant, NULL);
168 g_object_set_property (paction->object, paction->pspec->name, &value);
169 g_value_unset (&value);
173 g_property_action_change_state (GAction *action,
176 GPropertyAction *paction = G_PROPERTY_ACTION (action);
178 g_return_if_fail (g_variant_is_of_type (value, paction->state_type));
180 g_property_action_set_state (paction, value);
184 g_property_action_get_state (GAction *action)
186 GPropertyAction *paction = G_PROPERTY_ACTION (action);
187 GValue value = G_VALUE_INIT;
190 g_value_init (&value, paction->pspec->value_type);
191 g_object_get_property (paction->object, paction->pspec->name, &value);
192 result = g_settings_set_mapping (&value, paction->state_type, NULL);
193 g_value_unset (&value);
195 return g_variant_ref_sink (result);
199 g_property_action_activate (GAction *action,
202 GPropertyAction *paction = G_PROPERTY_ACTION (action);
204 if (paction->pspec->value_type == G_TYPE_BOOLEAN)
208 g_return_if_fail (paction->pspec->value_type == G_TYPE_BOOLEAN && parameter == NULL);
210 g_object_get (paction->object, paction->pspec->name, &value, NULL);
212 g_object_set (paction->object, paction->pspec->name, value, NULL);
216 g_return_if_fail (parameter != NULL && g_variant_is_of_type (parameter, paction->state_type));
218 g_property_action_set_state (paction, parameter);
222 static const GVariantType *
223 g_property_action_determine_type (GParamSpec *pspec)
225 if (G_TYPE_IS_ENUM (pspec->value_type))
226 return G_VARIANT_TYPE_STRING;
228 switch (pspec->value_type)
231 return G_VARIANT_TYPE_BOOLEAN;
234 return G_VARIANT_TYPE_INT32;
237 return G_VARIANT_TYPE_UINT32;
241 return G_VARIANT_TYPE_DOUBLE;
244 return G_VARIANT_TYPE_STRING;
247 g_critical ("Unable to use GPropertyAction with property '%s::%s' of type '%s'",
248 g_type_name (pspec->owner_type), pspec->name, g_type_name (pspec->value_type));
254 g_property_action_notify (GObject *object,
258 GPropertyAction *paction = user_data;
260 g_assert (object == paction->object);
261 g_assert (pspec == paction->pspec);
263 g_object_notify (G_OBJECT (paction), "state");
267 g_property_action_set_property_name (GPropertyAction *paction,
268 const gchar *property_name)
273 pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (paction->object), property_name);
277 g_critical ("Attempted to use non-existent property '%s::%s' for GPropertyAction",
278 G_OBJECT_TYPE_NAME (paction->object), property_name);
282 if (~pspec->flags & G_PARAM_READABLE || ~pspec->flags & G_PARAM_WRITABLE || pspec->flags & G_PARAM_CONSTRUCT_ONLY)
284 g_critical ("Property '%s::%s' used with GPropertyAction must be readable, writable, and not construct-only",
285 G_OBJECT_TYPE_NAME (paction->object), property_name);
289 paction->pspec = pspec;
291 detailed = g_strconcat ("notify::", paction->pspec->name, NULL);
292 paction->state_type = g_property_action_determine_type (paction->pspec);
293 g_signal_connect (paction->object, detailed, G_CALLBACK (g_property_action_notify), paction);
298 g_property_action_set_property (GObject *object,
303 GPropertyAction *paction = G_PROPERTY_ACTION (object);
308 paction->name = g_value_dup_string (value);
312 paction->object = g_value_dup_object (value);
315 case PROP_PROPERTY_NAME:
316 g_property_action_set_property_name (paction, g_value_get_string (value));
320 g_assert_not_reached ();
325 g_property_action_get_property (GObject *object,
330 GAction *action = G_ACTION (object);
335 g_value_set_string (value, g_property_action_get_name (action));
338 case PROP_PARAMETER_TYPE:
339 g_value_set_boxed (value, g_property_action_get_parameter_type (action));
343 g_value_set_boolean (value, g_property_action_get_enabled (action));
346 case PROP_STATE_TYPE:
347 g_value_set_boxed (value, g_property_action_get_state_type (action));
351 g_value_take_variant (value, g_property_action_get_state (action));
355 g_assert_not_reached ();
360 g_property_action_finalize (GObject *object)
362 GPropertyAction *paction = G_PROPERTY_ACTION (object);
364 g_signal_handlers_disconnect_by_func (paction->object, g_property_action_notify, paction);
365 g_object_unref (paction->object);
366 g_free (paction->name);
368 G_OBJECT_CLASS (g_property_action_parent_class)
373 g_property_action_init (GPropertyAction *property)
378 g_property_action_iface_init (GActionInterface *iface)
380 iface->get_name = g_property_action_get_name;
381 iface->get_parameter_type = g_property_action_get_parameter_type;
382 iface->get_state_type = g_property_action_get_state_type;
383 iface->get_state_hint = g_property_action_get_state_hint;
384 iface->get_enabled = g_property_action_get_enabled;
385 iface->get_state = g_property_action_get_state;
386 iface->change_state = g_property_action_change_state;
387 iface->activate = g_property_action_activate;
391 g_property_action_class_init (GPropertyActionClass *class)
393 GObjectClass *object_class = G_OBJECT_CLASS (class);
395 object_class->set_property = g_property_action_set_property;
396 object_class->get_property = g_property_action_get_property;
397 object_class->finalize = g_property_action_finalize;
400 * GPropertyAction:name:
402 * The name of the action. This is mostly meaningful for identifying
403 * the action once it has been added to a #GActionMap.
407 g_object_class_install_property (object_class, PROP_NAME,
408 g_param_spec_string ("name",
410 P_("The name used to invoke the action"),
413 G_PARAM_CONSTRUCT_ONLY |
414 G_PARAM_STATIC_STRINGS));
417 * GPropertyAction:parameter-type:
419 * The type of the parameter that must be given when activating the
424 g_object_class_install_property (object_class, PROP_PARAMETER_TYPE,
425 g_param_spec_boxed ("parameter-type",
426 P_("Parameter Type"),
427 P_("The type of GVariant passed to activate()"),
430 G_PARAM_STATIC_STRINGS));
433 * GPropertyAction:enabled:
435 * If @action is currently enabled.
437 * If the action is disabled then calls to g_action_activate() and
438 * g_action_change_state() have no effect.
442 g_object_class_install_property (object_class, PROP_ENABLED,
443 g_param_spec_boolean ("enabled",
445 P_("If the action can be activated"),
448 G_PARAM_STATIC_STRINGS));
451 * GPropertyAction:state-type:
453 * The #GVariantType of the state that the action has, or %NULL if the
454 * action is stateless.
458 g_object_class_install_property (object_class, PROP_STATE_TYPE,
459 g_param_spec_boxed ("state-type",
461 P_("The type of the state kept by the action"),
464 G_PARAM_STATIC_STRINGS));
467 * GPropertyAction:state:
469 * The state of the action, or %NULL if the action is stateless.
473 g_object_class_install_property (object_class, PROP_STATE,
474 g_param_spec_variant ("state",
476 P_("The state the action is in"),
480 G_PARAM_STATIC_STRINGS));
483 * GPropertyAction:object:
485 * The object to wrap a property on.
487 * The object must be a non-%NULL #GObject with properties.
491 g_object_class_install_property (object_class, PROP_OBJECT,
492 g_param_spec_object ("object",
494 P_("The object with the property to wrap"),
497 G_PARAM_CONSTRUCT_ONLY |
498 G_PARAM_STATIC_STRINGS));
501 * GPropertyAction:property-name:
503 * The name of the property to wrap on the object.
505 * The property must exist on the passed-in object and it must be
506 * readable and writable (and not construct-only).
510 g_object_class_install_property (object_class, PROP_PROPERTY_NAME,
511 g_param_spec_string ("property-name",
513 P_("The name of the property to wrap"),
516 G_PARAM_CONSTRUCT_ONLY |
517 G_PARAM_STATIC_STRINGS));
521 * g_property_action_new:
522 * @name: the name of the action to create
523 * @object: the object that has the property to wrap
524 * @property_name: the name of the property
526 * Creates a #GAction corresponding to the value of property
527 * @property_name on @object.
529 * The property must be existent and readable and writable (and not
532 * This function takes a reference on @object and doesn't release it
533 * until the action is destroyed.
535 * Returns: a new #GPropertyAction
540 g_property_action_new (const gchar *name,
542 const gchar *property_name)
544 g_return_val_if_fail (name != NULL, NULL);
545 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
546 g_return_val_if_fail (property_name != NULL, NULL);
548 return g_object_new (G_TYPE_PROPERTY_ACTION,
551 "property-name", property_name,