2008-10-12 20:26:27 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2008-10-30 23:18:35 +00:00
|
|
|
* gimpoperationpointlayermode.c
|
2008-10-12 20:26:27 +00:00
|
|
|
* Copyright (C) 2008 Michael Natterer <mitch@gimp.org>
|
2008-10-25 14:16:22 +00:00
|
|
|
* Copyright (C) 2008 Martin Nordholts <martinn@svn.gnome.org>
|
2008-10-12 20:26:27 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2008-10-12 20:26:27 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2008-10-12 20:26:27 +00:00
|
|
|
* (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
|
2009-01-17 22:28:01 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-10-12 20:26:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2011-04-28 15:50:39 +02:00
|
|
|
#include <cairo.h>
|
2008-10-25 14:16:22 +00:00
|
|
|
#include <gegl-plugin.h>
|
2012-05-03 03:36:22 +02:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2008-10-12 20:26:27 +00:00
|
|
|
|
2008-10-29 21:25:35 +00:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
|
|
|
2012-05-10 21:22:44 +02:00
|
|
|
#include "operations-types.h"
|
2008-10-12 20:26:27 +00:00
|
|
|
|
2008-10-25 14:16:22 +00:00
|
|
|
#include "gimpoperationpointlayermode.h"
|
2008-10-12 20:26:27 +00:00
|
|
|
|
|
|
|
|
2008-10-25 13:29:55 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2012-12-13 22:58:38 +01:00
|
|
|
PROP_LINEAR,
|
2012-05-18 23:35:00 +03:00
|
|
|
PROP_OPACITY
|
2008-10-25 13:29:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-06-12 21:08:04 +02:00
|
|
|
static void gimp_operation_point_layer_mode_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_operation_point_layer_mode_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
static void gimp_operation_point_layer_mode_prepare (GeglOperation *operation);
|
|
|
|
static gboolean gimp_operation_point_layer_mode_process (GeglOperation *operation,
|
|
|
|
GeglOperationContext *context,
|
|
|
|
const gchar *output_prop,
|
|
|
|
const GeglRectangle *result,
|
|
|
|
gint level);
|
2008-10-12 20:26:27 +00:00
|
|
|
|
|
|
|
|
2008-10-25 14:16:22 +00:00
|
|
|
G_DEFINE_TYPE (GimpOperationPointLayerMode, gimp_operation_point_layer_mode,
|
2012-05-18 23:35:00 +03:00
|
|
|
GEGL_TYPE_OPERATION_POINT_COMPOSER3)
|
2008-10-12 20:26:27 +00:00
|
|
|
|
2013-06-12 21:08:04 +02:00
|
|
|
#define parent_class gimp_operation_point_layer_mode_parent_class
|
|
|
|
|
2008-10-12 20:26:27 +00:00
|
|
|
|
|
|
|
static void
|
2008-10-25 14:16:22 +00:00
|
|
|
gimp_operation_point_layer_mode_class_init (GimpOperationPointLayerModeClass *klass)
|
2008-10-12 20:26:27 +00:00
|
|
|
{
|
2012-05-18 23:37:56 +02:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GeglOperationClass *operation_class = GEGL_OPERATION_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->set_property = gimp_operation_point_layer_mode_set_property;
|
|
|
|
object_class->get_property = gimp_operation_point_layer_mode_get_property;
|
2008-10-12 20:26:27 +00:00
|
|
|
|
2012-05-18 23:37:56 +02:00
|
|
|
operation_class->prepare = gimp_operation_point_layer_mode_prepare;
|
2013-06-12 21:08:04 +02:00
|
|
|
operation_class->process = gimp_operation_point_layer_mode_process;
|
2008-10-25 13:29:55 +00:00
|
|
|
|
2012-12-13 22:58:38 +01:00
|
|
|
g_object_class_install_property (object_class, PROP_LINEAR,
|
|
|
|
g_param_spec_boolean ("linear",
|
2012-03-24 15:35:26 +01:00
|
|
|
NULL, NULL,
|
2012-05-18 23:37:56 +02:00
|
|
|
FALSE,
|
2012-03-24 15:35:26 +01:00
|
|
|
GIMP_PARAM_READWRITE |
|
2012-04-05 12:47:34 +02:00
|
|
|
G_PARAM_CONSTRUCT));
|
2012-03-24 15:35:26 +01:00
|
|
|
|
2012-05-18 23:35:00 +03:00
|
|
|
g_object_class_install_property (object_class, PROP_OPACITY,
|
|
|
|
g_param_spec_double ("opacity",
|
|
|
|
NULL, NULL,
|
|
|
|
0.0, 1.0, 1.0,
|
|
|
|
GIMP_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT));
|
2008-10-12 20:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-10-25 14:16:22 +00:00
|
|
|
gimp_operation_point_layer_mode_init (GimpOperationPointLayerMode *self)
|
2008-10-12 20:26:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-25 13:29:55 +00:00
|
|
|
static void
|
2008-10-25 14:16:22 +00:00
|
|
|
gimp_operation_point_layer_mode_set_property (GObject *object,
|
2008-10-25 21:02:46 +00:00
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2008-10-25 13:29:55 +00:00
|
|
|
{
|
2008-10-25 14:16:22 +00:00
|
|
|
GimpOperationPointLayerMode *self = GIMP_OPERATION_POINT_LAYER_MODE (object);
|
2008-10-25 13:29:55 +00:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2012-12-13 22:58:38 +01:00
|
|
|
case PROP_LINEAR:
|
|
|
|
self->linear = g_value_get_boolean (value);
|
2012-03-24 15:35:26 +01:00
|
|
|
break;
|
|
|
|
|
2012-05-18 23:35:00 +03:00
|
|
|
case PROP_OPACITY:
|
|
|
|
self->opacity = g_value_get_double (value);
|
|
|
|
break;
|
|
|
|
|
2008-10-25 13:29:55 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-10-25 14:16:22 +00:00
|
|
|
gimp_operation_point_layer_mode_get_property (GObject *object,
|
2008-10-25 21:02:46 +00:00
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2008-10-25 13:29:55 +00:00
|
|
|
{
|
2008-10-25 14:16:22 +00:00
|
|
|
GimpOperationPointLayerMode *self = GIMP_OPERATION_POINT_LAYER_MODE (object);
|
2008-10-25 13:29:55 +00:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2012-12-13 22:58:38 +01:00
|
|
|
case PROP_LINEAR:
|
|
|
|
g_value_set_boolean (value, self->linear);
|
2012-03-24 15:35:26 +01:00
|
|
|
break;
|
|
|
|
|
2012-05-18 23:35:00 +03:00
|
|
|
case PROP_OPACITY:
|
|
|
|
g_value_set_double (value, self->opacity);
|
|
|
|
break;
|
|
|
|
|
2008-10-25 13:29:55 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-25 09:47:09 +00:00
|
|
|
static void
|
2008-10-25 14:16:22 +00:00
|
|
|
gimp_operation_point_layer_mode_prepare (GeglOperation *operation)
|
2008-10-25 09:47:09 +00:00
|
|
|
{
|
2012-03-24 15:35:26 +01:00
|
|
|
GimpOperationPointLayerMode *self = GIMP_OPERATION_POINT_LAYER_MODE (operation);
|
|
|
|
const Babl *format;
|
|
|
|
|
2012-12-13 22:58:38 +01:00
|
|
|
if (self->linear)
|
|
|
|
format = babl_format ("RGBA float");
|
2012-03-24 15:35:26 +01:00
|
|
|
else
|
2012-03-27 21:31:47 +01:00
|
|
|
format = babl_format ("R'G'B'A float");
|
2008-10-25 09:47:09 +00:00
|
|
|
|
|
|
|
gegl_operation_set_format (operation, "input", format);
|
|
|
|
gegl_operation_set_format (operation, "output", format);
|
|
|
|
gegl_operation_set_format (operation, "aux", format);
|
2012-05-18 23:35:00 +03:00
|
|
|
gegl_operation_set_format (operation, "aux2", babl_format ("Y float"));
|
2008-10-25 09:47:09 +00:00
|
|
|
}
|
2013-06-12 21:08:04 +02:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_operation_point_layer_mode_process (GeglOperation *operation,
|
|
|
|
GeglOperationContext *context,
|
|
|
|
const gchar *output_prop,
|
|
|
|
const GeglRectangle *result,
|
|
|
|
gint level)
|
|
|
|
{
|
|
|
|
GimpOperationPointLayerMode *point;
|
|
|
|
|
|
|
|
point = GIMP_OPERATION_POINT_LAYER_MODE (operation);
|
|
|
|
|
|
|
|
if (point->opacity == 0.0 ||
|
|
|
|
! gegl_operation_context_get_object (context, "aux"))
|
|
|
|
{
|
|
|
|
GObject *input;
|
|
|
|
|
|
|
|
/* get the raw values this does not increase the reference count */
|
|
|
|
input = gegl_operation_context_get_object (context, "input");
|
|
|
|
|
|
|
|
if (input)
|
|
|
|
{
|
|
|
|
gegl_operation_context_set_object (context, "output", input);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* chain up, which will create the needed buffers for our actual
|
|
|
|
* process function
|
|
|
|
*/
|
|
|
|
return GEGL_OPERATION_CLASS (parent_class)->process (operation, context,
|
|
|
|
output_prop, result,
|
|
|
|
level);
|
|
|
|
}
|