2010-09-05 04:17:01 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimppdbcontext.c
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2013-10-15 07:58:39 +08:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2010-09-05 04:17:01 +08:00
|
|
|
#include <gegl.h>
|
|
|
|
|
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
|
|
|
|
|
|
|
#include "pdb-types.h"
|
|
|
|
|
2010-09-17 02:16:12 +08:00
|
|
|
#include "config/gimpcoreconfig.h"
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
#include "core/gimp.h"
|
2011-10-30 04:43:00 +08:00
|
|
|
#include "core/gimplist.h"
|
|
|
|
#include "core/gimppaintinfo.h"
|
2015-11-09 08:46:07 +08:00
|
|
|
#include "core/gimpstrokeoptions.h"
|
2011-10-30 04:43:00 +08:00
|
|
|
|
2012-03-01 19:58:26 +08:00
|
|
|
#include "paint/gimpbrushcore.h"
|
2011-10-30 04:43:00 +08:00
|
|
|
#include "paint/gimppaintoptions.h"
|
2010-09-05 04:17:01 +08:00
|
|
|
|
|
|
|
#include "gimppdbcontext.h"
|
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_ANTIALIAS,
|
|
|
|
PROP_FEATHER,
|
|
|
|
PROP_FEATHER_RADIUS_X,
|
2010-09-07 08:33:13 +08:00
|
|
|
PROP_FEATHER_RADIUS_Y,
|
2011-01-28 02:37:13 +08:00
|
|
|
PROP_SAMPLE_MERGED,
|
2011-01-28 03:01:28 +08:00
|
|
|
PROP_SAMPLE_CRITERION,
|
2011-02-04 22:36:56 +08:00
|
|
|
PROP_SAMPLE_THRESHOLD,
|
2011-02-05 01:32:32 +08:00
|
|
|
PROP_SAMPLE_TRANSPARENT,
|
2016-01-11 18:41:23 +08:00
|
|
|
PROP_DIAGONAL_NEIGHBORS,
|
2010-09-07 08:33:13 +08:00
|
|
|
PROP_INTERPOLATION,
|
|
|
|
PROP_TRANSFORM_DIRECTION,
|
2013-05-31 07:15:32 +08:00
|
|
|
PROP_TRANSFORM_RESIZE
|
2010-09-05 04:17:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
static void gimp_pdb_context_iface_init (GimpConfigInterface *iface);
|
|
|
|
|
2010-09-17 02:16:12 +08:00
|
|
|
static void gimp_pdb_context_constructed (GObject *object);
|
2011-10-30 04:43:00 +08:00
|
|
|
static void gimp_pdb_context_finalize (GObject *object);
|
2010-09-05 04:17:01 +08:00
|
|
|
static void gimp_pdb_context_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_pdb_context_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
static void gimp_pdb_context_reset (GimpConfig *config);
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GimpPDBContext, gimp_pdb_context, GIMP_TYPE_CONTEXT,
|
|
|
|
G_IMPLEMENT_INTERFACE (GIMP_TYPE_CONFIG,
|
|
|
|
gimp_pdb_context_iface_init))
|
2010-09-05 04:17:01 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_pdb_context_parent_class
|
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
static GimpConfigInterface *parent_config_iface = NULL;
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_pdb_context_class_init (GimpPDBContextClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2010-09-17 02:16:12 +08:00
|
|
|
object_class->constructed = gimp_pdb_context_constructed;
|
2011-10-30 04:43:00 +08:00
|
|
|
object_class->finalize = gimp_pdb_context_finalize;
|
2010-09-05 04:17:01 +08:00
|
|
|
object_class->set_property = gimp_pdb_context_set_property;
|
|
|
|
object_class->get_property = gimp_pdb_context_get_property;
|
|
|
|
|
2016-02-12 06:44:07 +08:00
|
|
|
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_ANTIALIAS,
|
|
|
|
"antialias",
|
|
|
|
_("Antialiasing"),
|
|
|
|
_("Smooth edges"),
|
|
|
|
TRUE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_FEATHER,
|
|
|
|
"feather",
|
|
|
|
_("Feather"),
|
|
|
|
NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_DOUBLE (object_class, PROP_FEATHER_RADIUS_X,
|
|
|
|
"feather-radius-x",
|
|
|
|
_("Feather radius X"),
|
|
|
|
NULL,
|
|
|
|
0.0, 1000.0, 10.0,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_DOUBLE (object_class, PROP_FEATHER_RADIUS_Y,
|
|
|
|
"feather-radius-y",
|
|
|
|
_("Feather radius Y"),
|
|
|
|
NULL,
|
|
|
|
0.0, 1000.0, 10.0,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_SAMPLE_MERGED,
|
|
|
|
"sample-merged",
|
|
|
|
_("Sample merged"),
|
|
|
|
NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_ENUM (object_class, PROP_SAMPLE_CRITERION,
|
|
|
|
"sample-criterion",
|
|
|
|
_("Sample criterion"),
|
|
|
|
NULL,
|
|
|
|
GIMP_TYPE_SELECT_CRITERION,
|
|
|
|
GIMP_SELECT_CRITERION_COMPOSITE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_DOUBLE (object_class, PROP_SAMPLE_THRESHOLD,
|
|
|
|
"sample-threshold",
|
|
|
|
_("Sample threshold"),
|
|
|
|
NULL,
|
|
|
|
0.0, 1.0, 0.0,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_SAMPLE_TRANSPARENT,
|
|
|
|
"sample-transparent",
|
|
|
|
_("Sample transparent"),
|
|
|
|
NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_DIAGONAL_NEIGHBORS,
|
|
|
|
"diagonal-neighbors",
|
|
|
|
_("Diagonal neighbors"),
|
|
|
|
NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_ENUM (object_class, PROP_INTERPOLATION,
|
|
|
|
"interpolation",
|
|
|
|
_("Interpolation"),
|
|
|
|
NULL,
|
|
|
|
GIMP_TYPE_INTERPOLATION_TYPE,
|
|
|
|
GIMP_INTERPOLATION_CUBIC,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_ENUM (object_class, PROP_TRANSFORM_DIRECTION,
|
|
|
|
"transform-direction",
|
|
|
|
_("Transform direction"),
|
|
|
|
NULL,
|
|
|
|
GIMP_TYPE_TRANSFORM_DIRECTION,
|
|
|
|
GIMP_TRANSFORM_FORWARD,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
GIMP_CONFIG_PROP_ENUM (object_class, PROP_TRANSFORM_RESIZE,
|
|
|
|
"transform-resize",
|
|
|
|
_("Transform resize"),
|
|
|
|
NULL,
|
|
|
|
GIMP_TYPE_TRANSFORM_RESIZE,
|
|
|
|
GIMP_TRANSFORM_RESIZE_ADJUST,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
2010-09-05 04:17:01 +08:00
|
|
|
}
|
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
static void
|
|
|
|
gimp_pdb_context_iface_init (GimpConfigInterface *iface)
|
|
|
|
{
|
|
|
|
parent_config_iface = g_type_interface_peek_parent (iface);
|
|
|
|
|
|
|
|
if (! parent_config_iface)
|
|
|
|
parent_config_iface = g_type_default_interface_peek (GIMP_TYPE_CONFIG);
|
|
|
|
|
|
|
|
iface->reset = gimp_pdb_context_reset;
|
|
|
|
}
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
static void
|
2011-10-30 04:43:00 +08:00
|
|
|
gimp_pdb_context_init (GimpPDBContext *context)
|
2010-09-05 04:17:01 +08:00
|
|
|
{
|
2011-10-30 04:43:00 +08:00
|
|
|
context->paint_options_list = gimp_list_new (GIMP_TYPE_PAINT_OPTIONS,
|
|
|
|
FALSE);
|
2010-09-05 04:17:01 +08:00
|
|
|
}
|
|
|
|
|
2010-09-17 02:16:12 +08:00
|
|
|
static void
|
|
|
|
gimp_pdb_context_constructed (GObject *object)
|
|
|
|
{
|
2015-11-09 08:46:07 +08:00
|
|
|
GimpPDBContext *context = GIMP_PDB_CONTEXT (object);
|
2010-09-17 02:16:12 +08:00
|
|
|
GimpInterpolationType interpolation;
|
2011-02-04 22:36:56 +08:00
|
|
|
gint threshold;
|
2010-09-17 02:16:12 +08:00
|
|
|
GParamSpec *pspec;
|
|
|
|
|
2012-11-13 04:51:22 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->constructed (object);
|
2011-10-30 04:43:00 +08:00
|
|
|
|
2015-11-09 08:46:07 +08:00
|
|
|
context->stroke_options = gimp_stroke_options_new (GIMP_CONTEXT (context)->gimp,
|
|
|
|
GIMP_CONTEXT (context),
|
|
|
|
TRUE);
|
|
|
|
|
2016-01-11 02:29:05 +08:00
|
|
|
/* keep the stroke options in sync with the context */
|
|
|
|
gimp_context_define_properties (GIMP_CONTEXT (context->stroke_options),
|
|
|
|
GIMP_CONTEXT_PROP_MASK_ALL, FALSE);
|
|
|
|
gimp_context_set_parent (GIMP_CONTEXT (context->stroke_options),
|
|
|
|
GIMP_CONTEXT (context));
|
|
|
|
|
2015-11-09 08:46:07 +08:00
|
|
|
/* preserve the traditional PDB default */
|
|
|
|
g_object_set (context->stroke_options,
|
|
|
|
"method", GIMP_STROKE_PAINT_METHOD,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_object_bind_property (G_OBJECT (context), "antialias",
|
|
|
|
G_OBJECT (context->stroke_options), "antialias",
|
|
|
|
G_BINDING_SYNC_CREATE);
|
|
|
|
|
2011-02-04 22:36:56 +08:00
|
|
|
/* get default interpolation from gimprc */
|
|
|
|
|
2010-09-17 02:16:12 +08:00
|
|
|
interpolation = GIMP_CONTEXT (object)->gimp->config->interpolation_type;
|
|
|
|
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object),
|
|
|
|
"interpolation");
|
|
|
|
|
|
|
|
if (pspec)
|
|
|
|
G_PARAM_SPEC_ENUM (pspec)->default_value = interpolation;
|
|
|
|
|
|
|
|
g_object_set (object, "interpolation", interpolation, NULL);
|
|
|
|
|
2011-02-04 22:36:56 +08:00
|
|
|
/* get default threshold from gimprc */
|
|
|
|
|
|
|
|
threshold = GIMP_CONTEXT (object)->gimp->config->default_threshold;
|
|
|
|
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object),
|
|
|
|
"sample-threshold");
|
|
|
|
|
|
|
|
if (pspec)
|
|
|
|
G_PARAM_SPEC_DOUBLE (pspec)->default_value = threshold / 255.0;
|
|
|
|
|
|
|
|
g_object_set (object, "sample-threshold", threshold / 255.0, NULL);
|
2011-10-30 04:43:00 +08:00
|
|
|
}
|
2011-02-04 22:36:56 +08:00
|
|
|
|
2011-10-30 04:43:00 +08:00
|
|
|
static void
|
|
|
|
gimp_pdb_context_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GimpPDBContext *context = GIMP_PDB_CONTEXT (object);
|
|
|
|
|
|
|
|
if (context->paint_options_list)
|
|
|
|
{
|
|
|
|
g_object_unref (context->paint_options_list);
|
|
|
|
context->paint_options_list = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-09 08:46:07 +08:00
|
|
|
if (context->stroke_options)
|
|
|
|
{
|
|
|
|
g_object_unref (context->stroke_options);
|
|
|
|
context->stroke_options = NULL;
|
|
|
|
}
|
|
|
|
|
2011-10-30 04:43:00 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2010-09-17 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
static void
|
|
|
|
gimp_pdb_context_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpPDBContext *options = GIMP_PDB_CONTEXT (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_ANTIALIAS:
|
|
|
|
options->antialias = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER:
|
|
|
|
options->feather = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER_RADIUS_X:
|
|
|
|
options->feather_radius_x = g_value_get_double (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER_RADIUS_Y:
|
|
|
|
options->feather_radius_y = g_value_get_double (value);
|
|
|
|
break;
|
|
|
|
|
2011-01-28 02:37:13 +08:00
|
|
|
case PROP_SAMPLE_MERGED:
|
|
|
|
options->sample_merged = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
|
2011-01-28 03:01:28 +08:00
|
|
|
case PROP_SAMPLE_CRITERION:
|
|
|
|
options->sample_criterion = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
|
2011-02-04 22:36:56 +08:00
|
|
|
case PROP_SAMPLE_THRESHOLD:
|
|
|
|
options->sample_threshold = g_value_get_double (value);
|
|
|
|
break;
|
|
|
|
|
2011-02-05 01:32:32 +08:00
|
|
|
case PROP_SAMPLE_TRANSPARENT:
|
|
|
|
options->sample_transparent = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
|
2016-01-11 18:41:23 +08:00
|
|
|
case PROP_DIAGONAL_NEIGHBORS:
|
|
|
|
options->diagonal_neighbors = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
|
2010-09-07 08:33:13 +08:00
|
|
|
case PROP_INTERPOLATION:
|
|
|
|
options->interpolation = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TRANSFORM_DIRECTION:
|
|
|
|
options->transform_direction = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TRANSFORM_RESIZE:
|
|
|
|
options->transform_resize = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_pdb_context_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpPDBContext *options = GIMP_PDB_CONTEXT (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_ANTIALIAS:
|
|
|
|
g_value_set_boolean (value, options->antialias);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER:
|
|
|
|
g_value_set_boolean (value, options->feather);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER_RADIUS_X:
|
|
|
|
g_value_set_double (value, options->feather_radius_x);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_FEATHER_RADIUS_Y:
|
|
|
|
g_value_set_double (value, options->feather_radius_y);
|
|
|
|
break;
|
|
|
|
|
2011-01-28 02:37:13 +08:00
|
|
|
case PROP_SAMPLE_MERGED:
|
|
|
|
g_value_set_boolean (value, options->sample_merged);
|
|
|
|
break;
|
|
|
|
|
2011-01-28 03:01:28 +08:00
|
|
|
case PROP_SAMPLE_CRITERION:
|
|
|
|
g_value_set_enum (value, options->sample_criterion);
|
|
|
|
break;
|
|
|
|
|
2011-02-04 22:36:56 +08:00
|
|
|
case PROP_SAMPLE_THRESHOLD:
|
|
|
|
g_value_set_double (value, options->sample_threshold);
|
|
|
|
break;
|
|
|
|
|
2011-02-05 01:32:32 +08:00
|
|
|
case PROP_SAMPLE_TRANSPARENT:
|
|
|
|
g_value_set_boolean (value, options->sample_transparent);
|
|
|
|
break;
|
|
|
|
|
2016-01-11 18:41:23 +08:00
|
|
|
case PROP_DIAGONAL_NEIGHBORS:
|
|
|
|
g_value_set_boolean (value, options->diagonal_neighbors);
|
|
|
|
break;
|
|
|
|
|
2010-09-07 08:33:13 +08:00
|
|
|
case PROP_INTERPOLATION:
|
|
|
|
g_value_set_enum (value, options->interpolation);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TRANSFORM_DIRECTION:
|
|
|
|
g_value_set_enum (value, options->transform_direction);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TRANSFORM_RESIZE:
|
|
|
|
g_value_set_enum (value, options->transform_resize);
|
|
|
|
break;
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 10:20:45 +08:00
|
|
|
static void
|
|
|
|
gimp_pdb_context_reset (GimpConfig *config)
|
|
|
|
{
|
|
|
|
GimpPDBContext *context = GIMP_PDB_CONTEXT (config);
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = GIMP_LIST (context->paint_options_list)->list;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
gimp_config_reset (list->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_config_reset (GIMP_CONFIG (context->stroke_options));
|
|
|
|
|
|
|
|
/* preserve the traditional PDB default */
|
|
|
|
g_object_set (context->stroke_options,
|
|
|
|
"method", GIMP_STROKE_PAINT_METHOD,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
parent_config_iface->reset (config);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (context), "antialias");
|
|
|
|
}
|
|
|
|
|
2010-09-05 04:17:01 +08:00
|
|
|
GimpContext *
|
|
|
|
gimp_pdb_context_new (Gimp *gimp,
|
|
|
|
GimpContext *parent,
|
|
|
|
gboolean set_parent)
|
|
|
|
{
|
2011-10-30 04:43:00 +08:00
|
|
|
GimpPDBContext *context;
|
|
|
|
GList *list;
|
2010-09-05 04:17:01 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (parent), NULL);
|
|
|
|
|
|
|
|
context = g_object_new (GIMP_TYPE_PDB_CONTEXT,
|
|
|
|
"gimp", gimp,
|
|
|
|
"name", "PDB Context",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (set_parent)
|
|
|
|
{
|
2011-10-30 04:43:00 +08:00
|
|
|
gimp_context_define_properties (GIMP_CONTEXT (context),
|
2015-09-09 03:18:49 +08:00
|
|
|
GIMP_CONTEXT_PROP_MASK_ALL, FALSE);
|
2011-10-30 04:43:00 +08:00
|
|
|
gimp_context_set_parent (GIMP_CONTEXT (context), parent);
|
|
|
|
|
|
|
|
for (list = gimp_get_paint_info_iter (gimp);
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpPaintInfo *info = list->data;
|
|
|
|
|
|
|
|
gimp_container_add (context->paint_options_list,
|
|
|
|
GIMP_OBJECT (info->paint_options));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (list = GIMP_LIST (GIMP_PDB_CONTEXT (parent)->paint_options_list)->list;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpPaintOptions *options = gimp_config_duplicate (list->data);
|
|
|
|
|
|
|
|
gimp_container_add (context->paint_options_list,
|
|
|
|
GIMP_OBJECT (options));
|
|
|
|
g_object_unref (options);
|
|
|
|
}
|
2016-01-11 02:01:26 +08:00
|
|
|
|
|
|
|
gimp_config_copy (GIMP_CONFIG (GIMP_PDB_CONTEXT (parent)->stroke_options),
|
|
|
|
GIMP_CONFIG (context->stroke_options),
|
|
|
|
0);
|
2010-09-05 04:17:01 +08:00
|
|
|
}
|
|
|
|
|
2016-01-11 02:29:05 +08:00
|
|
|
/* copy the context properties last, they might have been
|
|
|
|
* overwritten by the above copying of stroke options, which have
|
|
|
|
* the pdb context as parent
|
|
|
|
*/
|
|
|
|
gimp_config_sync (G_OBJECT (parent), G_OBJECT (context), 0);
|
|
|
|
|
2011-10-30 04:43:00 +08:00
|
|
|
return GIMP_CONTEXT (context);
|
2010-09-05 04:17:01 +08:00
|
|
|
}
|
2011-10-30 05:39:46 +08:00
|
|
|
|
|
|
|
GimpPaintOptions *
|
|
|
|
gimp_pdb_context_get_paint_options (GimpPDBContext *context,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PDB_CONTEXT (context), NULL);
|
2014-02-07 06:20:39 +08:00
|
|
|
|
|
|
|
if (! name)
|
|
|
|
name = gimp_object_get_name (gimp_context_get_paint_info (GIMP_CONTEXT (context)));
|
2011-10-30 05:39:46 +08:00
|
|
|
|
|
|
|
return (GimpPaintOptions *)
|
|
|
|
gimp_container_get_child_by_name (context->paint_options_list, name);
|
|
|
|
}
|
2012-03-01 19:58:26 +08:00
|
|
|
|
|
|
|
GList *
|
|
|
|
gimp_pdb_context_get_brush_options (GimpPDBContext *context)
|
|
|
|
{
|
|
|
|
GList *brush_options = NULL;
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PDB_CONTEXT (context), NULL);
|
|
|
|
|
|
|
|
for (list = GIMP_LIST (context->paint_options_list)->list;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpPaintOptions *options = list->data;
|
|
|
|
|
|
|
|
if (g_type_is_a (options->paint_info->paint_type, GIMP_TYPE_BRUSH_CORE))
|
|
|
|
brush_options = g_list_prepend (brush_options, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_list_reverse (brush_options);
|
|
|
|
}
|
2015-11-09 08:46:07 +08:00
|
|
|
|
|
|
|
GimpStrokeOptions *
|
|
|
|
gimp_pdb_context_get_stroke_options (GimpPDBContext *context)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PDB_CONTEXT (context), NULL);
|
|
|
|
|
|
|
|
return context->stroke_options;
|
|
|
|
}
|