mirror of https://github.com/GNOME/gimp.git
138 lines
5.9 KiB
C
138 lines
5.9 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpapplicator.h
|
|
* Copyright (C) 2012-2013 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GIMP_APPLICATOR_H__
|
|
#define __GIMP_APPLICATOR_H__
|
|
|
|
|
|
#define GIMP_TYPE_APPLICATOR (gimp_applicator_get_type ())
|
|
#define GIMP_APPLICATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_APPLICATOR, GimpApplicator))
|
|
#define GIMP_APPLICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_APPLICATOR, GimpApplicatorClass))
|
|
#define GIMP_IS_APPLICATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_APPLICATOR))
|
|
#define GIMP_IS_APPLICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_APPLICATOR))
|
|
#define GIMP_APPLICATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_APPLICATOR, GimpApplicatorClass))
|
|
|
|
|
|
typedef struct _GimpApplicatorClass GimpApplicatorClass;
|
|
|
|
struct _GimpApplicator
|
|
{
|
|
GObject parent_instance;
|
|
|
|
GeglNode *node;
|
|
GeglNode *input_node;
|
|
GeglNode *aux_node;
|
|
GeglNode *output_node;
|
|
|
|
GeglBuffer *apply_buffer;
|
|
GeglNode *apply_src_node;
|
|
|
|
gint apply_offset_x;
|
|
gint apply_offset_y;
|
|
GeglNode *apply_offset_node;
|
|
|
|
GeglNode *dup_apply_buffer_node;
|
|
|
|
gboolean preview_enabled;
|
|
GeglRectangle preview_rect;
|
|
GeglNode *preview_cache_node;
|
|
GeglNode *preview_crop_node;
|
|
|
|
gdouble opacity;
|
|
GimpLayerMode paint_mode;
|
|
GimpLayerColorSpace blend_space;
|
|
GimpLayerColorSpace composite_space;
|
|
GimpLayerCompositeMode composite_mode;
|
|
GeglNode *mode_node;
|
|
|
|
GimpComponentMask affect;
|
|
GeglNode *affect_node;
|
|
|
|
GeglNode *output_cache_node;
|
|
|
|
GeglBuffer *src_buffer;
|
|
GeglNode *src_node;
|
|
|
|
GeglBuffer *dest_buffer;
|
|
GeglNode *dest_node;
|
|
|
|
GeglBuffer *mask_buffer;
|
|
GeglNode *mask_node;
|
|
|
|
gint mask_offset_x;
|
|
gint mask_offset_y;
|
|
GeglNode *mask_offset_node;
|
|
};
|
|
|
|
struct _GimpApplicatorClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
|
|
GType gimp_applicator_get_type (void) G_GNUC_CONST;
|
|
|
|
GimpApplicator * gimp_applicator_new (GeglNode *parent,
|
|
gboolean use_split_preview,
|
|
gboolean use_result_cache);
|
|
|
|
void gimp_applicator_set_src_buffer (GimpApplicator *applicator,
|
|
GeglBuffer *dest_buffer);
|
|
void gimp_applicator_set_dest_buffer (GimpApplicator *applicator,
|
|
GeglBuffer *dest_buffer);
|
|
|
|
void gimp_applicator_set_mask_buffer (GimpApplicator *applicator,
|
|
GeglBuffer *mask_buffer);
|
|
void gimp_applicator_set_mask_offset (GimpApplicator *applicator,
|
|
gint mask_offset_x,
|
|
gint mask_offset_y);
|
|
|
|
void gimp_applicator_set_apply_buffer (GimpApplicator *applicator,
|
|
GeglBuffer *apply_buffer);
|
|
void gimp_applicator_set_apply_offset (GimpApplicator *applicator,
|
|
gint apply_offset_x,
|
|
gint apply_offset_y);
|
|
|
|
void gimp_applicator_set_opacity (GimpApplicator *applicator,
|
|
gdouble opacity);
|
|
void gimp_applicator_set_mode (GimpApplicator *applicator,
|
|
GimpLayerMode paint_mode,
|
|
GimpLayerColorSpace blend_space,
|
|
GimpLayerColorSpace composite_space,
|
|
GimpLayerCompositeMode composite_mode);
|
|
void gimp_applicator_set_affect (GimpApplicator *applicator,
|
|
GimpComponentMask affect);
|
|
|
|
void gimp_applicator_set_preview (GimpApplicator *applicator,
|
|
gboolean enable,
|
|
const GeglRectangle *rect);
|
|
|
|
void gimp_applicator_blit (GimpApplicator *applicator,
|
|
const GeglRectangle *rect);
|
|
|
|
GeglBuffer * gimp_applicator_dup_apply_buffer (GimpApplicator *applicator,
|
|
const GeglRectangle *rect);
|
|
GeglBuffer * gimp_applicator_get_cache_buffer (GimpApplicator *applicator,
|
|
GeglRectangle **rectangles,
|
|
gint *n_rectangles);
|
|
|
|
|
|
#endif /* __GIMP_APPLICATOR_H__ */
|