2012-05-03 23:24:09 +02:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpvaluearray.h ported from GValueArray
|
|
|
|
*
|
|
|
|
* 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
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2012-05-03 23:24:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined (__GIMP_BASE_H_INSIDE__) && !defined (GIMP_BASE_COMPILATION)
|
|
|
|
#error "Only <libgimpbase/gimpbase.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __GIMP_VALUE_ARRAY_H__
|
|
|
|
#define __GIMP_VALUE_ARRAY_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GIMP_TYPE_VALUE_ARRAY:
|
|
|
|
*
|
|
|
|
* The type ID of the "GimpValueArray" type which is a boxed type,
|
|
|
|
* used to pass around pointers to GimpValueArrays.
|
|
|
|
*
|
2015-05-31 21:18:09 +02:00
|
|
|
* Since: 2.10
|
2012-05-03 23:24:09 +02:00
|
|
|
*/
|
2024-11-29 17:37:23 +09:00
|
|
|
#define GIMP_TYPE_VALUE_ARRAY (gimp_value_array_get_type ())
|
|
|
|
#define GIMP_VALUE_HOLDS_VALUE_ARRAY(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_VALUE_ARRAY))
|
2012-05-03 23:24:09 +02:00
|
|
|
|
|
|
|
|
2024-02-28 22:13:57 +01:00
|
|
|
GType gimp_value_array_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GimpValueArray * gimp_value_array_new (gint n_prealloced);
|
|
|
|
GimpValueArray * gimp_value_array_new_from_types (gchar **error_msg,
|
|
|
|
GType first_type,
|
|
|
|
...);
|
|
|
|
GimpValueArray * gimp_value_array_new_from_types_valist (gchar **error_msg,
|
|
|
|
GType first_type,
|
|
|
|
va_list va_args);
|
|
|
|
GimpValueArray * gimp_value_array_new_from_values (const GValue *values,
|
|
|
|
gint n_values);
|
|
|
|
|
|
|
|
GimpValueArray * gimp_value_array_copy (const GimpValueArray *value_array);
|
|
|
|
|
|
|
|
GimpValueArray * gimp_value_array_ref (GimpValueArray *value_array);
|
|
|
|
void gimp_value_array_unref (GimpValueArray *value_array);
|
|
|
|
|
|
|
|
gint gimp_value_array_length (const GimpValueArray *value_array);
|
|
|
|
|
|
|
|
GValue * gimp_value_array_index (const GimpValueArray *value_array,
|
|
|
|
gint index);
|
|
|
|
GeglColor ** gimp_value_array_get_color_array (const GimpValueArray *value_array,
|
|
|
|
gint index);
|
libgimp, libgimpbase: create special functions to get/set boxed array properties.
While the work on NULL-terminated array types make it much easier in C,
bindings don't have enough information to create native array/list types
in some generic functions such as g_object_get|set(), or else we just
don't know the right annotations to use for this to be possible. This is
report gobject-introspection#492.
So for the time being, we are creating dedicated functions for GeglColor
arrays and for other core object arrays (arrays of images, items, etc.).
E.g. in Python, while you can set a single GimpImage like this:
> config.set_property('image', image)
… you need to set a list of images like this:
> config.set_core_object_array('images', [image1, image2])
2024-10-28 19:18:22 +01:00
|
|
|
GObject ** gimp_value_array_get_core_object_array (const GimpValueArray *value_array,
|
|
|
|
gint index);
|
2024-02-28 22:13:57 +01:00
|
|
|
|
|
|
|
GimpValueArray * gimp_value_array_prepend (GimpValueArray *value_array,
|
|
|
|
const GValue *value);
|
|
|
|
GimpValueArray * gimp_value_array_append (GimpValueArray *value_array,
|
|
|
|
const GValue *value);
|
|
|
|
GimpValueArray * gimp_value_array_insert (GimpValueArray *value_array,
|
|
|
|
gint index,
|
|
|
|
const GValue *value);
|
|
|
|
|
|
|
|
GimpValueArray * gimp_value_array_remove (GimpValueArray *value_array,
|
|
|
|
gint index);
|
|
|
|
void gimp_value_array_truncate (GimpValueArray *value_array,
|
|
|
|
gint n_values);
|
2012-05-03 23:24:09 +02:00
|
|
|
|
|
|
|
|
2012-05-04 00:26:26 +02:00
|
|
|
/*
|
|
|
|
* GIMP_TYPE_PARAM_VALUE_ARRAY
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GIMP_TYPE_PARAM_VALUE_ARRAY (gimp_param_value_array_get_type ())
|
|
|
|
#define GIMP_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GIMP_TYPE_PARAM_VALUE_ARRAY))
|
|
|
|
|
|
|
|
|
2025-01-25 00:37:55 +01:00
|
|
|
GType gimp_param_value_array_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GParamSpec * gimp_param_spec_value_array (const gchar *name,
|
|
|
|
const gchar *nick,
|
|
|
|
const gchar *blurb,
|
|
|
|
GParamSpec *element_spec,
|
|
|
|
GParamFlags flags);
|
|
|
|
|
|
|
|
GParamSpec * gimp_param_spec_value_array_get_element_spec (GParamSpec *pspec);
|
2012-05-04 00:26:26 +02:00
|
|
|
|
|
|
|
|
2012-05-03 23:24:09 +02:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_VALUE_ARRAY_H__ */
|