PIKApp/app/core/pikatoolitem.c

228 lines
6.1 KiB
C

/* PIKA - Photo and Image Kooker Application
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
*
* Original copyright, applying to most contents (license remains unchanged):
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* pikatoolitem.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 <string.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gegl.h>
#include "libpikabase/pikabase.h"
#include "libpikaconfig/pikaconfig.h"
#include "core-types.h"
#include "pikatoolitem.h"
enum
{
VISIBLE_CHANGED,
SHOWN_CHANGED,
LAST_SIGNAL
};
enum
{
PROP_0,
PROP_VISIBLE,
PROP_SHOWN
};
struct _PikaToolItemPrivate
{
gboolean visible;
};
/* local function prototypes */
static void pika_tool_item_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
static void pika_tool_item_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);
G_DEFINE_TYPE_WITH_PRIVATE (PikaToolItem, pika_tool_item, PIKA_TYPE_VIEWABLE)
#define parent_class pika_tool_item_parent_class
static guint pika_tool_item_signals[LAST_SIGNAL] = { 0 };
/* private functions */
static void
pika_tool_item_class_init (PikaToolItemClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
pika_tool_item_signals[VISIBLE_CHANGED] =
g_signal_new ("visible-changed",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (PikaToolItemClass, visible_changed),
NULL, NULL, NULL,
G_TYPE_NONE, 0);
pika_tool_item_signals[SHOWN_CHANGED] =
g_signal_new ("shown-changed",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (PikaToolItemClass, shown_changed),
NULL, NULL, NULL,
G_TYPE_NONE, 0);
object_class->get_property = pika_tool_item_get_property;
object_class->set_property = pika_tool_item_set_property;
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_VISIBLE,
"visible", NULL, NULL,
TRUE,
PIKA_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class, PROP_SHOWN,
g_param_spec_boolean ("shown", NULL, NULL,
TRUE,
PIKA_PARAM_READABLE));
}
static void
pika_tool_item_init (PikaToolItem *tool_item)
{
tool_item->priv = pika_tool_item_get_instance_private (tool_item);
}
static void
pika_tool_item_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec)
{
PikaToolItem *tool_item = PIKA_TOOL_ITEM (object);
switch (property_id)
{
case PROP_VISIBLE:
g_value_set_boolean (value, tool_item->priv->visible);
break;
case PROP_SHOWN:
g_value_set_boolean (value, pika_tool_item_get_shown (tool_item));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
static void
pika_tool_item_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
{
PikaToolItem *tool_item = PIKA_TOOL_ITEM (object);
switch (property_id)
{
case PROP_VISIBLE:
pika_tool_item_set_visible (tool_item, g_value_get_boolean (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
/* public functions */
void
pika_tool_item_set_visible (PikaToolItem *tool_item,
gboolean visible)
{
g_return_if_fail (PIKA_IS_TOOL_ITEM (tool_item));
if (visible != tool_item->priv->visible)
{
gboolean old_shown;
g_object_freeze_notify (G_OBJECT (tool_item));
old_shown = pika_tool_item_get_shown (tool_item);
tool_item->priv->visible = visible;
g_signal_emit (tool_item, pika_tool_item_signals[VISIBLE_CHANGED], 0);
if (pika_tool_item_get_shown (tool_item) != old_shown)
pika_tool_item_shown_changed (tool_item);
g_object_notify (G_OBJECT (tool_item), "visible");
g_object_thaw_notify (G_OBJECT (tool_item));
}
}
gboolean
pika_tool_item_get_visible (PikaToolItem *tool_item)
{
g_return_val_if_fail (PIKA_IS_TOOL_ITEM (tool_item), FALSE);
return tool_item->priv->visible;
}
gboolean
pika_tool_item_get_shown (PikaToolItem *tool_item)
{
PikaToolItem *parent;
g_return_val_if_fail (PIKA_IS_TOOL_ITEM (tool_item), FALSE);
parent = PIKA_TOOL_ITEM (
pika_viewable_get_parent (PIKA_VIEWABLE (tool_item)));
return tool_item->priv->visible &&
(! parent || pika_tool_item_get_shown (parent));
}
/* protected functions */
void
pika_tool_item_shown_changed (PikaToolItem *tool_item)
{
g_signal_emit (tool_item, pika_tool_item_signals[SHOWN_CHANGED], 0);
g_object_notify (G_OBJECT (tool_item), "shown");
}