gimp/libgimp/gimpbrushselect.c

387 lines
14 KiB
C

/* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
*
* gimpbrushselect.c
*
* This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "gimp.h"
typedef struct
{
gchar *brush_callback;
guint idle_id;
gchar *brush_name;
gdouble opacity;
gint spacing;
gint paint_mode;
gint width;
gint height;
guchar *brush_mask_data;
GimpRunBrushCallback callback;
gboolean closing;
gpointer data;
GDestroyNotify data_destroy;
} GimpBrushData;
/* local function prototypes */
static void gimp_brush_data_free (GimpBrushData *data);
static void gimp_temp_brush_run (const gchar *name,
gint nparams,
const GimpParam *param,
gint *nreturn_vals,
GimpParam **return_vals);
static GimpValueArray *
gimp_temp_brush_run_func (GimpProcedure *procedure,
const GimpValueArray *args,
gpointer run_data);
static gboolean gimp_temp_brush_run_idle (GimpBrushData *brush_data);
/* private variables */
static GHashTable *gimp_brush_select_ht = NULL;
/* public functions */
const gchar *
gimp_brush_select_new (const gchar *title,
const gchar *brush_name,
gdouble opacity,
gint spacing,
GimpLayerMode paint_mode,
GimpRunBrushCallback callback,
gpointer data,
GDestroyNotify data_destroy)
{
GimpPlugIn *plug_in = gimp_get_plug_in ();
gchar *brush_callback;
GimpBrushData *brush_data;
if (plug_in)
brush_callback = gimp_pdb_temp_procedure_name (gimp_get_pdb ());
else
brush_callback = gimp_pdb_temp_name ();
brush_data = g_slice_new0 (GimpBrushData);
brush_data->brush_callback = brush_callback;
brush_data->callback = callback;
brush_data->data = data;
brush_data->data_destroy = data_destroy;
if (plug_in)
{
GimpProcedure *procedure = gimp_procedure_new (plug_in,
brush_callback,
GIMP_TEMPORARY,
gimp_temp_brush_run_func,
brush_data,
(GDestroyNotify)
gimp_brush_data_free);
gimp_procedure_add_argument (procedure,
g_param_spec_string ("brush-name",
"Brush name",
"The brush name",
NULL,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_double ("opacity",
"Opacity",
NULL,
0.0, 1.0, 1.0,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_int ("spacing",
"Spacing",
NULL,
-1, 1000, 20,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_enum ("paint-mode",
"Paint mode",
NULL,
GIMP_TYPE_LAYER_MODE,
GIMP_LAYER_MODE_NORMAL,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_int ("mask-width",
"Brush width",
NULL,
0, 10000, 0,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_int ("mask-height",
"Brush height",
NULL,
0, 10000, 0,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
gimp_param_spec_int32 ("mask-len",
"Mask length",
"Length of brush "
"mask data",
0, G_MAXINT, 0,
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
gimp_param_spec_int8_array ("mask-data",
"Mask data",
"The brush mask "
"data",
G_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_boolean ("closing",
"Closing",
"If the dialog was "
"cloaing",
FALSE,
G_PARAM_READWRITE));
gimp_plug_in_add_temp_procedure (plug_in, procedure);
g_object_unref (procedure);
}
else
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_FLOAT, "opacity", "Opacity" },
{ GIMP_PDB_INT32, "spacing", "Spacing" },
{ GIMP_PDB_INT32, "paint mode", "Paint mode" },
{ GIMP_PDB_INT32, "mask width", "Brush width" },
{ GIMP_PDB_INT32, "mask height" "Brush height" },
{ GIMP_PDB_INT32, "mask len", "Length of brush mask data" },
{ GIMP_PDB_INT8ARRAY, "mask data", "The brush mask data" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" }
};
gimp_install_temp_proc (brush_callback,
"Temporary brush popup callback procedure",
"",
"",
"",
"",
NULL,
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,
gimp_temp_brush_run);
}
if (gimp_brushes_popup (brush_callback, title, brush_name,
opacity, spacing, paint_mode))
{
/* Allow callbacks to be watched */
if (plug_in)
{
gimp_plug_in_extension_enable (plug_in);
}
else
{
gimp_extension_enable ();
/* Now add to hash table so we can find it again */
if (! gimp_brush_select_ht)
{
gimp_brush_select_ht =
g_hash_table_new_full (g_str_hash, g_str_equal,
g_free,
(GDestroyNotify) gimp_brush_data_free);
}
g_hash_table_insert (gimp_brush_select_ht,
g_strdup (brush_callback),
brush_data);
}
return brush_callback;
}
if (plug_in)
{
gimp_plug_in_remove_temp_procedure (plug_in, brush_callback);
}
else
{
gimp_uninstall_temp_proc (brush_callback);
gimp_brush_data_free (brush_data);
}
return NULL;
}
void
gimp_brush_select_destroy (const gchar *brush_callback)
{
GimpPlugIn *plug_in = gimp_get_plug_in ();
g_return_if_fail (brush_callback != NULL);
if (plug_in)
{
gimp_plug_in_remove_temp_procedure (plug_in, brush_callback);
}
else
{
GimpBrushData *brush_data;
g_return_if_fail (gimp_brush_select_ht != NULL);
brush_data = g_hash_table_lookup (gimp_brush_select_ht, brush_callback);
if (! brush_data)
{
g_warning ("Can't find internal brush data");
return;
}
g_hash_table_remove (gimp_brush_select_ht, brush_callback);
gimp_uninstall_temp_proc (brush_callback);
}
}
/* private functions */
static void
gimp_brush_data_free (GimpBrushData *data)
{
if (data->idle_id)
g_source_remove (data->idle_id);
if (data->brush_callback)
{
gimp_brushes_close_popup (data->brush_callback);
g_free (data->brush_callback);
}
g_free (data->brush_name);
g_free (data->brush_mask_data);
if (data->data_destroy)
data->data_destroy (data->data);
g_slice_free (GimpBrushData, data);
}
static void
gimp_temp_brush_run (const gchar *name,
gint nparams,
const GimpParam *param,
gint *nreturn_vals,
GimpParam **return_vals)
{
static GimpParam values[1];
GimpBrushData *brush_data;
brush_data = g_hash_table_lookup (gimp_brush_select_ht, name);
if (! brush_data)
{
g_warning ("Can't find internal brush data");
}
else
{
g_free (brush_data->brush_name);
g_free (brush_data->brush_mask_data);
brush_data->brush_name = g_strdup (param[0].data.d_string);
brush_data->opacity = param[1].data.d_float;
brush_data->spacing = param[2].data.d_int32;
brush_data->paint_mode = param[3].data.d_int32;
brush_data->width = param[4].data.d_int32;
brush_data->height = param[5].data.d_int32;
brush_data->brush_mask_data = g_memdup (param[7].data.d_int8array,
param[6].data.d_int32);
brush_data->closing = param[8].data.d_int32;
if (! brush_data->idle_id)
brush_data->idle_id = g_idle_add ((GSourceFunc) gimp_temp_brush_run_idle,
brush_data);
}
*nreturn_vals = 1;
*return_vals = values;
values[0].type = GIMP_PDB_STATUS;
values[0].data.d_status = GIMP_PDB_SUCCESS;
}
static GimpValueArray *
gimp_temp_brush_run_func (GimpProcedure *procedure,
const GimpValueArray *args,
gpointer run_data)
{
GimpBrushData *data = run_data;
g_free (data->brush_name);
g_free (data->brush_mask_data);
data->brush_name = g_value_dup_string (gimp_value_array_index (args, 0));
data->opacity = g_value_get_double (gimp_value_array_index (args, 1));
data->spacing = g_value_get_int (gimp_value_array_index (args, 2));
data->paint_mode = g_value_get_enum (gimp_value_array_index (args, 3));
data->width = g_value_get_int (gimp_value_array_index (args, 4));
data->height = g_value_get_int (gimp_value_array_index (args, 5));
data->brush_mask_data = gimp_value_dup_int8_array (gimp_value_array_index (args, 7));
data->closing = g_value_get_boolean (gimp_value_array_index (args, 8));
if (! data->idle_id)
data->idle_id = g_idle_add ((GSourceFunc) gimp_temp_brush_run_idle,
data);
return gimp_procedure_new_return_values (procedure, GIMP_PDB_SUCCESS, NULL);
}
static gboolean
gimp_temp_brush_run_idle (GimpBrushData *brush_data)
{
brush_data->idle_id = 0;
if (brush_data->callback)
brush_data->callback (brush_data->brush_name,
brush_data->opacity,
brush_data->spacing,
brush_data->paint_mode,
brush_data->width,
brush_data->height,
brush_data->brush_mask_data,
brush_data->closing,
brush_data->data);
if (brush_data->closing)
{
gchar *brush_callback = brush_data->brush_callback;
brush_data->brush_callback = NULL;
gimp_brush_select_destroy (brush_callback);
g_free (brush_callback);
}
return G_SOURCE_REMOVE;
}