147 lines
4.4 KiB
C
147 lines
4.4 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
|
|
*
|
|
* pikaoperationpointfilter.c
|
|
* Copyright (C) 2007 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* 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 "operations-types.h"
|
|
|
|
#include "pikaoperationpointfilter.h"
|
|
|
|
|
|
static void pika_operation_point_filter_finalize (GObject *object);
|
|
static void pika_operation_point_filter_prepare (GeglOperation *operation);
|
|
|
|
|
|
G_DEFINE_ABSTRACT_TYPE (PikaOperationPointFilter, pika_operation_point_filter,
|
|
GEGL_TYPE_OPERATION_POINT_FILTER)
|
|
|
|
#define parent_class pika_operation_point_filter_parent_class
|
|
|
|
|
|
static void
|
|
pika_operation_point_filter_class_init (PikaOperationPointFilterClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GeglOperationClass *operation_class = GEGL_OPERATION_CLASS (klass);
|
|
|
|
object_class->finalize = pika_operation_point_filter_finalize;
|
|
|
|
operation_class->prepare = pika_operation_point_filter_prepare;
|
|
}
|
|
|
|
static void
|
|
pika_operation_point_filter_init (PikaOperationPointFilter *self)
|
|
{
|
|
}
|
|
|
|
static void
|
|
pika_operation_point_filter_finalize (GObject *object)
|
|
{
|
|
PikaOperationPointFilter *self = PIKA_OPERATION_POINT_FILTER (object);
|
|
|
|
g_clear_object (&self->config);
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
void
|
|
pika_operation_point_filter_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaOperationPointFilter *self = PIKA_OPERATION_POINT_FILTER (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PIKA_OPERATION_POINT_FILTER_PROP_TRC:
|
|
g_value_set_enum (value, self->trc);
|
|
break;
|
|
|
|
case PIKA_OPERATION_POINT_FILTER_PROP_CONFIG:
|
|
g_value_set_object (value, self->config);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
pika_operation_point_filter_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaOperationPointFilter *self = PIKA_OPERATION_POINT_FILTER (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PIKA_OPERATION_POINT_FILTER_PROP_TRC:
|
|
self->trc = g_value_get_enum (value);
|
|
break;
|
|
|
|
case PIKA_OPERATION_POINT_FILTER_PROP_CONFIG:
|
|
if (self->config)
|
|
g_object_unref (self->config);
|
|
self->config = g_value_dup_object (value);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pika_operation_point_filter_prepare (GeglOperation *operation)
|
|
{
|
|
PikaOperationPointFilter *self = PIKA_OPERATION_POINT_FILTER (operation);
|
|
const Babl *space = gegl_operation_get_source_space (operation,
|
|
"input");
|
|
const Babl *format;
|
|
|
|
switch (self->trc)
|
|
{
|
|
default:
|
|
case PIKA_TRC_LINEAR:
|
|
format = babl_format_with_space ("RGBA float", space);
|
|
break;
|
|
|
|
case PIKA_TRC_NON_LINEAR:
|
|
format = babl_format_with_space ("R'G'B'A float", space);
|
|
break;
|
|
|
|
case PIKA_TRC_PERCEPTUAL:
|
|
format = babl_format_with_space ("R~G~B~A float", space);
|
|
break;
|
|
}
|
|
|
|
gegl_operation_set_format (operation, "input", format);
|
|
gegl_operation_set_format (operation, "output", format);
|
|
}
|