2004-09-22 23:26:58 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpcontext_pdb.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-09-22 23:26:58 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-09-22 23:26:58 +08:00
|
|
|
*
|
|
|
|
* 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
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2004-09-22 23:26:58 +08:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:52:47 +08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
2004-09-22 23:26:58 +08:00
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimp.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-09-22 23:26:58 +08:00
|
|
|
#ifndef __GIMP_CONTEXT_PDB_H__
|
|
|
|
#define __GIMP_CONTEXT_PDB_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2023-07-19 22:07:54 +08:00
|
|
|
gboolean gimp_context_push (void);
|
|
|
|
gboolean gimp_context_pop (void);
|
|
|
|
gboolean gimp_context_set_defaults (void);
|
|
|
|
gboolean gimp_context_list_paint_methods (gchar ***paint_methods);
|
|
|
|
gchar* gimp_context_get_paint_method (void);
|
|
|
|
gboolean gimp_context_set_paint_method (const gchar *name);
|
|
|
|
GimpStrokeMethod gimp_context_get_stroke_method (void);
|
|
|
|
gboolean gimp_context_set_stroke_method (GimpStrokeMethod stroke_method);
|
2023-11-15 03:04:14 +08:00
|
|
|
GeglColor* gimp_context_get_foreground (void);
|
2023-11-14 06:29:20 +08:00
|
|
|
gboolean gimp_context_set_foreground (GeglColor *foreground);
|
2023-11-15 03:04:14 +08:00
|
|
|
GeglColor* gimp_context_get_background (void);
|
2023-11-14 06:29:20 +08:00
|
|
|
gboolean gimp_context_set_background (GeglColor *background);
|
2023-07-19 22:07:54 +08:00
|
|
|
gboolean gimp_context_set_default_colors (void);
|
|
|
|
gboolean gimp_context_swap_colors (void);
|
|
|
|
gdouble gimp_context_get_opacity (void);
|
|
|
|
gboolean gimp_context_set_opacity (gdouble opacity);
|
|
|
|
GimpLayerMode gimp_context_get_paint_mode (void);
|
|
|
|
gboolean gimp_context_set_paint_mode (GimpLayerMode paint_mode);
|
|
|
|
gdouble gimp_context_get_line_width (void);
|
|
|
|
gboolean gimp_context_set_line_width (gdouble line_width);
|
Issue #8900 and #9923: reimplementing GimpUnit as a proper class.
This fixes all our GObject Introspection issues with GimpUnit which was
both an enum and an int-derived type of user-defined units *completing*
the enum values. GIR clearly didn't like this!
Now GimpUnit is a proper class and units are unique objects, allowing to
compare them with an identity test (i.e. `unit == gimp_unit_pixel ()`
tells us if unit is the pixel unit or not), which makes it easy to use,
just like with int, yet adding also methods, making for nicer
introspected API.
As an aside, this also fixes #10738, by having all the built-in units
retrievable even if libgimpbase had not been properly initialized with
gimp_base_init().
I haven't checked in details how GIR works to introspect, but it looks
like it loads the library to inspect and runs functions, hence
triggering some CRITICALS because virtual methods (supposed to be
initialized with gimp_base_init() run by libgimp) are not set. This new
code won't trigger any critical because the vtable method are now not
necessary, at least for all built-in units.
Note that GimpUnit is still in libgimpbase. It could have been moved to
libgimp in order to avoid any virtual method table (since we need to
keep core and libgimp side's units in sync, PDB is required), but too
many libgimpwidgets widgets were already using GimpUnit. And technically
most of GimpUnit logic doesn't require PDB (only the creation/sync
part). This is one of the reasons why user-created GimpUnit list is
handled and stored differently from other types of objects.
Globally this simplifies the code a lot too and we don't need separate
implementations of various utils for core and libgimp, which means less
prone to errors.
2024-07-26 02:55:21 +08:00
|
|
|
GimpUnit* gimp_context_get_line_width_unit (void);
|
|
|
|
gboolean gimp_context_set_line_width_unit (GimpUnit *line_width_unit);
|
2023-07-19 22:07:54 +08:00
|
|
|
GimpCapStyle gimp_context_get_line_cap_style (void);
|
|
|
|
gboolean gimp_context_set_line_cap_style (GimpCapStyle cap_style);
|
|
|
|
GimpJoinStyle gimp_context_get_line_join_style (void);
|
|
|
|
gboolean gimp_context_set_line_join_style (GimpJoinStyle join_style);
|
|
|
|
gdouble gimp_context_get_line_miter_limit (void);
|
|
|
|
gboolean gimp_context_set_line_miter_limit (gdouble miter_limit);
|
|
|
|
gdouble gimp_context_get_line_dash_offset (void);
|
|
|
|
gboolean gimp_context_set_line_dash_offset (gdouble dash_offset);
|
|
|
|
gboolean gimp_context_get_line_dash_pattern (gint *num_dashes,
|
|
|
|
gdouble **dashes);
|
|
|
|
gboolean gimp_context_set_line_dash_pattern (gint num_dashes,
|
|
|
|
const gdouble *dashes);
|
|
|
|
GimpBrush* gimp_context_get_brush (void);
|
|
|
|
gboolean gimp_context_set_brush (GimpBrush *brush);
|
|
|
|
gdouble gimp_context_get_brush_size (void);
|
|
|
|
gboolean gimp_context_set_brush_size (gdouble size);
|
|
|
|
gboolean gimp_context_set_brush_default_size (void);
|
|
|
|
gdouble gimp_context_get_brush_aspect_ratio (void);
|
|
|
|
gboolean gimp_context_set_brush_aspect_ratio (gdouble aspect);
|
|
|
|
gdouble gimp_context_get_brush_angle (void);
|
|
|
|
gboolean gimp_context_set_brush_angle (gdouble angle);
|
|
|
|
gdouble gimp_context_get_brush_spacing (void);
|
|
|
|
gboolean gimp_context_set_brush_spacing (gdouble spacing);
|
|
|
|
gboolean gimp_context_set_brush_default_spacing (void);
|
|
|
|
gdouble gimp_context_get_brush_hardness (void);
|
|
|
|
gboolean gimp_context_set_brush_hardness (gdouble hardness);
|
|
|
|
gboolean gimp_context_set_brush_default_hardness (void);
|
|
|
|
gdouble gimp_context_get_brush_force (void);
|
|
|
|
gboolean gimp_context_set_brush_force (gdouble force);
|
|
|
|
gchar* gimp_context_get_dynamics (void);
|
|
|
|
gboolean gimp_context_set_dynamics (const gchar *name);
|
|
|
|
gboolean gimp_context_are_dynamics_enabled (void);
|
|
|
|
gboolean gimp_context_enable_dynamics (gboolean enable);
|
|
|
|
gchar* gimp_context_get_mypaint_brush (void);
|
|
|
|
gboolean gimp_context_set_mypaint_brush (const gchar *name);
|
|
|
|
GimpPattern* gimp_context_get_pattern (void);
|
|
|
|
gboolean gimp_context_set_pattern (GimpPattern *pattern);
|
|
|
|
GimpGradient* gimp_context_get_gradient (void);
|
|
|
|
gboolean gimp_context_set_gradient (GimpGradient *gradient);
|
|
|
|
gboolean gimp_context_set_gradient_fg_bg_rgb (void);
|
|
|
|
gboolean gimp_context_set_gradient_fg_bg_hsv_cw (void);
|
|
|
|
gboolean gimp_context_set_gradient_fg_bg_hsv_ccw (void);
|
|
|
|
gboolean gimp_context_set_gradient_fg_transparent (void);
|
|
|
|
GimpGradientBlendColorSpace gimp_context_get_gradient_blend_color_space (void);
|
|
|
|
gboolean gimp_context_set_gradient_blend_color_space (GimpGradientBlendColorSpace blend_color_space);
|
|
|
|
GimpRepeatMode gimp_context_get_gradient_repeat_mode (void);
|
|
|
|
gboolean gimp_context_set_gradient_repeat_mode (GimpRepeatMode repeat_mode);
|
|
|
|
gboolean gimp_context_get_gradient_reverse (void);
|
|
|
|
gboolean gimp_context_set_gradient_reverse (gboolean reverse);
|
|
|
|
GimpPalette* gimp_context_get_palette (void);
|
|
|
|
gboolean gimp_context_set_palette (GimpPalette *palette);
|
|
|
|
GimpFont* gimp_context_get_font (void);
|
|
|
|
gboolean gimp_context_set_font (GimpFont *font);
|
|
|
|
gboolean gimp_context_get_antialias (void);
|
|
|
|
gboolean gimp_context_set_antialias (gboolean antialias);
|
|
|
|
gboolean gimp_context_get_feather (void);
|
|
|
|
gboolean gimp_context_set_feather (gboolean feather);
|
|
|
|
gboolean gimp_context_get_feather_radius (gdouble *feather_radius_x,
|
|
|
|
gdouble *feather_radius_y);
|
|
|
|
gboolean gimp_context_set_feather_radius (gdouble feather_radius_x,
|
|
|
|
gdouble feather_radius_y);
|
|
|
|
gboolean gimp_context_get_sample_merged (void);
|
|
|
|
gboolean gimp_context_set_sample_merged (gboolean sample_merged);
|
|
|
|
GimpSelectCriterion gimp_context_get_sample_criterion (void);
|
|
|
|
gboolean gimp_context_set_sample_criterion (GimpSelectCriterion sample_criterion);
|
|
|
|
gdouble gimp_context_get_sample_threshold (void);
|
|
|
|
gboolean gimp_context_set_sample_threshold (gdouble sample_threshold);
|
|
|
|
gint gimp_context_get_sample_threshold_int (void);
|
|
|
|
gboolean gimp_context_set_sample_threshold_int (gint sample_threshold);
|
|
|
|
gboolean gimp_context_get_sample_transparent (void);
|
|
|
|
gboolean gimp_context_set_sample_transparent (gboolean sample_transparent);
|
|
|
|
gboolean gimp_context_get_diagonal_neighbors (void);
|
|
|
|
gboolean gimp_context_set_diagonal_neighbors (gboolean diagonal_neighbors);
|
|
|
|
GeglDistanceMetric gimp_context_get_distance_metric (void);
|
|
|
|
gboolean gimp_context_set_distance_metric (GeglDistanceMetric metric);
|
|
|
|
GimpInterpolationType gimp_context_get_interpolation (void);
|
|
|
|
gboolean gimp_context_set_interpolation (GimpInterpolationType interpolation);
|
|
|
|
GimpTransformDirection gimp_context_get_transform_direction (void);
|
|
|
|
gboolean gimp_context_set_transform_direction (GimpTransformDirection transform_direction);
|
|
|
|
GimpTransformResize gimp_context_get_transform_resize (void);
|
|
|
|
gboolean gimp_context_set_transform_resize (GimpTransformResize transform_resize);
|
|
|
|
gdouble gimp_context_get_ink_size (void);
|
|
|
|
gboolean gimp_context_set_ink_size (gdouble size);
|
|
|
|
gdouble gimp_context_get_ink_angle (void);
|
|
|
|
gboolean gimp_context_set_ink_angle (gdouble angle);
|
|
|
|
gdouble gimp_context_get_ink_size_sensitivity (void);
|
|
|
|
gboolean gimp_context_set_ink_size_sensitivity (gdouble size);
|
|
|
|
gdouble gimp_context_get_ink_tilt_sensitivity (void);
|
|
|
|
gboolean gimp_context_set_ink_tilt_sensitivity (gdouble tilt);
|
|
|
|
gdouble gimp_context_get_ink_speed_sensitivity (void);
|
|
|
|
gboolean gimp_context_set_ink_speed_sensitivity (gdouble speed);
|
|
|
|
GimpInkBlobType gimp_context_get_ink_blob_type (void);
|
|
|
|
gboolean gimp_context_set_ink_blob_type (GimpInkBlobType type);
|
|
|
|
gdouble gimp_context_get_ink_blob_aspect_ratio (void);
|
|
|
|
gboolean gimp_context_set_ink_blob_aspect_ratio (gdouble aspect);
|
|
|
|
gdouble gimp_context_get_ink_blob_angle (void);
|
|
|
|
gboolean gimp_context_set_ink_blob_angle (gdouble angle);
|
|
|
|
G_GNUC_INTERNAL GimpResource* _gimp_context_get_resource (const gchar *type_name);
|
2004-09-22 23:26:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_CONTEXT_PDB_H__ */
|