mirror of https://github.com/GNOME/gimp.git
206 lines
5.7 KiB
C
206 lines
5.7 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpaccellabel.c
|
|
* Copyright (C) 2020 Ell
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
|
|
#include "widgets-types.h"
|
|
|
|
#include "gimpaction.h"
|
|
#include "gimpaccellabel.h"
|
|
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_ACTION
|
|
};
|
|
|
|
|
|
struct _GimpAccelLabelPrivate
|
|
{
|
|
GimpAction *action;
|
|
};
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
static void gimp_accel_label_dispose (GObject *object);
|
|
static void gimp_accel_label_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec);
|
|
static void gimp_accel_label_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_accel_label_update (GimpAccelLabel *accel_label);
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GimpAccelLabel, gimp_accel_label, GTK_TYPE_LABEL)
|
|
|
|
#define parent_class gimp_accel_label_parent_class
|
|
|
|
|
|
/* private functions */
|
|
|
|
static void
|
|
gimp_accel_label_class_init (GimpAccelLabelClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->dispose = gimp_accel_label_dispose;
|
|
object_class->get_property = gimp_accel_label_get_property;
|
|
object_class->set_property = gimp_accel_label_set_property;
|
|
|
|
g_object_class_install_property (object_class, PROP_ACTION,
|
|
g_param_spec_object ("action",
|
|
NULL, NULL,
|
|
GIMP_TYPE_ACTION,
|
|
GIMP_PARAM_READWRITE));
|
|
}
|
|
|
|
static void
|
|
gimp_accel_label_init (GimpAccelLabel *accel_label)
|
|
{
|
|
accel_label->priv = gimp_accel_label_get_instance_private (accel_label);
|
|
}
|
|
|
|
static void
|
|
gimp_accel_label_dispose (GObject *object)
|
|
{
|
|
GimpAccelLabel *accel_label = GIMP_ACCEL_LABEL (object);
|
|
|
|
gimp_accel_label_set_action (accel_label, NULL);
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
gimp_accel_label_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpAccelLabel *accel_label = GIMP_ACCEL_LABEL (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_ACTION:
|
|
gimp_accel_label_set_action (accel_label, g_value_get_object (value));
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_accel_label_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpAccelLabel *accel_label = GIMP_ACCEL_LABEL (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_ACTION:
|
|
g_value_set_object (value, accel_label->priv->action);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_accel_label_update (GimpAccelLabel *accel_label)
|
|
{
|
|
gchar **accels;
|
|
|
|
gtk_label_set_label (GTK_LABEL (accel_label), NULL);
|
|
|
|
if (! accel_label->priv->action)
|
|
return;
|
|
|
|
accels = gimp_action_get_display_accels (accel_label->priv->action);
|
|
|
|
if (accels && accels[0])
|
|
gtk_label_set_label (GTK_LABEL (accel_label), accels[0]);
|
|
|
|
g_strfreev (accels);
|
|
}
|
|
|
|
|
|
/* public functions */
|
|
|
|
GtkWidget *
|
|
gimp_accel_label_new (GimpAction *action)
|
|
{
|
|
g_return_val_if_fail (action == NULL || GIMP_IS_ACTION (action), NULL);
|
|
|
|
return g_object_new (GIMP_TYPE_ACCEL_LABEL,
|
|
"action", action,
|
|
NULL);
|
|
}
|
|
|
|
void
|
|
gimp_accel_label_set_action (GimpAccelLabel *accel_label,
|
|
GimpAction *action)
|
|
{
|
|
g_return_if_fail (GIMP_IS_ACCEL_LABEL (accel_label));
|
|
g_return_if_fail (action == NULL || GIMP_IS_ACTION (action));
|
|
|
|
if (action != accel_label->priv->action)
|
|
{
|
|
if (accel_label->priv->action)
|
|
g_signal_handlers_disconnect_by_func (accel_label->priv->action,
|
|
gimp_accel_label_update,
|
|
accel_label);
|
|
|
|
g_set_object (&accel_label->priv->action, action);
|
|
|
|
if (accel_label->priv->action)
|
|
g_signal_connect_swapped (action, "accels-changed",
|
|
G_CALLBACK (gimp_accel_label_update),
|
|
accel_label);
|
|
|
|
gimp_accel_label_update (accel_label);
|
|
|
|
g_object_notify (G_OBJECT (accel_label), "action");
|
|
}
|
|
}
|
|
|
|
GimpAction *
|
|
gimp_accel_label_get_action (GimpAccelLabel *accel_label)
|
|
{
|
|
g_return_val_if_fail (GIMP_IS_ACCEL_LABEL (accel_label), NULL);
|
|
|
|
return accel_label->priv->action;
|
|
}
|