/* GIMP - The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * gimpaction.c * Copyright (C) 2004-2019 Michael Natterer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "config.h" #include #include #include "libgimpbase/gimpbase.h" #include "widgets-types.h" #include "gimpaction.h" #include "gimpactionimpl.h" #include "gimpaction-history.h" enum { PROP_0, PROP_ENABLED = GIMP_ACTION_PROP_LAST + 1, PROP_PARAMETER_TYPE, PROP_STATE_TYPE, PROP_STATE }; enum { CHANGE_STATE, LAST_SIGNAL }; struct _GimpActionImplPrivate { GVariantType *parameter_type; GVariant *state; GVariant *state_hint; gboolean state_set_already; }; static void gimp_action_g_action_iface_init (GActionInterface *iface); static void gimp_action_impl_finalize (GObject *object); static void gimp_action_impl_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); static void gimp_action_impl_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); /* XXX Implementations for our GimpAction are widely inspired by GSimpleAction * implementations. */ static void gimp_action_impl_activate (GAction *action, GVariant *parameter); static void gimp_action_impl_change_state (GAction *action, GVariant *value); static gboolean gimp_action_impl_get_enabled (GAction *action); static const GVariantType * gimp_action_impl_get_parameter_type (GAction *action); static const GVariantType * gimp_action_impl_get_state_type (GAction *action); static GVariant * gimp_action_impl_get_state (GAction *action); static GVariant * gimp_action_impl_get_state_hint (GAction *action); static void gimp_action_impl_set_state (GimpAction *gimp_action, GVariant *value); G_DEFINE_TYPE_WITH_CODE (GimpActionImpl, gimp_action_impl, GIMP_TYPE_OBJECT, G_ADD_PRIVATE (GimpActionImpl) G_IMPLEMENT_INTERFACE (G_TYPE_ACTION, gimp_action_g_action_iface_init) G_IMPLEMENT_INTERFACE (GIMP_TYPE_ACTION, NULL)) #define parent_class gimp_action_impl_parent_class static guint gimp_action_impl_signals[LAST_SIGNAL] = { 0 }; static void gimp_action_impl_class_init (GimpActionImplClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); gimp_action_impl_signals[CHANGE_STATE] = g_signal_new ("change-state", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST | G_SIGNAL_MUST_COLLECT, G_STRUCT_OFFSET (GimpActionImplClass, change_state), NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_VARIANT); object_class->finalize = gimp_action_impl_finalize; object_class->set_property = gimp_action_impl_set_property; object_class->get_property = gimp_action_impl_get_property; gimp_action_install_properties (object_class); /** * GimpAction:enabled: * * If @action is currently enabled. * * If the action is disabled then calls to g_action_activate() and * g_action_change_state() have no effect. **/ g_object_class_install_property (object_class, PROP_ENABLED, g_param_spec_boolean ("enabled", "Enabled", "If the action can be activated", TRUE, GIMP_PARAM_READWRITE)); /** * GimpAction:parameter-type: * * The type of the parameter that must be given when activating the * action. **/ g_object_class_install_property (object_class, PROP_PARAMETER_TYPE, g_param_spec_boxed ("parameter-type", "Parameter Type", "The type of GVariant passed to activate()", G_TYPE_VARIANT_TYPE, GIMP_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); /** * GimpAction:state-type: * * The #GVariantType of the state that the action has, or %NULL if the * action is stateless. **/ g_object_class_install_property (object_class, PROP_STATE_TYPE, g_param_spec_boxed ("state-type", "State Type", "The type of the state kept by the action", G_TYPE_VARIANT_TYPE, GIMP_PARAM_READABLE)); /** * GimpAction:state: * * The state of the action, or %NULL if the action is stateless. **/ g_object_class_install_property (object_class, PROP_STATE, g_param_spec_variant ("state", "State", "The state the action is in", G_VARIANT_TYPE_ANY, NULL, GIMP_PARAM_READWRITE | G_PARAM_CONSTRUCT)); } static void gimp_action_g_action_iface_init (GActionInterface *iface) { iface->activate = gimp_action_impl_activate; iface->change_state = gimp_action_impl_change_state; iface->get_enabled = gimp_action_impl_get_enabled; iface->get_name = (const gchar* (*) (GAction*)) gimp_action_get_name; iface->get_parameter_type = gimp_action_impl_get_parameter_type; iface->get_state_type = gimp_action_impl_get_state_type; iface->get_state = gimp_action_impl_get_state; iface->get_state_hint = gimp_action_impl_get_state_hint; } static void gimp_action_impl_init (GimpActionImpl *impl) { impl->priv = gimp_action_impl_get_instance_private (impl); impl->priv->state_set_already = FALSE; gimp_action_init (GIMP_ACTION (impl)); } static void gimp_action_impl_finalize (GObject *object) { GimpActionImpl *impl = GIMP_ACTION_IMPL (object); if (impl->priv->parameter_type) g_variant_type_free (impl->priv->parameter_type); if (impl->priv->state) g_variant_unref (impl->priv->state); if (impl->priv->state_hint) g_variant_unref (impl->priv->state_hint); G_OBJECT_CLASS (parent_class)->finalize (object); } static void gimp_action_impl_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { GimpActionImpl *impl = GIMP_ACTION_IMPL (object); switch (prop_id) { case PROP_ENABLED: g_value_set_boolean (value, gimp_action_impl_get_enabled (G_ACTION (impl))); break; case PROP_PARAMETER_TYPE: g_value_set_boxed (value, gimp_action_impl_get_parameter_type (G_ACTION (impl))); break; case PROP_STATE_TYPE: g_value_set_boxed (value, gimp_action_impl_get_state_type (G_ACTION (impl))); break; case PROP_STATE: g_value_take_variant (value, gimp_action_impl_get_state (G_ACTION (impl))); break; default: gimp_action_get_property (object, prop_id, value, pspec); break; } } static void gimp_action_impl_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { GimpActionImpl *impl = GIMP_ACTION_IMPL (object); switch (prop_id) { case PROP_ENABLED: gimp_action_set_sensitive (GIMP_ACTION (impl), g_value_get_boolean (value), NULL); break; case PROP_PARAMETER_TYPE: impl->priv->parameter_type = g_value_dup_boxed (value); break; case PROP_STATE: /* The first time we see this (during construct) we should just * take the state as it was handed to us. * * After that, we should make sure we go through the same checks * as the C API. */ if (!impl->priv->state_set_already) { impl->priv->state = g_value_dup_variant (value); impl->priv->state_set_already = TRUE; } else { gimp_action_impl_set_state (GIMP_ACTION (impl), g_value_get_variant (value)); } break; default: gimp_action_set_property (object, prop_id, value, pspec); break; } } static void gimp_action_impl_activate (GAction *action, GVariant *parameter) { g_object_add_weak_pointer (G_OBJECT (action), (gpointer) &action); gimp_action_emit_activate (GIMP_ACTION (action), parameter); if (action != NULL) { /* Some actions are self-destructive, such as the "windows-recent-*" * actions which don't exist after being run. Don't log these. */ g_object_remove_weak_pointer (G_OBJECT (action), (gpointer) &action); gimp_action_history_action_activated (GIMP_ACTION (action)); } } static void gimp_action_impl_change_state (GAction *action, GVariant *value) { /* If the user connected a signal handler then they are responsible * for handling state changes. */ if (g_signal_has_handler_pending (action, gimp_action_impl_signals[CHANGE_STATE], 0, TRUE)) g_signal_emit (action, gimp_action_impl_signals[CHANGE_STATE], 0, value); else /* If not, then the default behavior is to just set the state. */ gimp_action_impl_set_state (GIMP_ACTION (action), value); } static gboolean gimp_action_impl_get_enabled (GAction *action) { return gimp_action_is_sensitive (GIMP_ACTION (action), NULL); } static const GVariantType * gimp_action_impl_get_parameter_type (GAction *action) { GimpActionImpl *impl = GIMP_ACTION_IMPL (action); return impl->priv->parameter_type; } static const GVariantType * gimp_action_impl_get_state_type (GAction *action) { GimpActionImpl *impl = GIMP_ACTION_IMPL (action); if (impl->priv->state != NULL) return g_variant_get_type (impl->priv->state); else return NULL; } static GVariant * gimp_action_impl_get_state (GAction *action) { GimpActionImpl *impl = GIMP_ACTION_IMPL (action); return impl->priv->state ? g_variant_ref (impl->priv->state) : NULL; } static GVariant * gimp_action_impl_get_state_hint (GAction *action) { GimpActionImpl *impl = GIMP_ACTION_IMPL (action); if (impl->priv->state_hint != NULL) return g_variant_ref (impl->priv->state_hint); else return NULL; } /* public functions */ GimpAction * gimp_action_impl_new (const gchar *name, const gchar *label, const gchar *short_label, const gchar *tooltip, const gchar *icon_name, const gchar *help_id, GimpContext *context) { GimpAction *action; action = g_object_new (GIMP_TYPE_ACTION_IMPL, "name", name, "label", label, "short-label", short_label, "tooltip", tooltip, "icon-name", icon_name, "context", context, NULL); gimp_action_set_help_id (action, help_id); return action; } /* private functions */ static void gimp_action_impl_set_state (GimpAction *gimp_action, GVariant *value) { GimpActionImpl *impl; const GVariantType *state_type; g_return_if_fail (GIMP_IS_ACTION (gimp_action)); g_return_if_fail (value != NULL); impl = GIMP_ACTION_IMPL (gimp_action); state_type = impl->priv->state ? g_variant_get_type (impl->priv->state) : NULL; g_return_if_fail (state_type != NULL); g_return_if_fail (g_variant_is_of_type (value, state_type)); g_variant_ref_sink (value); if (! impl->priv->state || ! g_variant_equal (impl->priv->state, value)) { if (impl->priv->state) g_variant_unref (impl->priv->state); impl->priv->state = g_variant_ref (value); g_object_notify (G_OBJECT (impl), "state"); } g_variant_unref (value); }