mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
app, libgimp, pdb: add GimpLinkLayer base API.
Still more to be done, but this is the basic, working API.
This commit is contained in:
@@ -36,6 +36,7 @@
|
|||||||
#include "gimpimage.h"
|
#include "gimpimage.h"
|
||||||
#include "gimplayer.h"
|
#include "gimplayer.h"
|
||||||
#include "gimplayermask.h"
|
#include "gimplayermask.h"
|
||||||
|
#include "gimplinklayer.h"
|
||||||
#include "gimppalette.h"
|
#include "gimppalette.h"
|
||||||
#include "gimpparamspecs.h"
|
#include "gimpparamspecs.h"
|
||||||
#include "gimppattern.h"
|
#include "gimppattern.h"
|
||||||
|
@@ -30,26 +30,26 @@
|
|||||||
#include "internal-procs.h"
|
#include "internal-procs.h"
|
||||||
|
|
||||||
|
|
||||||
/* 752 procedures registered total */
|
/* 758 procedures registered total */
|
||||||
|
|
||||||
void
|
void
|
||||||
internal_procs_init (GimpPDB *pdb)
|
internal_procs_init (GimpPDB *pdb)
|
||||||
{
|
{
|
||||||
g_return_if_fail (GIMP_IS_PDB (pdb));
|
g_return_if_fail (GIMP_IS_PDB (pdb));
|
||||||
|
|
||||||
register_brush_procs (pdb);
|
|
||||||
register_brush_select_procs (pdb);
|
register_brush_select_procs (pdb);
|
||||||
|
register_brush_procs (pdb);
|
||||||
register_brushes_procs (pdb);
|
register_brushes_procs (pdb);
|
||||||
register_buffer_procs (pdb);
|
register_buffer_procs (pdb);
|
||||||
register_channel_procs (pdb);
|
register_channel_procs (pdb);
|
||||||
register_context_procs (pdb);
|
register_context_procs (pdb);
|
||||||
register_debug_procs (pdb);
|
register_debug_procs (pdb);
|
||||||
register_display_procs (pdb);
|
register_display_procs (pdb);
|
||||||
register_drawable_procs (pdb);
|
|
||||||
register_drawable_color_procs (pdb);
|
register_drawable_color_procs (pdb);
|
||||||
register_drawable_edit_procs (pdb);
|
register_drawable_edit_procs (pdb);
|
||||||
register_drawable_filter_procs (pdb);
|
register_drawable_filter_procs (pdb);
|
||||||
register_drawable_select_procs (pdb);
|
register_drawable_select_procs (pdb);
|
||||||
|
register_drawable_procs (pdb);
|
||||||
register_dynamics_procs (pdb);
|
register_dynamics_procs (pdb);
|
||||||
register_edit_procs (pdb);
|
register_edit_procs (pdb);
|
||||||
register_file_procs (pdb);
|
register_file_procs (pdb);
|
||||||
@@ -59,12 +59,11 @@ internal_procs_init (GimpPDB *pdb)
|
|||||||
register_fonts_procs (pdb);
|
register_fonts_procs (pdb);
|
||||||
register_gimp_procs (pdb);
|
register_gimp_procs (pdb);
|
||||||
register_gimprc_procs (pdb);
|
register_gimprc_procs (pdb);
|
||||||
register_gradient_procs (pdb);
|
|
||||||
register_gradient_select_procs (pdb);
|
register_gradient_select_procs (pdb);
|
||||||
|
register_gradient_procs (pdb);
|
||||||
register_gradients_procs (pdb);
|
register_gradients_procs (pdb);
|
||||||
register_group_layer_procs (pdb);
|
register_group_layer_procs (pdb);
|
||||||
register_help_procs (pdb);
|
register_help_procs (pdb);
|
||||||
register_image_procs (pdb);
|
|
||||||
register_image_autocrop_procs (pdb);
|
register_image_autocrop_procs (pdb);
|
||||||
register_image_color_profile_procs (pdb);
|
register_image_color_profile_procs (pdb);
|
||||||
register_image_convert_procs (pdb);
|
register_image_convert_procs (pdb);
|
||||||
@@ -74,17 +73,19 @@ internal_procs_init (GimpPDB *pdb)
|
|||||||
register_image_select_procs (pdb);
|
register_image_select_procs (pdb);
|
||||||
register_image_transform_procs (pdb);
|
register_image_transform_procs (pdb);
|
||||||
register_image_undo_procs (pdb);
|
register_image_undo_procs (pdb);
|
||||||
register_item_procs (pdb);
|
register_image_procs (pdb);
|
||||||
register_item_transform_procs (pdb);
|
register_item_transform_procs (pdb);
|
||||||
|
register_item_procs (pdb);
|
||||||
register_layer_procs (pdb);
|
register_layer_procs (pdb);
|
||||||
|
register_link_layer_procs (pdb);
|
||||||
register_message_procs (pdb);
|
register_message_procs (pdb);
|
||||||
register_paint_tools_procs (pdb);
|
register_paint_tools_procs (pdb);
|
||||||
register_palette_procs (pdb);
|
|
||||||
register_palette_select_procs (pdb);
|
register_palette_select_procs (pdb);
|
||||||
|
register_palette_procs (pdb);
|
||||||
register_palettes_procs (pdb);
|
register_palettes_procs (pdb);
|
||||||
register_path_procs (pdb);
|
register_path_procs (pdb);
|
||||||
register_pattern_procs (pdb);
|
|
||||||
register_pattern_select_procs (pdb);
|
register_pattern_select_procs (pdb);
|
||||||
|
register_pattern_procs (pdb);
|
||||||
register_patterns_procs (pdb);
|
register_patterns_procs (pdb);
|
||||||
register_pdb_procs (pdb);
|
register_pdb_procs (pdb);
|
||||||
register_plug_in_procs (pdb);
|
register_plug_in_procs (pdb);
|
||||||
|
@@ -24,19 +24,19 @@ void internal_procs_init (GimpPDB *pdb);
|
|||||||
|
|
||||||
/* Forward declarations for registering PDB procs */
|
/* Forward declarations for registering PDB procs */
|
||||||
|
|
||||||
void register_brush_procs (GimpPDB *pdb);
|
|
||||||
void register_brush_select_procs (GimpPDB *pdb);
|
void register_brush_select_procs (GimpPDB *pdb);
|
||||||
|
void register_brush_procs (GimpPDB *pdb);
|
||||||
void register_brushes_procs (GimpPDB *pdb);
|
void register_brushes_procs (GimpPDB *pdb);
|
||||||
void register_buffer_procs (GimpPDB *pdb);
|
void register_buffer_procs (GimpPDB *pdb);
|
||||||
void register_channel_procs (GimpPDB *pdb);
|
void register_channel_procs (GimpPDB *pdb);
|
||||||
void register_context_procs (GimpPDB *pdb);
|
void register_context_procs (GimpPDB *pdb);
|
||||||
void register_debug_procs (GimpPDB *pdb);
|
void register_debug_procs (GimpPDB *pdb);
|
||||||
void register_display_procs (GimpPDB *pdb);
|
void register_display_procs (GimpPDB *pdb);
|
||||||
void register_drawable_procs (GimpPDB *pdb);
|
|
||||||
void register_drawable_color_procs (GimpPDB *pdb);
|
void register_drawable_color_procs (GimpPDB *pdb);
|
||||||
void register_drawable_edit_procs (GimpPDB *pdb);
|
void register_drawable_edit_procs (GimpPDB *pdb);
|
||||||
void register_drawable_filter_procs (GimpPDB *pdb);
|
void register_drawable_filter_procs (GimpPDB *pdb);
|
||||||
void register_drawable_select_procs (GimpPDB *pdb);
|
void register_drawable_select_procs (GimpPDB *pdb);
|
||||||
|
void register_drawable_procs (GimpPDB *pdb);
|
||||||
void register_dynamics_procs (GimpPDB *pdb);
|
void register_dynamics_procs (GimpPDB *pdb);
|
||||||
void register_edit_procs (GimpPDB *pdb);
|
void register_edit_procs (GimpPDB *pdb);
|
||||||
void register_file_procs (GimpPDB *pdb);
|
void register_file_procs (GimpPDB *pdb);
|
||||||
@@ -46,12 +46,11 @@ void register_font_select_procs (GimpPDB *pdb);
|
|||||||
void register_fonts_procs (GimpPDB *pdb);
|
void register_fonts_procs (GimpPDB *pdb);
|
||||||
void register_gimp_procs (GimpPDB *pdb);
|
void register_gimp_procs (GimpPDB *pdb);
|
||||||
void register_gimprc_procs (GimpPDB *pdb);
|
void register_gimprc_procs (GimpPDB *pdb);
|
||||||
void register_gradient_procs (GimpPDB *pdb);
|
|
||||||
void register_gradient_select_procs (GimpPDB *pdb);
|
void register_gradient_select_procs (GimpPDB *pdb);
|
||||||
|
void register_gradient_procs (GimpPDB *pdb);
|
||||||
void register_gradients_procs (GimpPDB *pdb);
|
void register_gradients_procs (GimpPDB *pdb);
|
||||||
void register_group_layer_procs (GimpPDB *pdb);
|
void register_group_layer_procs (GimpPDB *pdb);
|
||||||
void register_help_procs (GimpPDB *pdb);
|
void register_help_procs (GimpPDB *pdb);
|
||||||
void register_image_procs (GimpPDB *pdb);
|
|
||||||
void register_image_autocrop_procs (GimpPDB *pdb);
|
void register_image_autocrop_procs (GimpPDB *pdb);
|
||||||
void register_image_color_profile_procs (GimpPDB *pdb);
|
void register_image_color_profile_procs (GimpPDB *pdb);
|
||||||
void register_image_convert_procs (GimpPDB *pdb);
|
void register_image_convert_procs (GimpPDB *pdb);
|
||||||
@@ -61,17 +60,19 @@ void register_image_sample_points_procs (GimpPDB *pdb);
|
|||||||
void register_image_select_procs (GimpPDB *pdb);
|
void register_image_select_procs (GimpPDB *pdb);
|
||||||
void register_image_transform_procs (GimpPDB *pdb);
|
void register_image_transform_procs (GimpPDB *pdb);
|
||||||
void register_image_undo_procs (GimpPDB *pdb);
|
void register_image_undo_procs (GimpPDB *pdb);
|
||||||
void register_item_procs (GimpPDB *pdb);
|
void register_image_procs (GimpPDB *pdb);
|
||||||
void register_item_transform_procs (GimpPDB *pdb);
|
void register_item_transform_procs (GimpPDB *pdb);
|
||||||
|
void register_item_procs (GimpPDB *pdb);
|
||||||
void register_layer_procs (GimpPDB *pdb);
|
void register_layer_procs (GimpPDB *pdb);
|
||||||
|
void register_link_layer_procs (GimpPDB *pdb);
|
||||||
void register_message_procs (GimpPDB *pdb);
|
void register_message_procs (GimpPDB *pdb);
|
||||||
void register_paint_tools_procs (GimpPDB *pdb);
|
void register_paint_tools_procs (GimpPDB *pdb);
|
||||||
void register_palette_procs (GimpPDB *pdb);
|
|
||||||
void register_palette_select_procs (GimpPDB *pdb);
|
void register_palette_select_procs (GimpPDB *pdb);
|
||||||
|
void register_palette_procs (GimpPDB *pdb);
|
||||||
void register_palettes_procs (GimpPDB *pdb);
|
void register_palettes_procs (GimpPDB *pdb);
|
||||||
void register_path_procs (GimpPDB *pdb);
|
void register_path_procs (GimpPDB *pdb);
|
||||||
void register_pattern_procs (GimpPDB *pdb);
|
|
||||||
void register_pattern_select_procs (GimpPDB *pdb);
|
void register_pattern_select_procs (GimpPDB *pdb);
|
||||||
|
void register_pattern_procs (GimpPDB *pdb);
|
||||||
void register_patterns_procs (GimpPDB *pdb);
|
void register_patterns_procs (GimpPDB *pdb);
|
||||||
void register_pdb_procs (GimpPDB *pdb);
|
void register_pdb_procs (GimpPDB *pdb);
|
||||||
void register_plug_in_procs (GimpPDB *pdb);
|
void register_plug_in_procs (GimpPDB *pdb);
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#include "core/gimpimage.h"
|
#include "core/gimpimage.h"
|
||||||
#include "core/gimpitem.h"
|
#include "core/gimpitem.h"
|
||||||
#include "core/gimplayermask.h"
|
#include "core/gimplayermask.h"
|
||||||
|
#include "core/gimplinklayer.h"
|
||||||
#include "core/gimplist.h"
|
#include "core/gimplist.h"
|
||||||
#include "core/gimpparamspecs.h"
|
#include "core/gimpparamspecs.h"
|
||||||
#include "core/gimpselection.h"
|
#include "core/gimpselection.h"
|
||||||
@@ -244,6 +245,39 @@ item_id_is_group_layer_invoker (GimpProcedure *procedure,
|
|||||||
return return_vals;
|
return return_vals;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
item_id_is_link_layer_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
gint item_id;
|
||||||
|
gboolean text_layer = FALSE;
|
||||||
|
|
||||||
|
item_id = g_value_get_int (gimp_value_array_index (args, 0));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
GimpItem *item = gimp_item_get_by_id (gimp, item_id);
|
||||||
|
|
||||||
|
text_layer = (GIMP_IS_LAYER (item) &&
|
||||||
|
! gimp_item_is_removed (item) &&
|
||||||
|
gimp_item_is_link_layer (item));
|
||||||
|
}
|
||||||
|
|
||||||
|
return_vals = gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
g_value_set_boolean (gimp_value_array_index (return_vals, 1), text_layer);
|
||||||
|
|
||||||
|
return return_vals;
|
||||||
|
}
|
||||||
|
|
||||||
static GimpValueArray *
|
static GimpValueArray *
|
||||||
item_id_is_channel_invoker (GimpProcedure *procedure,
|
item_id_is_channel_invoker (GimpProcedure *procedure,
|
||||||
Gimp *gimp,
|
Gimp *gimp,
|
||||||
@@ -1287,6 +1321,37 @@ register_item_procs (GimpPDB *pdb)
|
|||||||
gimp_pdb_register_procedure (pdb, procedure);
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
g_object_unref (procedure);
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-item-id-is-link-layer
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (item_id_is_link_layer_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-item-id-is-link-layer");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Returns whether the item ID is a link layer.",
|
||||||
|
"This procedure returns %TRUE if the specified item ID is a link layer.\n"
|
||||||
|
"\n"
|
||||||
|
"*Note*: in most use cases, you should not use this function. See [func@Gimp.Item.id_is_layer] for a discussion on alternatives.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_int ("item-id",
|
||||||
|
"item id",
|
||||||
|
"The item ID",
|
||||||
|
G_MININT32, G_MAXINT32, 0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_return_value (procedure,
|
||||||
|
g_param_spec_boolean ("text-layer",
|
||||||
|
"text layer",
|
||||||
|
"TRUE if the item is a text layer, FALSE otherwise.",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* gimp-item-id-is-channel
|
* gimp-item-id-is-channel
|
||||||
*/
|
*/
|
||||||
|
364
app/pdb/link-layer-cmds.c
Normal file
364
app/pdb/link-layer-cmds.c
Normal file
@@ -0,0 +1,364 @@
|
|||||||
|
/* GIMP - The GNU Image Manipulation Program
|
||||||
|
* Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* NOTE: This file is auto-generated by pdbgen.pl. */
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "stamp-pdbgen.h"
|
||||||
|
|
||||||
|
#include <gegl.h>
|
||||||
|
|
||||||
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
||||||
|
|
||||||
|
#include "libgimpbase/gimpbase.h"
|
||||||
|
|
||||||
|
#include "pdb-types.h"
|
||||||
|
|
||||||
|
#include "core/gimpimage.h"
|
||||||
|
#include "core/gimplink.h"
|
||||||
|
#include "core/gimplinklayer.h"
|
||||||
|
#include "core/gimpparamspecs.h"
|
||||||
|
|
||||||
|
#include "gimppdb.h"
|
||||||
|
#include "gimppdberror.h"
|
||||||
|
#include "gimpprocedure.h"
|
||||||
|
#include "internal-procs.h"
|
||||||
|
|
||||||
|
#include "gimp-intl.h"
|
||||||
|
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
link_layer_new_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
GimpImage *image;
|
||||||
|
GFile *file;
|
||||||
|
GimpLinkLayer *layer = NULL;
|
||||||
|
|
||||||
|
image = g_value_get_object (gimp_value_array_index (args, 0));
|
||||||
|
file = g_value_get_object (gimp_value_array_index (args, 1));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
if (file == NULL)
|
||||||
|
{
|
||||||
|
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("Failed to create link layer"));
|
||||||
|
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
GimpLink *link;
|
||||||
|
|
||||||
|
link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);
|
||||||
|
|
||||||
|
if (link == NULL)
|
||||||
|
{
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
layer = GIMP_LINK_LAYER (gimp_link_layer_new (image, link));
|
||||||
|
|
||||||
|
if (! layer)
|
||||||
|
{
|
||||||
|
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("Failed to create link layer"));
|
||||||
|
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g_clear_object (&link);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return_vals = gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
g_value_set_object (gimp_value_array_index (return_vals, 1), layer);
|
||||||
|
|
||||||
|
return return_vals;
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
link_layer_discard_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpLinkLayer *layer;
|
||||||
|
|
||||||
|
layer = g_value_get_object (gimp_value_array_index (args, 0));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
gimp_link_layer_discard (layer);
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
link_layer_monitor_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpLinkLayer *layer;
|
||||||
|
|
||||||
|
layer = g_value_get_object (gimp_value_array_index (args, 0));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
gimp_link_layer_monitor (layer);
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
link_layer_get_file_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
GimpLinkLayer *layer;
|
||||||
|
GFile *file = NULL;
|
||||||
|
|
||||||
|
layer = g_value_get_object (gimp_value_array_index (args, 0));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
file = gimp_link_get_file (gimp_link_layer_get_link (layer), NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
return_vals = gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
g_value_set_object (gimp_value_array_index (return_vals, 1), file);
|
||||||
|
|
||||||
|
return return_vals;
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
link_layer_set_file_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpLinkLayer *layer;
|
||||||
|
GFile *file;
|
||||||
|
|
||||||
|
layer = g_value_get_object (gimp_value_array_index (args, 0));
|
||||||
|
file = g_value_get_object (gimp_value_array_index (args, 1));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
GimpLink *link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);
|
||||||
|
|
||||||
|
if (link)
|
||||||
|
{
|
||||||
|
gimp_link_layer_set_link (layer, link, TRUE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_clear_object (&link);
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
register_link_layer_procs (GimpPDB *pdb)
|
||||||
|
{
|
||||||
|
GimpProcedure *procedure;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-link-layer-new
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (link_layer_new_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-link-layer-new");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Creates a new link layer.",
|
||||||
|
"This procedure creates a link layer monitoring the specified @file.\n"
|
||||||
|
"\n"
|
||||||
|
"The new layer still needs to be added to the image as this is not automatic. Add the new layer with the [method@Image.insert_layer] method.\n"
|
||||||
|
"\n"
|
||||||
|
"The arguments are kept as simple as necessary for the basic case. All link attributes, however, can be modified with the appropriate `gimp_link_layer_set_*()` procedures.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_image ("image",
|
||||||
|
"image",
|
||||||
|
"The image",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_object ("file",
|
||||||
|
"file",
|
||||||
|
"The file this link layer will monitor",
|
||||||
|
G_TYPE_FILE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_return_value (procedure,
|
||||||
|
gimp_param_spec_link_layer ("layer",
|
||||||
|
"layer",
|
||||||
|
"The new link layer. The object belongs to libgimp and you should not free it.",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-link-layer-discard
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (link_layer_discard_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-link-layer-discard");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Discard the link layer information.",
|
||||||
|
"Discards the link information. This makes the layer behave like a normal layer.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer ("layer",
|
||||||
|
"layer",
|
||||||
|
"The link layer",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-link-layer-monitor
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (link_layer_monitor_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-link-layer-monitor");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Retrieve the link layer information.",
|
||||||
|
"Retrieve the link information. This makes the layer behave like a link layer after the link information has been discarded.\n"
|
||||||
|
"Since the source file will be monitored again, it may change the layer's render.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer ("layer",
|
||||||
|
"layer",
|
||||||
|
"The link layer",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-link-layer-get-file
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (link_layer_get_file_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-link-layer-get-file");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Get the monitored file.",
|
||||||
|
"This procedure returns the file which is being monitored.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer ("layer",
|
||||||
|
"layer",
|
||||||
|
"The link layer",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_return_value (procedure,
|
||||||
|
g_param_spec_object ("file",
|
||||||
|
"file",
|
||||||
|
"The monitored file",
|
||||||
|
G_TYPE_FILE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-link-layer-set-file
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (link_layer_set_file_invoker, FALSE);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"gimp-link-layer-set-file");
|
||||||
|
gimp_procedure_set_static_help (procedure,
|
||||||
|
"Set the monitored file.",
|
||||||
|
"This procedure sets the file to be monitored. It may change the layer's render.",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_set_static_attribution (procedure,
|
||||||
|
"Jehan",
|
||||||
|
"Jehan",
|
||||||
|
"2025");
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer ("layer",
|
||||||
|
"layer",
|
||||||
|
"The link layer",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_object ("file",
|
||||||
|
"file",
|
||||||
|
"The file to monitor",
|
||||||
|
G_TYPE_FILE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
}
|
@@ -49,6 +49,7 @@ libappinternalprocs_sources = [
|
|||||||
'item-cmds.c',
|
'item-cmds.c',
|
||||||
'item-transform-cmds.c',
|
'item-transform-cmds.c',
|
||||||
'layer-cmds.c',
|
'layer-cmds.c',
|
||||||
|
'link-layer-cmds.c',
|
||||||
'message-cmds.c',
|
'message-cmds.c',
|
||||||
'paint-tools-cmds.c',
|
'paint-tools-cmds.c',
|
||||||
'palette-cmds.c',
|
'palette-cmds.c',
|
||||||
|
@@ -40,6 +40,7 @@
|
|||||||
#include "core/gimpimage.h"
|
#include "core/gimpimage.h"
|
||||||
#include "core/gimplayer.h"
|
#include "core/gimplayer.h"
|
||||||
#include "core/gimplayermask.h"
|
#include "core/gimplayermask.h"
|
||||||
|
#include "core/gimplinklayer.h"
|
||||||
#include "core/gimppalette.h"
|
#include "core/gimppalette.h"
|
||||||
#include "core/gimppattern.h"
|
#include "core/gimppattern.h"
|
||||||
#include "core/gimpselection.h"
|
#include "core/gimpselection.h"
|
||||||
|
@@ -601,6 +601,7 @@ EXPORTS
|
|||||||
gimp_item_id_is_group_layer
|
gimp_item_id_is_group_layer
|
||||||
gimp_item_id_is_layer
|
gimp_item_id_is_layer
|
||||||
gimp_item_id_is_layer_mask
|
gimp_item_id_is_layer_mask
|
||||||
|
gimp_item_id_is_link_layer
|
||||||
gimp_item_id_is_path
|
gimp_item_id_is_path
|
||||||
gimp_item_id_is_selection
|
gimp_item_id_is_selection
|
||||||
gimp_item_id_is_text_layer
|
gimp_item_id_is_text_layer
|
||||||
@@ -612,6 +613,7 @@ EXPORTS
|
|||||||
gimp_item_is_group_layer
|
gimp_item_is_group_layer
|
||||||
gimp_item_is_layer
|
gimp_item_is_layer
|
||||||
gimp_item_is_layer_mask
|
gimp_item_is_layer_mask
|
||||||
|
gimp_item_is_link_layer
|
||||||
gimp_item_is_path
|
gimp_item_is_path
|
||||||
gimp_item_is_selection
|
gimp_item_is_selection
|
||||||
gimp_item_is_text_layer
|
gimp_item_is_text_layer
|
||||||
@@ -679,6 +681,13 @@ EXPORTS
|
|||||||
gimp_layer_set_offsets
|
gimp_layer_set_offsets
|
||||||
gimp_layer_set_opacity
|
gimp_layer_set_opacity
|
||||||
gimp_layer_set_show_mask
|
gimp_layer_set_show_mask
|
||||||
|
gimp_link_layer_discard
|
||||||
|
gimp_link_layer_get_by_id
|
||||||
|
gimp_link_layer_get_file
|
||||||
|
gimp_link_layer_get_type
|
||||||
|
gimp_link_layer_monitor
|
||||||
|
gimp_link_layer_new
|
||||||
|
gimp_link_layer_set_file
|
||||||
gimp_list_images
|
gimp_list_images
|
||||||
gimp_load_procedure_get_handles_raw
|
gimp_load_procedure_get_handles_raw
|
||||||
gimp_load_procedure_get_thumbnail_loader
|
gimp_load_procedure_get_thumbnail_loader
|
||||||
@@ -725,6 +734,7 @@ EXPORTS
|
|||||||
gimp_param_item_get_type
|
gimp_param_item_get_type
|
||||||
gimp_param_layer_get_type
|
gimp_param_layer_get_type
|
||||||
gimp_param_layer_mask_get_type
|
gimp_param_layer_mask_get_type
|
||||||
|
gimp_param_link_layer_get_type
|
||||||
gimp_param_palette_get_type
|
gimp_param_palette_get_type
|
||||||
gimp_param_path_get_type
|
gimp_param_path_get_type
|
||||||
gimp_param_pattern_get_type
|
gimp_param_pattern_get_type
|
||||||
@@ -747,6 +757,7 @@ EXPORTS
|
|||||||
gimp_param_spec_item_none_allowed
|
gimp_param_spec_item_none_allowed
|
||||||
gimp_param_spec_layer
|
gimp_param_spec_layer
|
||||||
gimp_param_spec_layer_mask
|
gimp_param_spec_layer_mask
|
||||||
|
gimp_param_spec_link_layer
|
||||||
gimp_param_spec_palette
|
gimp_param_spec_palette
|
||||||
gimp_param_spec_path
|
gimp_param_spec_path
|
||||||
gimp_param_spec_pattern
|
gimp_param_spec_pattern
|
||||||
@@ -883,6 +894,9 @@ EXPORTS
|
|||||||
gimp_procedure_add_layer_mask_aux_argument
|
gimp_procedure_add_layer_mask_aux_argument
|
||||||
gimp_procedure_add_layer_mask_return_value
|
gimp_procedure_add_layer_mask_return_value
|
||||||
gimp_procedure_add_layer_return_value
|
gimp_procedure_add_layer_return_value
|
||||||
|
gimp_procedure_add_link_layer_argument
|
||||||
|
gimp_procedure_add_link_layer_aux_argument
|
||||||
|
gimp_procedure_add_link_layer_return_value
|
||||||
gimp_procedure_add_menu_path
|
gimp_procedure_add_menu_path
|
||||||
gimp_procedure_add_palette_argument
|
gimp_procedure_add_palette_argument
|
||||||
gimp_procedure_add_palette_aux_argument
|
gimp_procedure_add_palette_aux_argument
|
||||||
|
@@ -57,6 +57,7 @@
|
|||||||
#include <libgimp/gimpitem.h>
|
#include <libgimp/gimpitem.h>
|
||||||
#include <libgimp/gimplayer.h>
|
#include <libgimp/gimplayer.h>
|
||||||
#include <libgimp/gimplayermask.h>
|
#include <libgimp/gimplayermask.h>
|
||||||
|
#include <libgimp/gimplinklayer.h>
|
||||||
#include <libgimp/gimploadprocedure.h>
|
#include <libgimp/gimploadprocedure.h>
|
||||||
#include <libgimp/gimppalette.h>
|
#include <libgimp/gimppalette.h>
|
||||||
#include <libgimp/gimpparamspecs.h>
|
#include <libgimp/gimpparamspecs.h>
|
||||||
|
@@ -67,6 +67,7 @@
|
|||||||
#include <libgimp/gimpitem_pdb.h>
|
#include <libgimp/gimpitem_pdb.h>
|
||||||
#include <libgimp/gimpitemtransform_pdb.h>
|
#include <libgimp/gimpitemtransform_pdb.h>
|
||||||
#include <libgimp/gimplayer_pdb.h>
|
#include <libgimp/gimplayer_pdb.h>
|
||||||
|
#include <libgimp/gimplinklayer_pdb.h>
|
||||||
#include <libgimp/gimpmessage_pdb.h>
|
#include <libgimp/gimpmessage_pdb.h>
|
||||||
#include <libgimp/gimppainttools_pdb.h>
|
#include <libgimp/gimppainttools_pdb.h>
|
||||||
#include <libgimp/gimppalette_pdb.h>
|
#include <libgimp/gimppalette_pdb.h>
|
||||||
|
@@ -289,6 +289,11 @@ _gimp_gp_param_def_to_param_spec (const GPParamDef *param_def)
|
|||||||
param_def->meta.m_id.none_ok,
|
param_def->meta.m_id.none_ok,
|
||||||
flags);
|
flags);
|
||||||
|
|
||||||
|
if (! strcmp (param_def->type_name, "GimpParamLinkLayer"))
|
||||||
|
return gimp_param_spec_link_layer (name, nick, blurb,
|
||||||
|
param_def->meta.m_id.none_ok,
|
||||||
|
flags);
|
||||||
|
|
||||||
if (! strcmp (param_def->type_name, "GimpParamGroupLayer"))
|
if (! strcmp (param_def->type_name, "GimpParamGroupLayer"))
|
||||||
return gimp_param_spec_group_layer (name, nick, blurb,
|
return gimp_param_spec_group_layer (name, nick, blurb,
|
||||||
param_def->meta.m_id.none_ok,
|
param_def->meta.m_id.none_ok,
|
||||||
@@ -725,6 +730,10 @@ _gimp_param_spec_to_gp_param_def (GParamSpec *pspec,
|
|||||||
{
|
{
|
||||||
type_name = "GimpParamVectorLayer";
|
type_name = "GimpParamVectorLayer";
|
||||||
}
|
}
|
||||||
|
else if (value_type == GIMP_TYPE_LINK_LAYER)
|
||||||
|
{
|
||||||
|
type_name = "GimpParamLinkLayer";
|
||||||
|
}
|
||||||
else if (value_type == GIMP_TYPE_GROUP_LAYER)
|
else if (value_type == GIMP_TYPE_GROUP_LAYER)
|
||||||
{
|
{
|
||||||
type_name = "GimpParamGroupLayer";
|
type_name = "GimpParamGroupLayer";
|
||||||
|
@@ -280,6 +280,25 @@ gimp_item_is_vector_layer (GimpItem *item)
|
|||||||
return gimp_item_id_is_vector_layer (gimp_item_get_id (item));
|
return gimp_item_id_is_vector_layer (gimp_item_get_id (item));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_item_is_link_layer:
|
||||||
|
* @item: The item.
|
||||||
|
*
|
||||||
|
* Returns whether the item is a link layer.
|
||||||
|
*
|
||||||
|
* This procedure returns TRUE if the specified item is a link
|
||||||
|
* layer.
|
||||||
|
*
|
||||||
|
* Returns: TRUE if the item is a link layer, FALSE otherwise.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
gboolean
|
||||||
|
gimp_item_is_link_layer (GimpItem *item)
|
||||||
|
{
|
||||||
|
return gimp_item_id_is_link_layer (gimp_item_get_id (item));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gimp_item_is_group_layer:
|
* gimp_item_is_group_layer:
|
||||||
* @item: The item.
|
* @item: The item.
|
||||||
|
@@ -61,6 +61,7 @@ gboolean gimp_item_is_drawable (GimpItem *item);
|
|||||||
gboolean gimp_item_is_layer (GimpItem *item);
|
gboolean gimp_item_is_layer (GimpItem *item);
|
||||||
gboolean gimp_item_is_text_layer (GimpItem *item);
|
gboolean gimp_item_is_text_layer (GimpItem *item);
|
||||||
gboolean gimp_item_is_vector_layer (GimpItem *item);
|
gboolean gimp_item_is_vector_layer (GimpItem *item);
|
||||||
|
gboolean gimp_item_is_link_layer (GimpItem *item);
|
||||||
gboolean gimp_item_is_group_layer (GimpItem *item);
|
gboolean gimp_item_is_group_layer (GimpItem *item);
|
||||||
gboolean gimp_item_is_channel (GimpItem *item);
|
gboolean gimp_item_is_channel (GimpItem *item);
|
||||||
gboolean gimp_item_is_layer_mask (GimpItem *item);
|
gboolean gimp_item_is_layer_mask (GimpItem *item);
|
||||||
|
@@ -291,6 +291,46 @@ gimp_item_id_is_group_layer (gint item_id)
|
|||||||
return group_layer;
|
return group_layer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_item_id_is_link_layer:
|
||||||
|
* @item_id: The item ID.
|
||||||
|
*
|
||||||
|
* Returns whether the item ID is a link layer.
|
||||||
|
*
|
||||||
|
* This procedure returns %TRUE if the specified item ID is a link
|
||||||
|
* layer.
|
||||||
|
*
|
||||||
|
* *Note*: in most use cases, you should not use this function. See
|
||||||
|
* [func@Gimp.Item.id_is_layer] for a discussion on alternatives.
|
||||||
|
*
|
||||||
|
* Returns: TRUE if the item is a text layer, FALSE otherwise.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
gboolean
|
||||||
|
gimp_item_id_is_link_layer (gint item_id)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
gboolean text_layer = FALSE;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
G_TYPE_INT, item_id,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-item-id-is-link-layer",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||||||
|
text_layer = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return text_layer;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gimp_item_id_is_channel:
|
* gimp_item_id_is_channel:
|
||||||
* @item_id: The item ID.
|
* @item_id: The item ID.
|
||||||
|
@@ -38,6 +38,7 @@ gboolean gimp_item_id_is_layer (gint item_id);
|
|||||||
gboolean gimp_item_id_is_text_layer (gint item_id);
|
gboolean gimp_item_id_is_text_layer (gint item_id);
|
||||||
gboolean gimp_item_id_is_vector_layer (gint item_id);
|
gboolean gimp_item_id_is_vector_layer (gint item_id);
|
||||||
gboolean gimp_item_id_is_group_layer (gint item_id);
|
gboolean gimp_item_id_is_group_layer (gint item_id);
|
||||||
|
gboolean gimp_item_id_is_link_layer (gint item_id);
|
||||||
gboolean gimp_item_id_is_channel (gint item_id);
|
gboolean gimp_item_id_is_channel (gint item_id);
|
||||||
gboolean gimp_item_id_is_layer_mask (gint item_id);
|
gboolean gimp_item_id_is_layer_mask (gint item_id);
|
||||||
gboolean gimp_item_id_is_path (gint item_id);
|
gboolean gimp_item_id_is_path (gint item_id);
|
||||||
|
76
libgimp/gimplinklayer.c
Normal file
76
libgimp/gimplinklayer.c
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
/* LIBGIMP - The GIMP Library
|
||||||
|
* Copyright (C) 1995-2000 Peter Mattis and Spencer Kimball
|
||||||
|
*
|
||||||
|
* gimplinklayer.c
|
||||||
|
* Copyright (C) 2025 Jehan
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* Lesser 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"
|
||||||
|
|
||||||
|
|
||||||
|
struct _GimpLinkLayer
|
||||||
|
{
|
||||||
|
GimpLayer parent_instance;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
G_DEFINE_TYPE (GimpLinkLayer, gimp_link_layer, GIMP_TYPE_LAYER)
|
||||||
|
|
||||||
|
#define parent_class gimp_link_layer_parent_class
|
||||||
|
|
||||||
|
|
||||||
|
static void
|
||||||
|
gimp_link_layer_class_init (GimpLinkLayerClass *klass)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gimp_link_layer_init (GimpLinkLayer *layer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Public API. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_get_by_id:
|
||||||
|
* @layer_id: The layer id.
|
||||||
|
*
|
||||||
|
* Returns a #GimpLinkLayer representing @layer_id. This function calls
|
||||||
|
* [func@Gimp.Item.get_by_id] and returns the item if it is a link
|
||||||
|
* layer or %NULL otherwise.
|
||||||
|
*
|
||||||
|
* Returns: (nullable) (transfer none): a #GimpLinkLayer for @layer_id or
|
||||||
|
* %NULL if @layer_id does not represent a valid link layer. The
|
||||||
|
* object belongs to libgimp and you must not modify or unref
|
||||||
|
* it.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
GimpLinkLayer *
|
||||||
|
gimp_link_layer_get_by_id (gint32 layer_id)
|
||||||
|
{
|
||||||
|
GimpItem *item = gimp_item_get_by_id (layer_id);
|
||||||
|
|
||||||
|
if (GIMP_IS_LINK_LAYER (item))
|
||||||
|
return (GimpLinkLayer *) item;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
46
libgimp/gimplinklayer.h
Normal file
46
libgimp/gimplinklayer.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
/* LIBGIMP - The GIMP Library
|
||||||
|
* Copyright (C) 1995-2000 Peter Mattis and Spencer Kimball
|
||||||
|
*
|
||||||
|
* gimplinklayer.h
|
||||||
|
* Copyright (C) 2025 Jehan
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* Lesser 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
||||||
|
#error "Only <libgimp/gimp.h> can be included directly."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __GIMP_LINK_LAYER_H__
|
||||||
|
#define __GIMP_LINK_LAYER_H__
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/* For information look into the C source or the html documentation */
|
||||||
|
|
||||||
|
|
||||||
|
#include <libgimp/gimplayer.h>
|
||||||
|
|
||||||
|
|
||||||
|
#define GIMP_TYPE_LINK_LAYER (gimp_link_layer_get_type ())
|
||||||
|
G_DECLARE_FINAL_TYPE (GimpLinkLayer, gimp_link_layer, GIMP, LINK_LAYER, GimpLayer)
|
||||||
|
|
||||||
|
|
||||||
|
GimpLinkLayer * gimp_link_layer_get_by_id (gint32 layer_id);
|
||||||
|
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* __GIMP_LINK_LAYER_H__ */
|
234
libgimp/gimplinklayer_pdb.c
Normal file
234
libgimp/gimplinklayer_pdb.c
Normal file
@@ -0,0 +1,234 @@
|
|||||||
|
/* LIBGIMP - The GIMP Library
|
||||||
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
||||||
|
*
|
||||||
|
* gimplinklayer_pdb.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
|
||||||
|
* Lesser 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "stamp-pdbgen.h"
|
||||||
|
|
||||||
|
#include "gimp.h"
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECTION: gimplinklayer
|
||||||
|
* @title: gimplinklayer
|
||||||
|
* @short_description: Functions for querying and manipulating link layers.
|
||||||
|
*
|
||||||
|
* Functions for querying and manipulating link layers.
|
||||||
|
**/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_new:
|
||||||
|
* @image: The image.
|
||||||
|
* @file: The file this link layer will monitor.
|
||||||
|
*
|
||||||
|
* Creates a new link layer.
|
||||||
|
*
|
||||||
|
* This procedure creates a link layer monitoring the specified @file.
|
||||||
|
*
|
||||||
|
* The new layer still needs to be added to the image as this is not
|
||||||
|
* automatic. Add the new layer with the [method@Image.insert_layer]
|
||||||
|
* method.
|
||||||
|
*
|
||||||
|
* The arguments are kept as simple as necessary for the basic case.
|
||||||
|
* All link attributes, however, can be modified with the appropriate
|
||||||
|
* `gimp_link_layer_set_*()` procedures.
|
||||||
|
*
|
||||||
|
* Returns: (transfer none):
|
||||||
|
* The new link layer. The object belongs to libgimp and you should not free it.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
GimpLinkLayer *
|
||||||
|
gimp_link_layer_new (GimpImage *image,
|
||||||
|
GFile *file)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
GimpLinkLayer *layer = NULL;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
GIMP_TYPE_IMAGE, image,
|
||||||
|
G_TYPE_FILE, file,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-link-layer-new",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||||||
|
layer = GIMP_VALUES_GET_LINK_LAYER (return_vals, 1);
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return layer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_discard:
|
||||||
|
* @layer: The link layer.
|
||||||
|
*
|
||||||
|
* Discard the link layer information.
|
||||||
|
*
|
||||||
|
* Discards the link information. This makes the layer behave like a
|
||||||
|
* normal layer.
|
||||||
|
*
|
||||||
|
* Returns: TRUE on success.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
gboolean
|
||||||
|
gimp_link_layer_discard (GimpLinkLayer *layer)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
gboolean success = TRUE;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
GIMP_TYPE_LINK_LAYER, layer,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-link-layer-discard",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_monitor:
|
||||||
|
* @layer: The link layer.
|
||||||
|
*
|
||||||
|
* Retrieve the link layer information.
|
||||||
|
*
|
||||||
|
* Retrieve the link information. This makes the layer behave like a
|
||||||
|
* link layer after the link information has been discarded.
|
||||||
|
* Since the source file will be monitored again, it may change the
|
||||||
|
* layer's render.
|
||||||
|
*
|
||||||
|
* Returns: TRUE on success.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
gboolean
|
||||||
|
gimp_link_layer_monitor (GimpLinkLayer *layer)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
gboolean success = TRUE;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
GIMP_TYPE_LINK_LAYER, layer,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-link-layer-monitor",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_get_file:
|
||||||
|
* @layer: The link layer.
|
||||||
|
*
|
||||||
|
* Get the monitored file.
|
||||||
|
*
|
||||||
|
* This procedure returns the file which is being monitored.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): The monitored file.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
GFile *
|
||||||
|
gimp_link_layer_get_file (GimpLinkLayer *layer)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
GFile *file = NULL;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
GIMP_TYPE_LINK_LAYER, layer,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-link-layer-get-file",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||||||
|
file = GIMP_VALUES_DUP_FILE (return_vals, 1);
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_link_layer_set_file:
|
||||||
|
* @layer: The link layer.
|
||||||
|
* @file: The file to monitor.
|
||||||
|
*
|
||||||
|
* Set the monitored file.
|
||||||
|
*
|
||||||
|
* This procedure sets the file to be monitored. It may change the
|
||||||
|
* layer's render.
|
||||||
|
*
|
||||||
|
* Returns: TRUE on success.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
gboolean
|
||||||
|
gimp_link_layer_set_file (GimpLinkLayer *layer,
|
||||||
|
GFile *file)
|
||||||
|
{
|
||||||
|
GimpValueArray *args;
|
||||||
|
GimpValueArray *return_vals;
|
||||||
|
gboolean success = TRUE;
|
||||||
|
|
||||||
|
args = gimp_value_array_new_from_types (NULL,
|
||||||
|
GIMP_TYPE_LINK_LAYER, layer,
|
||||||
|
G_TYPE_FILE, file,
|
||||||
|
G_TYPE_NONE);
|
||||||
|
|
||||||
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||||||
|
"gimp-link-layer-set-file",
|
||||||
|
args);
|
||||||
|
gimp_value_array_unref (args);
|
||||||
|
|
||||||
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
||||||
|
|
||||||
|
gimp_value_array_unref (return_vals);
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
46
libgimp/gimplinklayer_pdb.h
Normal file
46
libgimp/gimplinklayer_pdb.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
/* LIBGIMP - The GIMP Library
|
||||||
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
||||||
|
*
|
||||||
|
* gimplinklayer_pdb.h
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* Lesser 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
||||||
|
|
||||||
|
#if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
||||||
|
#error "Only <libgimp/gimp.h> can be included directly."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __GIMP_LINK_LAYER_PDB_H__
|
||||||
|
#define __GIMP_LINK_LAYER_PDB_H__
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/* For information look into the C source or the html documentation */
|
||||||
|
|
||||||
|
|
||||||
|
GimpLinkLayer* gimp_link_layer_new (GimpImage *image,
|
||||||
|
GFile *file);
|
||||||
|
gboolean gimp_link_layer_discard (GimpLinkLayer *layer);
|
||||||
|
gboolean gimp_link_layer_monitor (GimpLinkLayer *layer);
|
||||||
|
GFile* gimp_link_layer_get_file (GimpLinkLayer *layer);
|
||||||
|
gboolean gimp_link_layer_set_file (GimpLinkLayer *layer,
|
||||||
|
GFile *file);
|
||||||
|
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* __GIMP_LINK_LAYER_PDB_H__ */
|
@@ -612,6 +612,86 @@ gimp_param_spec_vector_layer (const gchar *name,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GIMP_TYPE_PARAM_LINK_LAYER
|
||||||
|
*/
|
||||||
|
|
||||||
|
static void gimp_param_link_layer_class_init (GParamSpecClass *klass);
|
||||||
|
static void gimp_param_link_layer_init (GParamSpec *pspec);
|
||||||
|
|
||||||
|
GType
|
||||||
|
gimp_param_link_layer_get_type (void)
|
||||||
|
{
|
||||||
|
static GType type = 0;
|
||||||
|
|
||||||
|
if (! type)
|
||||||
|
{
|
||||||
|
const GTypeInfo info =
|
||||||
|
{
|
||||||
|
sizeof (GParamSpecClass),
|
||||||
|
NULL, NULL,
|
||||||
|
(GClassInitFunc) gimp_param_link_layer_class_init,
|
||||||
|
NULL, NULL,
|
||||||
|
sizeof (GimpParamSpecItem),
|
||||||
|
0,
|
||||||
|
(GInstanceInitFunc) gimp_param_link_layer_init
|
||||||
|
};
|
||||||
|
|
||||||
|
type = g_type_register_static (GIMP_TYPE_PARAM_LAYER,
|
||||||
|
"GimpParamLinkLayer", &info, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gimp_param_link_layer_class_init (GParamSpecClass *klass)
|
||||||
|
{
|
||||||
|
klass->value_type = GIMP_TYPE_LINK_LAYER;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gimp_param_link_layer_init (GParamSpec *pspec)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_param_spec_link_layer:
|
||||||
|
* @name: Canonical name of the property specified.
|
||||||
|
* @nick: Nick name of the property specified.
|
||||||
|
* @blurb: Description of the property specified.
|
||||||
|
* @none_ok: Whether no is a valid value.
|
||||||
|
* @flags: Flags for the property specified.
|
||||||
|
*
|
||||||
|
* Creates a new #GimpParamSpecLinkLayer specifying a
|
||||||
|
* [type@LinkLayer] property.
|
||||||
|
*
|
||||||
|
* See g_param_spec_internal() for details on property names.
|
||||||
|
*
|
||||||
|
* Returns: (transfer floating): The newly created #GimpParamSpecLinkLayer.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
GParamSpec *
|
||||||
|
gimp_param_spec_link_layer (const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags)
|
||||||
|
{
|
||||||
|
GimpParamSpecItem *ispec;
|
||||||
|
|
||||||
|
ispec = g_param_spec_internal (GIMP_TYPE_PARAM_LINK_LAYER,
|
||||||
|
name, nick, blurb, flags);
|
||||||
|
|
||||||
|
g_return_val_if_fail (ispec, NULL);
|
||||||
|
|
||||||
|
ispec->none_ok = none_ok ? TRUE : FALSE;
|
||||||
|
|
||||||
|
return G_PARAM_SPEC (ispec);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GIMP_TYPE_PARAM_GROUP_LAYER
|
* GIMP_TYPE_PARAM_GROUP_LAYER
|
||||||
*/
|
*/
|
||||||
|
@@ -148,6 +148,22 @@ GParamSpec * gimp_param_spec_vector_layer (const gchar *name,
|
|||||||
GParamFlags flags);
|
GParamFlags flags);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GIMP_TYPE_PARAM_LINK_LAYER
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define GIMP_VALUE_HOLDS_LINK_LAYER(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_LINK_LAYER))
|
||||||
|
#define GIMP_TYPE_PARAM_LINK_LAYER (gimp_param_link_layer_get_type ())
|
||||||
|
#define GIMP_IS_PARAM_SPEC_LINK_LAYER(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GIMP_TYPE_PARAM_LINK_LAYER))
|
||||||
|
|
||||||
|
GType gimp_param_link_layer_get_type (void) G_GNUC_CONST;
|
||||||
|
|
||||||
|
GParamSpec * gimp_param_spec_link_layer (const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GIMP_TYPE_PARAM_GROUP_LAYER
|
* GIMP_TYPE_PARAM_GROUP_LAYER
|
||||||
*/
|
*/
|
||||||
|
@@ -1807,6 +1807,12 @@ _gimp_plug_in_get_item (GimpPlugIn *plug_in,
|
|||||||
"id", item_id,
|
"id", item_id,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
else if (gimp_item_id_is_link_layer (item_id))
|
||||||
|
{
|
||||||
|
item = g_object_new (GIMP_TYPE_LINK_LAYER,
|
||||||
|
"id", item_id,
|
||||||
|
NULL);
|
||||||
|
}
|
||||||
else if (gimp_item_id_is_group_layer (item_id))
|
else if (gimp_item_id_is_group_layer (item_id))
|
||||||
{
|
{
|
||||||
item = g_object_new (GIMP_TYPE_GROUP_LAYER,
|
item = g_object_new (GIMP_TYPE_GROUP_LAYER,
|
||||||
|
@@ -1962,6 +1962,84 @@ gimp_procedure_add_vector_layer_return_value (GimpProcedure *procedure,
|
|||||||
none_ok, flags));
|
none_ok, flags));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_procedure_add_link_layer_argument:
|
||||||
|
* @procedure: the #GimpProcedure.
|
||||||
|
* @name: the name of the argument to be created.
|
||||||
|
* @nick: the label used in #GimpProcedureDialog.
|
||||||
|
* @blurb: (nullable): a more detailed help description.
|
||||||
|
* @none_ok: Whether no is a valid value.
|
||||||
|
* @flags: argument flags.
|
||||||
|
*
|
||||||
|
* Add a new #GimpLinkLayer argument to @procedure.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
void
|
||||||
|
gimp_procedure_add_link_layer_argument (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags)
|
||||||
|
{
|
||||||
|
_gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer (name, nick, blurb,
|
||||||
|
none_ok, flags));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_procedure_add_link_layer_aux_argument:
|
||||||
|
* @procedure: the #GimpProcedure.
|
||||||
|
* @name: the name of the argument to be created.
|
||||||
|
* @nick: the label used in #GimpProcedureDialog.
|
||||||
|
* @blurb: (nullable): a more detailed help description.
|
||||||
|
* @none_ok: Whether no is a valid value.
|
||||||
|
* @flags: argument flags.
|
||||||
|
*
|
||||||
|
* Add a new #GimpLinkLayer auxiliary argument to @procedure.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
void
|
||||||
|
gimp_procedure_add_link_layer_aux_argument (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags)
|
||||||
|
{
|
||||||
|
_gimp_procedure_add_aux_argument (procedure,
|
||||||
|
gimp_param_spec_link_layer (name, nick, blurb,
|
||||||
|
none_ok, flags));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gimp_procedure_add_link_layer_return_value:
|
||||||
|
* @procedure: the #GimpProcedure.
|
||||||
|
* @name: the name of the argument to be created.
|
||||||
|
* @nick: the label used in #GimpProcedureDialog.
|
||||||
|
* @blurb: (nullable): a more detailed help description.
|
||||||
|
* @none_ok: Whether no is a valid value.
|
||||||
|
* @flags: argument flags.
|
||||||
|
*
|
||||||
|
* Add a new #GimpLinkLayer return value to @procedure.
|
||||||
|
*
|
||||||
|
* Since: 3.2
|
||||||
|
**/
|
||||||
|
void
|
||||||
|
gimp_procedure_add_link_layer_return_value (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags)
|
||||||
|
{
|
||||||
|
_gimp_procedure_add_return_value (procedure,
|
||||||
|
gimp_param_spec_link_layer (name, nick, blurb,
|
||||||
|
none_ok, flags));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gimp_procedure_add_group_layer_argument:
|
* gimp_procedure_add_group_layer_argument:
|
||||||
* @procedure: the #GimpProcedure.
|
* @procedure: the #GimpProcedure.
|
||||||
|
@@ -325,6 +325,18 @@ G_BEGIN_DECLS
|
|||||||
g_value_set_object (gimp_value_array_index (args, n), value)
|
g_value_set_object (gimp_value_array_index (args, n), value)
|
||||||
|
|
||||||
|
|
||||||
|
/* link layer */
|
||||||
|
|
||||||
|
#define GIMP_VALUES_GET_LINK_LAYER(args, n) \
|
||||||
|
g_value_get_object (gimp_value_array_index (args, n))
|
||||||
|
|
||||||
|
#define GIMP_VALUES_GET_LINK_LAYER_ID(args, n) \
|
||||||
|
gimp_item_get_id (g_value_get_object (gimp_value_array_index (args, n)))
|
||||||
|
|
||||||
|
#define GIMP_VALUES_SET_LINK_LAYER(args, n, value) \
|
||||||
|
g_value_set_object (gimp_value_array_index (args, n), value)
|
||||||
|
|
||||||
|
|
||||||
/* group layer */
|
/* group layer */
|
||||||
|
|
||||||
#define GIMP_VALUES_GET_GROUP_LAYER(args, n) \
|
#define GIMP_VALUES_GET_GROUP_LAYER(args, n) \
|
||||||
@@ -930,6 +942,25 @@ void gimp_procedure_add_vector_layer_return_value (GimpProcedure *procedure
|
|||||||
gboolean none_ok,
|
gboolean none_ok,
|
||||||
GParamFlags flags);
|
GParamFlags flags);
|
||||||
|
|
||||||
|
void gimp_procedure_add_link_layer_argument (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags);
|
||||||
|
void gimp_procedure_add_link_layer_aux_argument (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags);
|
||||||
|
void gimp_procedure_add_link_layer_return_value (GimpProcedure *procedure,
|
||||||
|
const gchar *name,
|
||||||
|
const gchar *nick,
|
||||||
|
const gchar *blurb,
|
||||||
|
gboolean none_ok,
|
||||||
|
GParamFlags flags);
|
||||||
|
|
||||||
void gimp_procedure_add_group_layer_argument (GimpProcedure *procedure,
|
void gimp_procedure_add_group_layer_argument (GimpProcedure *procedure,
|
||||||
const gchar *name,
|
const gchar *name,
|
||||||
const gchar *nick,
|
const gchar *nick,
|
||||||
|
@@ -47,6 +47,7 @@ typedef struct _GimpGroupLayer GimpGroupLayer;
|
|||||||
typedef struct _GimpLayer GimpLayer;
|
typedef struct _GimpLayer GimpLayer;
|
||||||
typedef struct _GimpChannel GimpChannel;
|
typedef struct _GimpChannel GimpChannel;
|
||||||
typedef struct _GimpLayerMask GimpLayerMask;
|
typedef struct _GimpLayerMask GimpLayerMask;
|
||||||
|
typedef struct _GimpLinkLayer GimpLinkLayer;
|
||||||
typedef struct _GimpSelection GimpSelection;
|
typedef struct _GimpSelection GimpSelection;
|
||||||
typedef struct _GimpTextLayer GimpTextLayer;
|
typedef struct _GimpTextLayer GimpTextLayer;
|
||||||
typedef struct _GimpPath GimpPath;
|
typedef struct _GimpPath GimpPath;
|
||||||
|
@@ -99,6 +99,7 @@ pdb_wrappers_sources = [
|
|||||||
'gimpitem_pdb.c',
|
'gimpitem_pdb.c',
|
||||||
'gimpitemtransform_pdb.c',
|
'gimpitemtransform_pdb.c',
|
||||||
'gimplayer_pdb.c',
|
'gimplayer_pdb.c',
|
||||||
|
'gimplinklayer_pdb.c',
|
||||||
'gimpmessage_pdb.c',
|
'gimpmessage_pdb.c',
|
||||||
'gimppainttools_pdb.c',
|
'gimppainttools_pdb.c',
|
||||||
'gimppalette_pdb.c',
|
'gimppalette_pdb.c',
|
||||||
@@ -159,6 +160,7 @@ pdb_wrappers_headers = [
|
|||||||
'gimpitem_pdb.h',
|
'gimpitem_pdb.h',
|
||||||
'gimpitemtransform_pdb.h',
|
'gimpitemtransform_pdb.h',
|
||||||
'gimplayer_pdb.h',
|
'gimplayer_pdb.h',
|
||||||
|
'gimplinklayer_pdb.h',
|
||||||
'gimpmessage_pdb.h',
|
'gimpmessage_pdb.h',
|
||||||
'gimppainttools_pdb.h',
|
'gimppainttools_pdb.h',
|
||||||
'gimppalette_pdb.h',
|
'gimppalette_pdb.h',
|
||||||
@@ -200,6 +202,7 @@ libgimp_sources_introspectable = [
|
|||||||
'gimpitem.c',
|
'gimpitem.c',
|
||||||
'gimplayer.c',
|
'gimplayer.c',
|
||||||
'gimplayermask.c',
|
'gimplayermask.c',
|
||||||
|
'gimplinklayer.c',
|
||||||
'gimploadprocedure.c',
|
'gimploadprocedure.c',
|
||||||
'gimppalette.c',
|
'gimppalette.c',
|
||||||
'gimpparamspecs.c',
|
'gimpparamspecs.c',
|
||||||
@@ -263,6 +266,7 @@ libgimp_headers_introspectable = [
|
|||||||
'gimpitem.h',
|
'gimpitem.h',
|
||||||
'gimplayer.h',
|
'gimplayer.h',
|
||||||
'gimplayermask.h',
|
'gimplayermask.h',
|
||||||
|
'gimplinklayer.h',
|
||||||
'gimploadprocedure.h',
|
'gimploadprocedure.h',
|
||||||
'gimppalette.h',
|
'gimppalette.h',
|
||||||
'gimpparamspecs.h',
|
'gimpparamspecs.h',
|
||||||
|
10
pdb/app.pl
10
pdb/app.pl
@@ -391,6 +391,16 @@ gimp_param_spec_vector_layer ("$name",
|
|||||||
"$blurb",
|
"$blurb",
|
||||||
$none_ok,
|
$none_ok,
|
||||||
$flags)
|
$flags)
|
||||||
|
CODE
|
||||||
|
}
|
||||||
|
elsif ($pdbtype eq 'link_layer') {
|
||||||
|
$none_ok = exists $arg->{none_ok} ? 'TRUE' : 'FALSE';
|
||||||
|
$pspec = <<CODE;
|
||||||
|
gimp_param_spec_link_layer ("$name",
|
||||||
|
"$nick",
|
||||||
|
"$blurb",
|
||||||
|
$none_ok,
|
||||||
|
$flags)
|
||||||
CODE
|
CODE
|
||||||
}
|
}
|
||||||
elsif ($pdbtype eq 'layer') {
|
elsif ($pdbtype eq 'layer') {
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
# This file is autogenerated
|
# This file is autogenerated
|
||||||
@groups = qw(
|
@groups = qw(
|
||||||
brush
|
|
||||||
brush_select
|
brush_select
|
||||||
|
brush
|
||||||
brushes
|
brushes
|
||||||
buffer
|
buffer
|
||||||
channel
|
channel
|
||||||
context
|
context
|
||||||
debug
|
debug
|
||||||
display
|
display
|
||||||
drawable
|
|
||||||
drawable_color
|
drawable_color
|
||||||
drawable_edit
|
drawable_edit
|
||||||
drawable_filter
|
drawable_filter
|
||||||
drawable_select
|
drawable_select
|
||||||
|
drawable
|
||||||
dynamics
|
dynamics
|
||||||
edit
|
edit
|
||||||
file
|
file
|
||||||
@@ -22,12 +22,11 @@
|
|||||||
fonts
|
fonts
|
||||||
gimp
|
gimp
|
||||||
gimprc
|
gimprc
|
||||||
gradient
|
|
||||||
gradient_select
|
gradient_select
|
||||||
|
gradient
|
||||||
gradients
|
gradients
|
||||||
group_layer
|
group_layer
|
||||||
help
|
help
|
||||||
image
|
|
||||||
image_autocrop
|
image_autocrop
|
||||||
image_color_profile
|
image_color_profile
|
||||||
image_convert
|
image_convert
|
||||||
@@ -37,17 +36,19 @@
|
|||||||
image_select
|
image_select
|
||||||
image_transform
|
image_transform
|
||||||
image_undo
|
image_undo
|
||||||
item
|
image
|
||||||
item_transform
|
item_transform
|
||||||
|
item
|
||||||
layer
|
layer
|
||||||
|
link_layer
|
||||||
message
|
message
|
||||||
paint_tools
|
paint_tools
|
||||||
palette
|
|
||||||
palette_select
|
palette_select
|
||||||
|
palette
|
||||||
palettes
|
palettes
|
||||||
path
|
path
|
||||||
pattern
|
|
||||||
pattern_select
|
pattern_select
|
||||||
|
pattern
|
||||||
patterns
|
patterns
|
||||||
pdb
|
pdb
|
||||||
plug_in
|
plug_in
|
||||||
|
@@ -248,6 +248,42 @@ CODE
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub item_id_is_link_layer {
|
||||||
|
$blurb = 'Returns whether the item ID is a link layer.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This procedure returns %TRUE if the specified item ID is a link layer.
|
||||||
|
|
||||||
|
|
||||||
|
*Note*: in most use cases, you should not use this function. See
|
||||||
|
[func@Gimp.Item.id_is_layer] for a discussion on alternatives.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'item_id', type => 'int32',
|
||||||
|
desc => 'The item ID' }
|
||||||
|
);
|
||||||
|
|
||||||
|
@outargs = (
|
||||||
|
{ name => 'text_layer', type => 'boolean',
|
||||||
|
desc => 'TRUE if the item is a text layer, FALSE otherwise.' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
GimpItem *item = gimp_item_get_by_id (gimp, item_id);
|
||||||
|
|
||||||
|
text_layer = (GIMP_IS_LAYER (item) &&
|
||||||
|
! gimp_item_is_removed (item) &&
|
||||||
|
gimp_item_is_link_layer (item));
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
sub item_id_is_channel {
|
sub item_id_is_channel {
|
||||||
$blurb = 'Returns whether the item ID is a channel.';
|
$blurb = 'Returns whether the item ID is a channel.';
|
||||||
|
|
||||||
@@ -1090,6 +1126,7 @@ CODE
|
|||||||
|
|
||||||
@headers = qw("core/gimpgrouplayer.h"
|
@headers = qw("core/gimpgrouplayer.h"
|
||||||
"core/gimplayermask.h"
|
"core/gimplayermask.h"
|
||||||
|
"core/gimplinklayer.h"
|
||||||
"core/gimplist.h"
|
"core/gimplist.h"
|
||||||
"core/gimpselection.h"
|
"core/gimpselection.h"
|
||||||
"path/gimppath.h"
|
"path/gimppath.h"
|
||||||
@@ -1105,6 +1142,7 @@ CODE
|
|||||||
item_id_is_text_layer
|
item_id_is_text_layer
|
||||||
item_id_is_vector_layer
|
item_id_is_vector_layer
|
||||||
item_id_is_group_layer
|
item_id_is_group_layer
|
||||||
|
item_id_is_link_layer
|
||||||
item_id_is_channel
|
item_id_is_channel
|
||||||
item_id_is_layer_mask
|
item_id_is_layer_mask
|
||||||
item_id_is_path
|
item_id_is_path
|
||||||
|
225
pdb/groups/link_layer.pdb
Normal file
225
pdb/groups/link_layer.pdb
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# GIMP - The GNU Image Manipulation Program
|
||||||
|
# Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||||
|
|
||||||
|
# New Link Layer PDB API
|
||||||
|
# Copyright (C) 2025 Jehan
|
||||||
|
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
|
||||||
|
sub link_layer_new {
|
||||||
|
$blurb = 'Creates a new link layer.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This procedure creates a link layer monitoring the specified @file.
|
||||||
|
|
||||||
|
|
||||||
|
The new layer still needs to be added to the image as this is not
|
||||||
|
automatic. Add the new layer with the [method@Image.insert_layer]
|
||||||
|
method.
|
||||||
|
|
||||||
|
|
||||||
|
The arguments are kept as simple as necessary for the basic case. All
|
||||||
|
link attributes, however, can be modified with the appropriate
|
||||||
|
`gimp_link_layer_set_*()` procedures.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'image', type => 'image',
|
||||||
|
desc => 'The image' },
|
||||||
|
{ name => 'file', type => 'file',
|
||||||
|
desc => 'The file this link layer will monitor' }
|
||||||
|
);
|
||||||
|
|
||||||
|
@outargs = (
|
||||||
|
{ name => 'layer', type => 'link_layer',
|
||||||
|
desc => 'The new link layer. The object belongs to libgimp and you should not free it.' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
if (file == NULL)
|
||||||
|
{
|
||||||
|
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("Failed to create link layer"));
|
||||||
|
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
GimpLink *link;
|
||||||
|
|
||||||
|
link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);
|
||||||
|
|
||||||
|
if (link == NULL)
|
||||||
|
{
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
layer = GIMP_LINK_LAYER (gimp_link_layer_new (image, link));
|
||||||
|
|
||||||
|
if (! layer)
|
||||||
|
{
|
||||||
|
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("Failed to create link layer"));
|
||||||
|
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g_clear_object (&link);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub link_layer_discard {
|
||||||
|
$blurb = 'Discard the link layer information.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
Discards the link information. This makes the layer behave like a normal layer.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'layer', type => 'link_layer',
|
||||||
|
desc => 'The link layer' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
gimp_link_layer_discard (layer);
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub link_layer_monitor {
|
||||||
|
$blurb = 'Retrieve the link layer information.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
Retrieve the link information. This makes the layer behave like a link
|
||||||
|
layer after the link information has been discarded.
|
||||||
|
|
||||||
|
Since the source file will be monitored again, it may change the layer's render.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'layer', type => 'link_layer',
|
||||||
|
desc => 'The link layer' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
gimp_link_layer_monitor (layer);
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub link_layer_get_file {
|
||||||
|
$blurb = 'Get the monitored file.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This procedure returns the file which is being monitored.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'layer', type => 'link_layer',
|
||||||
|
desc => 'The link layer' }
|
||||||
|
);
|
||||||
|
|
||||||
|
@outargs = (
|
||||||
|
{ name => 'file', type => 'file',
|
||||||
|
desc => 'The monitored file' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
file = gimp_link_get_file (gimp_link_layer_get_link (layer), NULL, NULL);
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub link_layer_set_file {
|
||||||
|
$blurb = 'Set the monitored file.';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This procedure sets the file to be monitored.
|
||||||
|
It may change the layer's render.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&jehan_pdb_misc('2025', '3.2');
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'layer', type => 'link_layer',
|
||||||
|
desc => 'The link layer' },
|
||||||
|
{ name => 'file', type => 'file',
|
||||||
|
desc => 'The file to monitor' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
GimpLink *link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);
|
||||||
|
|
||||||
|
if (link)
|
||||||
|
{
|
||||||
|
gimp_link_layer_set_link (layer, link, TRUE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_clear_object (&link);
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@headers = qw("core/gimplink.h"
|
||||||
|
"core/gimplinklayer.h"
|
||||||
|
"gimppdberror.h"
|
||||||
|
"gimp-intl.h");
|
||||||
|
|
||||||
|
@procs = qw(link_layer_new
|
||||||
|
link_layer_discard
|
||||||
|
link_layer_monitor
|
||||||
|
link_layer_get_file
|
||||||
|
link_layer_set_file);
|
||||||
|
|
||||||
|
%exports = (app => [@procs], lib => [@procs]);
|
||||||
|
|
||||||
|
$desc = 'Link layer procedures';
|
||||||
|
$doc_title = 'gimplinklayer';
|
||||||
|
$doc_short_desc = 'Functions for querying and manipulating link layers.';
|
||||||
|
$doc_long_desc = 'Functions for querying and manipulating link layers.';
|
||||||
|
|
||||||
|
1;
|
@@ -42,6 +42,7 @@ pdb_names = [
|
|||||||
'item_transform',
|
'item_transform',
|
||||||
'item',
|
'item',
|
||||||
'layer',
|
'layer',
|
||||||
|
'link_layer',
|
||||||
'message',
|
'message',
|
||||||
'paint_tools',
|
'paint_tools',
|
||||||
'palette_select',
|
'palette_select',
|
||||||
|
12
pdb/pdb.pl
12
pdb/pdb.pl
@@ -383,6 +383,18 @@ package Gimp::CodeGen::pdb;
|
|||||||
take_value_func => 'g_value_set_object ($value, $var)',
|
take_value_func => 'g_value_set_object ($value, $var)',
|
||||||
headers => [ qw("path/gimpvectorlayer.h") ] },
|
headers => [ qw("path/gimpvectorlayer.h") ] },
|
||||||
|
|
||||||
|
link_layer => { name => 'LINK_LAYER',
|
||||||
|
gtype => 'GIMP_TYPE_LINK_LAYER',
|
||||||
|
type => 'GimpLinkLayer *',
|
||||||
|
const_type => 'GimpLinkLayer *',
|
||||||
|
init_value => 'NULL',
|
||||||
|
out_annotate => '(transfer none)',
|
||||||
|
get_value_func => '$var = g_value_get_object ($value)',
|
||||||
|
dup_value_func => '$var = GIMP_VALUES_GET_LINK_LAYER ($value)',
|
||||||
|
set_value_func => 'g_value_set_object ($value, $var)',
|
||||||
|
take_value_func => 'g_value_set_object ($value, $var)',
|
||||||
|
headers => [ qw("core/gimplinklayer.h") ] },
|
||||||
|
|
||||||
group_layer => { name => 'GROUP_LAYER',
|
group_layer => { name => 'GROUP_LAYER',
|
||||||
gtype => 'GIMP_TYPE_GROUP_LAYER',
|
gtype => 'GIMP_TYPE_GROUP_LAYER',
|
||||||
type => 'GimpGroupLayer *',
|
type => 'GimpGroupLayer *',
|
||||||
|
@@ -390,6 +390,7 @@ app/pdb/image-transform-cmds.c
|
|||||||
app/pdb/image-undo-cmds.c
|
app/pdb/image-undo-cmds.c
|
||||||
app/pdb/item-transform-cmds.c
|
app/pdb/item-transform-cmds.c
|
||||||
app/pdb/layer-cmds.c
|
app/pdb/layer-cmds.c
|
||||||
|
app/pdb/link-layer-cmds.c
|
||||||
app/pdb/path-cmds.c
|
app/pdb/path-cmds.c
|
||||||
app/pdb/pdb-cmds.c
|
app/pdb/pdb-cmds.c
|
||||||
app/pdb/resource-cmds.c
|
app/pdb/resource-cmds.c
|
||||||
|
Reference in New Issue
Block a user