2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-25 06:05:25 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-25 06:05:25 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-01-29 00:44:22 +08:00
|
|
|
#ifndef __GIMP_LAYER_H__
|
|
|
|
#define __GIMP_LAYER_H__
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "gimpdrawable.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2001-01-29 00:44:22 +08:00
|
|
|
#define GIMP_TYPE_LAYER (gimp_layer_get_type ())
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
#define GIMP_LAYER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_LAYER, GimpLayer))
|
|
|
|
#define GIMP_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_LAYER, GimpLayerClass))
|
|
|
|
#define GIMP_IS_LAYER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_LAYER))
|
|
|
|
#define GIMP_IS_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_LAYER))
|
2001-08-11 22:39:19 +08:00
|
|
|
#define GIMP_LAYER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_LAYER, GimpLayerClass))
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-29 07:25:25 +08:00
|
|
|
typedef struct _GimpLayerClass GimpLayerClass;
|
2000-12-31 13:31:43 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
struct _GimpLayer
|
|
|
|
{
|
2001-12-09 07:12:59 +08:00
|
|
|
GimpDrawable parent_instance;
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2002-03-04 22:52:54 +08:00
|
|
|
gdouble opacity; /* layer opacity */
|
2001-12-09 07:12:59 +08:00
|
|
|
GimpLayerModeEffects mode; /* layer combination mode */
|
2005-07-11 05:17:22 +08:00
|
|
|
gboolean lock_alpha; /* lock the alpha channel */
|
2001-12-03 21:44:59 +08:00
|
|
|
|
2001-12-09 07:12:59 +08:00
|
|
|
GimpLayerMask *mask; /* possible layer mask */
|
2012-03-18 01:30:13 +08:00
|
|
|
gboolean apply_mask; /* controls mask application */
|
|
|
|
gboolean edit_mask; /* edit mask or layer? */
|
|
|
|
gboolean show_mask; /* show mask or layer? */
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2012-05-17 01:45:18 +08:00
|
|
|
GeglNode *layer_offset_node;
|
|
|
|
GeglNode *mask_offset_node;
|
2008-10-10 04:44:23 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
/* Floating selections */
|
|
|
|
struct
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpDrawable *drawable; /* floating sel is attached to */
|
2001-12-03 21:44:59 +08:00
|
|
|
gboolean boundary_known; /* is the current boundary valid */
|
2012-03-19 22:04:20 +08:00
|
|
|
GimpBoundSeg *segs; /* boundary of floating sel */
|
2001-12-03 21:44:59 +08:00
|
|
|
gint num_segs; /* number of segs in boundary */
|
2000-12-29 23:22:01 +08:00
|
|
|
} fs;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpLayerClass
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpDrawableClass parent_class;
|
2001-03-05 04:06:48 +08:00
|
|
|
|
2005-07-11 05:17:22 +08:00
|
|
|
void (* opacity_changed) (GimpLayer *layer);
|
|
|
|
void (* mode_changed) (GimpLayer *layer);
|
|
|
|
void (* lock_alpha_changed) (GimpLayer *layer);
|
|
|
|
void (* mask_changed) (GimpLayer *layer);
|
2012-03-18 01:30:13 +08:00
|
|
|
void (* apply_mask_changed) (GimpLayer *layer);
|
|
|
|
void (* edit_mask_changed) (GimpLayer *layer);
|
|
|
|
void (* show_mask_changed) (GimpLayer *layer);
|
2000-12-29 23:22:01 +08:00
|
|
|
};
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-01-29 00:44:22 +08:00
|
|
|
/* function declarations */
|
1998-01-22 15:02:57 +08:00
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
GType gimp_layer_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2006-03-29 01:08:36 +08:00
|
|
|
GimpLayer * gimp_layer_new (GimpImage *image,
|
2001-12-13 07:48:18 +08:00
|
|
|
gint width,
|
|
|
|
gint height,
|
2012-03-22 03:21:11 +08:00
|
|
|
const Babl *format,
|
2001-12-13 07:48:18 +08:00
|
|
|
const gchar *name,
|
2002-03-04 22:52:54 +08:00
|
|
|
gdouble opacity,
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpLayerModeEffects mode);
|
|
|
|
|
2012-03-15 04:36:42 +08:00
|
|
|
GimpLayer * gimp_layer_new_from_buffer (GeglBuffer *buffer,
|
|
|
|
GimpImage *dest_image,
|
2012-03-22 03:21:11 +08:00
|
|
|
const Babl *format,
|
2012-03-15 04:36:42 +08:00
|
|
|
const gchar *name,
|
|
|
|
gdouble opacity,
|
|
|
|
GimpLayerModeEffects mode);
|
2005-04-10 01:56:04 +08:00
|
|
|
GimpLayer * gimp_layer_new_from_pixbuf (GdkPixbuf *pixbuf,
|
2006-03-29 01:08:36 +08:00
|
|
|
GimpImage *dest_image,
|
2012-03-22 03:21:11 +08:00
|
|
|
const Babl *format,
|
2005-04-10 01:56:04 +08:00
|
|
|
const gchar *name,
|
|
|
|
gdouble opacity,
|
|
|
|
GimpLayerModeEffects mode);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2010-02-07 19:03:07 +08:00
|
|
|
GimpLayer * gimp_layer_get_parent (GimpLayer *layer);
|
|
|
|
|
2009-07-31 00:59:12 +08:00
|
|
|
GimpLayerMask * gimp_layer_get_mask (const GimpLayer *layer);
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpLayerMask * gimp_layer_create_mask (const GimpLayer *layer,
|
2006-05-15 00:24:31 +08:00
|
|
|
GimpAddMaskType mask_type,
|
|
|
|
GimpChannel *channel);
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpLayerMask * gimp_layer_add_mask (GimpLayer *layer,
|
|
|
|
GimpLayerMask *mask,
|
2008-09-16 05:05:01 +08:00
|
|
|
gboolean push_undo,
|
|
|
|
GError **error);
|
2001-12-13 07:48:18 +08:00
|
|
|
void gimp_layer_apply_mask (GimpLayer *layer,
|
2002-03-18 19:07:34 +08:00
|
|
|
GimpMaskApplyMode mode,
|
2001-12-13 07:48:18 +08:00
|
|
|
gboolean push_undo);
|
2009-07-31 00:59:12 +08:00
|
|
|
|
2012-03-18 01:30:13 +08:00
|
|
|
void gimp_layer_set_apply_mask (GimpLayer *layer,
|
|
|
|
gboolean apply,
|
|
|
|
gboolean push_undo);
|
|
|
|
gboolean gimp_layer_get_apply_mask (const GimpLayer *layer);
|
|
|
|
|
|
|
|
void gimp_layer_set_edit_mask (GimpLayer *layer,
|
|
|
|
gboolean edit);
|
|
|
|
gboolean gimp_layer_get_edit_mask (const GimpLayer *layer);
|
|
|
|
|
|
|
|
void gimp_layer_set_show_mask (GimpLayer *layer,
|
|
|
|
gboolean show,
|
|
|
|
gboolean push_undo);
|
|
|
|
gboolean gimp_layer_get_show_mask (const GimpLayer *layer);
|
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
void gimp_layer_add_alpha (GimpLayer *layer);
|
2005-08-08 00:38:35 +08:00
|
|
|
void gimp_layer_flatten (GimpLayer *layer,
|
|
|
|
GimpContext *context);
|
2003-05-07 21:01:17 +08:00
|
|
|
|
2004-04-15 07:37:34 +08:00
|
|
|
void gimp_layer_resize_to_image (GimpLayer *layer,
|
|
|
|
GimpContext *context);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2009-02-01 18:22:22 +08:00
|
|
|
GimpDrawable * gimp_layer_get_floating_sel_drawable (const GimpLayer *layer);
|
2009-01-27 06:47:16 +08:00
|
|
|
void gimp_layer_set_floating_sel_drawable (GimpLayer *layer,
|
|
|
|
GimpDrawable *drawable);
|
2001-12-13 07:48:18 +08:00
|
|
|
gboolean gimp_layer_is_floating_sel (const GimpLayer *layer);
|
|
|
|
|
|
|
|
void gimp_layer_set_opacity (GimpLayer *layer,
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
gdouble opacity,
|
|
|
|
gboolean push_undo);
|
2001-12-13 07:48:18 +08:00
|
|
|
gdouble gimp_layer_get_opacity (const GimpLayer *layer);
|
|
|
|
|
2003-08-28 01:21:49 +08:00
|
|
|
void gimp_layer_set_mode (GimpLayer *layer,
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
GimpLayerModeEffects mode,
|
|
|
|
gboolean push_undo);
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpLayerModeEffects gimp_layer_get_mode (const GimpLayer *layer);
|
|
|
|
|
2005-07-11 05:17:22 +08:00
|
|
|
void gimp_layer_set_lock_alpha (GimpLayer *layer,
|
|
|
|
gboolean lock_alpha,
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
gboolean push_undo);
|
2005-07-11 05:17:22 +08:00
|
|
|
gboolean gimp_layer_get_lock_alpha (const GimpLayer *layer);
|
2009-08-24 00:44:05 +08:00
|
|
|
gboolean gimp_layer_can_lock_alpha (const GimpLayer *layer);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2001-01-29 00:44:22 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_LAYER_H__ */
|