
and in an attack of madness, changes almost all file plug-in code to use GFile instead of filenames, which means passing the GFile down to the bottom and get its filename at the very end where it's actually needed.
145 lines
11 KiB
C
145 lines
11 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
|
*
|
|
* gimpvectors_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_VECTORS_PDB_H__
|
|
#define __GIMP_VECTORS_PDB_H__
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
GimpVectors* gimp_vectors_new (GimpImage *image,
|
|
const gchar *name);
|
|
GimpVectors* gimp_vectors_new_from_text_layer (GimpImage *image,
|
|
GimpLayer *layer);
|
|
GimpVectors* gimp_vectors_copy (GimpVectors *vectors);
|
|
gint* gimp_vectors_get_strokes (GimpVectors *vectors,
|
|
gint *num_strokes);
|
|
gdouble gimp_vectors_stroke_get_length (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble precision);
|
|
gboolean gimp_vectors_stroke_get_point_at_dist (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble dist,
|
|
gdouble precision,
|
|
gdouble *x_point,
|
|
gdouble *y_point,
|
|
gdouble *slope,
|
|
gboolean *valid);
|
|
gboolean gimp_vectors_remove_stroke (GimpVectors *vectors,
|
|
gint stroke_id);
|
|
gboolean gimp_vectors_stroke_close (GimpVectors *vectors,
|
|
gint stroke_id);
|
|
gboolean gimp_vectors_stroke_translate (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gint off_x,
|
|
gint off_y);
|
|
gboolean gimp_vectors_stroke_scale (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble scale_x,
|
|
gdouble scale_y);
|
|
gboolean gimp_vectors_stroke_rotate (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble center_x,
|
|
gdouble center_y,
|
|
gdouble angle);
|
|
gboolean gimp_vectors_stroke_flip (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
GimpOrientationType flip_type,
|
|
gdouble axis);
|
|
gboolean gimp_vectors_stroke_flip_free (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble x1,
|
|
gdouble y1,
|
|
gdouble x2,
|
|
gdouble y2);
|
|
GimpVectorsStrokeType gimp_vectors_stroke_get_points (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gint *num_points,
|
|
gdouble **controlpoints,
|
|
gboolean *closed);
|
|
gint gimp_vectors_stroke_new_from_points (GimpVectors *vectors,
|
|
GimpVectorsStrokeType type,
|
|
gint num_points,
|
|
const gdouble *controlpoints,
|
|
gboolean closed);
|
|
gdouble* gimp_vectors_stroke_interpolate (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble precision,
|
|
gint *num_coords,
|
|
gboolean *closed);
|
|
gint gimp_vectors_bezier_stroke_new_moveto (GimpVectors *vectors,
|
|
gdouble x0,
|
|
gdouble y0);
|
|
gboolean gimp_vectors_bezier_stroke_lineto (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble x0,
|
|
gdouble y0);
|
|
gboolean gimp_vectors_bezier_stroke_conicto (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble x0,
|
|
gdouble y0,
|
|
gdouble x1,
|
|
gdouble y1);
|
|
gboolean gimp_vectors_bezier_stroke_cubicto (GimpVectors *vectors,
|
|
gint stroke_id,
|
|
gdouble x0,
|
|
gdouble y0,
|
|
gdouble x1,
|
|
gdouble y1,
|
|
gdouble x2,
|
|
gdouble y2);
|
|
gint gimp_vectors_bezier_stroke_new_ellipse (GimpVectors *vectors,
|
|
gdouble x0,
|
|
gdouble y0,
|
|
gdouble radius_x,
|
|
gdouble radius_y,
|
|
gdouble angle);
|
|
gboolean gimp_vectors_import_from_file (GimpImage *image,
|
|
GFile *file,
|
|
gboolean merge,
|
|
gboolean scale,
|
|
gint *num_vectors,
|
|
GimpVectors ***vectors);
|
|
gboolean gimp_vectors_import_from_string (GimpImage *image,
|
|
const gchar *string,
|
|
gint length,
|
|
gboolean merge,
|
|
gboolean scale,
|
|
gint *num_vectors,
|
|
GimpVectors ***vectors);
|
|
gboolean gimp_vectors_export_to_file (GimpImage *image,
|
|
GFile *file,
|
|
GimpVectors *vectors);
|
|
gchar* gimp_vectors_export_to_string (GimpImage *image,
|
|
GimpVectors *vectors);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GIMP_VECTORS_PDB_H__ */
|