1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2000-03-21 11:19:11 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
#include <glib-object.h>
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
#include "base/boundary.h"
|
|
|
|
#include "base/pixel-region.h"
|
|
|
|
#include "base/tile-manager.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-04-07 23:58:26 +08:00
|
|
|
#include "paint-funcs/paint-funcs.h"
|
|
|
|
|
2003-08-30 21:22:20 +08:00
|
|
|
#include "gimp.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimpchannel.h"
|
2003-08-30 21:22:20 +08:00
|
|
|
#include "gimpcontainer.h"
|
2001-08-14 22:53:55 +08:00
|
|
|
#include "gimpcontext.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "gimpimage.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "gimpimage-mask.h"
|
2003-02-13 19:23:50 +08:00
|
|
|
#include "gimpimage-undo.h"
|
2003-02-14 22:14:29 +08:00
|
|
|
#include "gimpimage-undo-push.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimplayer.h"
|
2002-02-22 06:19:45 +08:00
|
|
|
#include "gimplayer-floating-sel.h"
|
2001-01-29 00:44:22 +08:00
|
|
|
#include "gimplayermask.h"
|
2003-09-03 07:07:40 +08:00
|
|
|
#include "gimpselection.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2000-04-28 01:27:28 +08:00
|
|
|
|
|
|
|
|
include the new "paint-funcs/paint-funcs-types.h".
2001-11-28 Michael Natterer <mitch@gimp.org>
* app/base/base-types.h: include the new
"paint-funcs/paint-funcs-types.h".
* app/paint-funcs/Makefile.am
* app/paint-funcs/paint-funcs-types.h: new file. Includes
"base/base-types.h".
* app/paint-funcs/paint-funcs.[ch]: removed the enums here,
include "paint-funcs-types.h".
* app/widgets/widgets-types.h: include "display/display-types.h"
* app/display/display-types.h: include "widgets/widgets-types.h".
* app/tools/tools-types.h: include "display/display-types.h"
* app/gui/gui-types.h: include "tools/tools-types.h".
The order of namespaces/dependencies should be (but is not):
(base, paint-funcs) -> (core, file, xcf, pdb) ->
(widgets, display) -> tools -> gui
* app/path.c: include "tools/tools-types.h".
* app/core/Makefile.am
* app/core/gimpimage-guides.[ch]
* app/core/gimpimage-merge.[ch]
* app/core/gimpimage-resize.[ch]
* app/core/gimpimage-scale.[ch]: new files.
* app/core/gimpimage.[ch]: removed the stuff which is in the new
files. Reordered all functions in both the .h and .c files,
commented the groups of functions.
* app/core/gimpcontainer.c: create the handler_id using a counter,
not the address of a pointer, because the address *may* be the
same twice, added debugging output.
* app/core/gimpviewable.[ch]: added primitive support for getting
a preview GdkPixbuf.
* app/nav_window.c
* app/undo.c
* app/undo_history.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage-mask.[ch]
* app/display/gimpdisplay.c
* app/display/gimpdisplayshell-callbacks.c
* app/display/gimpdisplayshell-dnd.c
* app/display/gimpdisplayshell-render.c
* app/display/gimpdisplayshell-scale.c
* app/display/gimpdisplayshell-scroll.c
* app/gui/image-commands.c
* app/gui/info-window.c
* app/gui/layers-commands.c
* app/gui/palette-import-dialog.c
* app/tools/gimpbycolorselecttool.c
* app/tools/gimpeditselectiontool.c
* app/tools/gimpmeasuretool.c
* app/tools/gimpmovetool.c
* app/widgets/gimpcontainerview-utils.c
* app/xcf/xcf-load.c: changed accordingly, some cleanup.
* tools/pdbgen/pdb/guides.pdb
* tools/pdbgen/pdb/image.pdb: changed accordingly, reordered functions.
* app/plug_in.c: set the labels of the "Repeat" and "Re-Show" menu
items to the name of the last plug-in (Fixes #50986).
* app/display/gimpdisplayshell.[ch]: set the labels of "Undo" and
"Redo" to the resp. undo names. Much simplified the WM icon stuff
by removing most code and using gimp_viewable_get_new_preview_pixbuf().
* app/widgets/gimpbrushfactoryview.c: forgot to assign the GQuark
returned by gimp_container_add_handler().
* app/pdb/guides_cmds.c
* app/pdb/image_cmds.c
* libgimp/gimpimage_pdb.[ch]: regenerated.
2001-11-29 01:51:06 +08:00
|
|
|
/* public functions */
|
|
|
|
|
2000-03-21 11:19:11 +08:00
|
|
|
gboolean
|
2003-08-30 22:25:05 +08:00
|
|
|
gimp_image_mask_boundary (GimpImage *gimage,
|
|
|
|
const BoundSeg **segs_in,
|
|
|
|
const BoundSeg **segs_out,
|
|
|
|
gint *num_segs_in,
|
|
|
|
gint *num_segs_out)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-10-22 20:13:44 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), FALSE);
|
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
return gimp_channel_boundary (gimp_image_get_mask (gimage),
|
|
|
|
segs_in, segs_out,
|
|
|
|
num_segs_in, num_segs_out,
|
|
|
|
0, 0, 0, 0);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_mask_bounds (GimpImage *gimage,
|
|
|
|
gint *x1,
|
|
|
|
gint *y1,
|
|
|
|
gint *x2,
|
|
|
|
gint *y2)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
return gimp_channel_bounds (gimp_image_get_mask (gimage), x1, y1, x2, y2);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
void
|
|
|
|
gimp_image_mask_push_undo (GimpImage *gimage,
|
|
|
|
const gchar *undo_desc)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
|
|
|
removed the feather(), sharpen(), all(), invert(), border(), grow() and
2003-09-03 Michael Natterer <mitch@gimp.org>
* app/core/gimpimage-mask.[ch]: removed the feather(), sharpen(),
all(), invert(), border(), grow() and shrink() wrappers.
* app/core/gimpselection.[ch]: changed gimp_selection_invalidate()
and gimp_selection_push_undo() to take GimpChannel parameters, not
GimpSelection ones. They will be made virtual GimpChannel
functions anyway.
* app/core/gimpedit.c
* app/gui/select-commands.c
* app/widgets/gimpselectioneditor.c
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
* app/pdb/selection_cmds.c: regenerated.
2003-09-03 21:37:49 +08:00
|
|
|
gimp_selection_push_undo (gimp_image_get_mask (gimage),
|
2003-09-03 07:07:40 +08:00
|
|
|
undo_desc);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
void
|
|
|
|
gimp_image_mask_invalidate (GimpImage *gimage)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2003-09-03 07:07:40 +08:00
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
|
|
|
removed the feather(), sharpen(), all(), invert(), border(), grow() and
2003-09-03 Michael Natterer <mitch@gimp.org>
* app/core/gimpimage-mask.[ch]: removed the feather(), sharpen(),
all(), invert(), border(), grow() and shrink() wrappers.
* app/core/gimpselection.[ch]: changed gimp_selection_invalidate()
and gimp_selection_push_undo() to take GimpChannel parameters, not
GimpSelection ones. They will be made virtual GimpChannel
functions anyway.
* app/core/gimpedit.c
* app/gui/select-commands.c
* app/widgets/gimpselectioneditor.c
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
* app/pdb/selection_cmds.c: regenerated.
2003-09-03 21:37:49 +08:00
|
|
|
gimp_selection_invalidate (gimp_image_get_mask (gimage));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-03 07:07:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
TileManager *
|
2001-11-29 06:42:19 +08:00
|
|
|
gimp_image_mask_extract (GimpImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
2003-05-16 20:10:47 +08:00
|
|
|
gboolean cut_image,
|
2001-11-29 06:42:19 +08:00
|
|
|
gboolean keep_indexed,
|
|
|
|
gboolean add_alpha)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-12-14 23:30:31 +08:00
|
|
|
TileManager *tiles;
|
|
|
|
GimpChannel *sel_mask;
|
|
|
|
PixelRegion srcPR, destPR, maskPR;
|
2003-05-13 20:48:18 +08:00
|
|
|
guchar bg_color[MAX_CHANNELS];
|
2001-12-14 23:30:31 +08:00
|
|
|
GimpImageBaseType base_type = GIMP_RGB;
|
|
|
|
gint bytes = 0;
|
2003-05-13 20:48:18 +08:00
|
|
|
gint x1, y1, x2, y2;
|
2001-12-14 23:30:31 +08:00
|
|
|
gint off_x, off_y;
|
|
|
|
gboolean non_empty;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), NULL);
|
2001-12-17 21:18:19 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* If there are no bounds, then just extract the entire image
|
|
|
|
* This may not be the correct behavior, but after getting rid
|
|
|
|
* of floating selections, it's still tempting to "cut" or "copy"
|
|
|
|
* a small layer and expect it to work, even though there is no
|
|
|
|
* actual selection mask
|
|
|
|
*/
|
2001-01-15 05:11:52 +08:00
|
|
|
non_empty = gimp_drawable_mask_bounds (drawable, &x1, &y1, &x2, &y2);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (non_empty && (!(x2 - x1) || !(y2 - y1)))
|
|
|
|
{
|
2001-11-16 20:23:01 +08:00
|
|
|
g_message (_("Unable to cut or copy because the\n"
|
|
|
|
"selected region is empty."));
|
1997-11-25 06:05:25 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* How many bytes in the temp buffer? */
|
2001-12-14 23:30:31 +08:00
|
|
|
switch (GIMP_IMAGE_TYPE_BASE_TYPE (gimp_drawable_type (drawable)))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-12-14 23:30:31 +08:00
|
|
|
case GIMP_RGB:
|
2000-03-27 02:39:03 +08:00
|
|
|
bytes = add_alpha ? 4 : drawable->bytes;
|
2001-12-14 23:30:31 +08:00
|
|
|
base_type = GIMP_RGB;
|
2000-03-27 02:39:03 +08:00
|
|
|
break;
|
2001-12-14 23:30:31 +08:00
|
|
|
|
|
|
|
case GIMP_GRAY:
|
2000-03-27 02:39:03 +08:00
|
|
|
bytes = add_alpha ? 2 : drawable->bytes;
|
2001-12-14 23:30:31 +08:00
|
|
|
base_type = GIMP_GRAY;
|
2000-03-27 02:39:03 +08:00
|
|
|
break;
|
2001-12-14 23:30:31 +08:00
|
|
|
|
|
|
|
case GIMP_INDEXED:
|
1997-11-25 06:05:25 +08:00
|
|
|
if (keep_indexed)
|
|
|
|
{
|
2000-03-27 02:39:03 +08:00
|
|
|
bytes = add_alpha ? 2 : drawable->bytes;
|
2001-12-14 23:30:31 +08:00
|
|
|
base_type = GIMP_GRAY;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-03-27 02:39:03 +08:00
|
|
|
bytes = add_alpha ? 4 : drawable->bytes;
|
2001-12-14 23:30:31 +08:00
|
|
|
base_type = GIMP_INDEXED;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
break;
|
2001-12-14 23:30:31 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
default:
|
2001-12-14 23:30:31 +08:00
|
|
|
g_assert_not_reached ();
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the selection mask */
|
|
|
|
if (non_empty)
|
2000-12-29 23:22:01 +08:00
|
|
|
sel_mask = gimp_image_get_mask (gimage);
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
|
|
|
sel_mask = NULL;
|
|
|
|
|
2003-05-13 20:48:18 +08:00
|
|
|
gimp_image_get_background (gimage, drawable, bg_color);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-03 03:46:59 +08:00
|
|
|
/* If a cut was specified, and the selection mask is not empty,
|
|
|
|
* push an undo
|
|
|
|
*/
|
2003-05-16 20:10:47 +08:00
|
|
|
if (cut_image && non_empty)
|
2003-02-14 22:14:29 +08:00
|
|
|
gimp_drawable_push_undo (drawable, NULL, x1, y1, x2, y2, NULL, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-05-08 22:06:03 +08:00
|
|
|
gimp_item_offsets (GIMP_ITEM (drawable), &off_x, &off_y);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Allocate the temp buffer */
|
2003-05-13 20:48:18 +08:00
|
|
|
tiles = tile_manager_new (x2 - x1, y2 - y1, bytes);
|
2001-01-23 21:01:48 +08:00
|
|
|
tile_manager_set_offsets (tiles, x1 + off_x, y1 + off_y);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* configure the pixel regions */
|
2001-01-15 05:11:52 +08:00
|
|
|
pixel_region_init (&srcPR, gimp_drawable_data (drawable),
|
2003-05-13 20:48:18 +08:00
|
|
|
x1, y1,
|
|
|
|
x2 - x1, y2 - y1,
|
2003-05-16 20:10:47 +08:00
|
|
|
cut_image);
|
2003-05-13 20:48:18 +08:00
|
|
|
pixel_region_init (&destPR, tiles,
|
|
|
|
0, 0,
|
|
|
|
x2 - x1, y2 - y1,
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
if (non_empty) /* If there is a selection, extract from it */
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-12-14 23:30:31 +08:00
|
|
|
pixel_region_init (&maskPR, GIMP_DRAWABLE (sel_mask)->tiles,
|
1999-04-03 03:46:59 +08:00
|
|
|
(x1 + off_x), (y1 + off_y), (x2 - x1), (y2 - y1),
|
|
|
|
FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-01-15 05:11:52 +08:00
|
|
|
extract_from_region (&srcPR, &destPR, &maskPR,
|
|
|
|
gimp_drawable_cmap (drawable),
|
2003-05-13 20:48:18 +08:00
|
|
|
bg_color, base_type,
|
2003-05-16 20:10:47 +08:00
|
|
|
gimp_drawable_has_alpha (drawable), cut_image);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-05-16 20:10:47 +08:00
|
|
|
if (cut_image)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
/* Clear the region */
|
2003-09-03 22:22:38 +08:00
|
|
|
gimp_channel_clear (sel_mask, NULL, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Update the region */
|
2001-08-14 22:53:55 +08:00
|
|
|
gimp_image_update (gimage,
|
|
|
|
x1 + off_x, y1 + off_y,
|
|
|
|
(x2 - x1), (y2 - y1));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Invalidate the preview */
|
2001-02-05 06:10:54 +08:00
|
|
|
gimp_viewable_invalidate_preview (GIMP_VIEWABLE (drawable));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
2003-05-13 20:48:18 +08:00
|
|
|
else /* Otherwise, get the entire active layer */
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
/* If the layer is indexed...we need to extract pixels */
|
2001-12-14 23:30:31 +08:00
|
|
|
if (base_type == GIMP_INDEXED && !keep_indexed)
|
2001-01-15 05:11:52 +08:00
|
|
|
extract_from_region (&srcPR, &destPR, NULL,
|
|
|
|
gimp_drawable_cmap (drawable),
|
2003-05-13 20:48:18 +08:00
|
|
|
bg_color, base_type,
|
2001-01-15 05:11:52 +08:00
|
|
|
gimp_drawable_has_alpha (drawable), FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
/* If the layer doesn't have an alpha channel, add one */
|
|
|
|
else if (bytes > srcPR.bytes)
|
|
|
|
add_alpha_region (&srcPR, &destPR);
|
|
|
|
/* Otherwise, do a straight copy */
|
|
|
|
else
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
|
|
|
|
/* If we're cutting, remove either the layer (or floating selection),
|
|
|
|
* the layer mask, or the channel
|
|
|
|
*/
|
2003-05-16 20:10:47 +08:00
|
|
|
if (cut_image)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-06-21 04:34:11 +08:00
|
|
|
if (GIMP_IS_LAYER (drawable))
|
|
|
|
{
|
|
|
|
if (gimp_layer_is_floating_sel (GIMP_LAYER (drawable)))
|
|
|
|
floating_sel_remove (GIMP_LAYER (drawable));
|
|
|
|
else
|
|
|
|
gimp_image_remove_layer (gimage, GIMP_LAYER (drawable));
|
|
|
|
}
|
|
|
|
else if (GIMP_IS_LAYER_MASK (drawable))
|
|
|
|
{
|
|
|
|
gimp_layer_apply_mask (gimp_layer_mask_get_layer (GIMP_LAYER_MASK (drawable)),
|
2002-03-18 19:07:34 +08:00
|
|
|
GIMP_MASK_DISCARD, TRUE);
|
2001-06-21 04:34:11 +08:00
|
|
|
}
|
|
|
|
else if (GIMP_IS_CHANNEL (drawable))
|
|
|
|
{
|
|
|
|
gimp_image_remove_channel (gimage, GIMP_CHANNEL (drawable));
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tiles;
|
|
|
|
}
|
|
|
|
|
2001-01-29 07:25:25 +08:00
|
|
|
GimpLayer *
|
2001-11-29 06:42:19 +08:00
|
|
|
gimp_image_mask_float (GimpImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
2003-05-16 20:10:47 +08:00
|
|
|
gboolean cut_image,
|
2001-11-29 06:42:19 +08:00
|
|
|
gint off_x, /* optional offset */
|
|
|
|
gint off_y)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-01-29 07:25:25 +08:00
|
|
|
GimpLayer *layer;
|
2001-01-29 10:45:02 +08:00
|
|
|
GimpChannel *mask = gimp_image_get_mask (gimage);
|
2000-12-29 23:22:01 +08:00
|
|
|
TileManager *tiles;
|
|
|
|
gboolean non_empty;
|
|
|
|
gint x1, y1;
|
|
|
|
gint x2, y2;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Make sure there is a region to float... */
|
2001-01-15 05:11:52 +08:00
|
|
|
non_empty = gimp_drawable_mask_bounds ( (drawable), &x1, &y1, &x2, &y2);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (! non_empty || (x2 - x1) == 0 || (y2 - y1) == 0)
|
|
|
|
{
|
2002-10-18 23:16:05 +08:00
|
|
|
g_message (_("Cannot float selection because the\n"
|
|
|
|
"selected region is empty."));
|
1997-11-25 06:05:25 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start an undo group */
|
2003-02-13 19:23:50 +08:00
|
|
|
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_FS_FLOAT,
|
|
|
|
_("Float Selection"));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-05-16 20:10:47 +08:00
|
|
|
/* Cut or copy the selected region */
|
|
|
|
tiles = gimp_image_mask_extract (gimage, drawable, cut_image, FALSE, TRUE);
|
|
|
|
|
|
|
|
/* Clear the selection as if we had cut the pixels */
|
|
|
|
if (! cut_image)
|
2003-09-03 22:22:38 +08:00
|
|
|
gimp_channel_clear (mask, NULL, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-08-28 04:06:40 +08:00
|
|
|
/* Create a new layer from the buffer, using the drawable's type
|
|
|
|
* because it may be different from the image's type if we cut from
|
|
|
|
* a channel or layer mask
|
|
|
|
*/
|
2002-02-26 01:58:50 +08:00
|
|
|
layer = gimp_layer_new_from_tiles (tiles,
|
|
|
|
gimage,
|
2002-08-28 04:06:40 +08:00
|
|
|
gimp_drawable_type_with_alpha (drawable),
|
2001-05-08 09:32:25 +08:00
|
|
|
_("Floating Selection"),
|
2002-03-04 22:52:54 +08:00
|
|
|
GIMP_OPACITY_OPAQUE, GIMP_NORMAL_MODE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Set the offsets */
|
2001-01-23 21:01:48 +08:00
|
|
|
tile_manager_get_offsets (tiles, &x1, &y1);
|
2003-05-08 19:52:31 +08:00
|
|
|
GIMP_ITEM (layer)->offset_x = x1 + off_x;
|
|
|
|
GIMP_ITEM (layer)->offset_y = y1 + off_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Free the temp buffer */
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (tiles);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Add the floating layer to the gimage */
|
1998-01-22 15:02:57 +08:00
|
|
|
floating_sel_attach (layer, drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* End an undo group */
|
2003-02-13 19:23:50 +08:00
|
|
|
gimp_image_undo_group_end (gimage);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* invalidate the gimage's boundary variables */
|
|
|
|
mask->boundary_known = FALSE;
|
|
|
|
|
|
|
|
return layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-08-21 23:54:47 +08:00
|
|
|
gimp_image_mask_load (GimpImage *gimage,
|
|
|
|
GimpChannel *channel)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2002-08-20 18:22:23 +08:00
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
2003-08-21 23:54:47 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHANNEL (channel));
|
2002-08-20 18:22:23 +08:00
|
|
|
|
2003-08-21 23:54:47 +08:00
|
|
|
gimp_image_mask_push_undo (gimage, _("Selection from Channel"));
|
2002-08-20 18:22:23 +08:00
|
|
|
|
2003-08-21 23:54:47 +08:00
|
|
|
/* load the specified channel to the gimage mask */
|
|
|
|
gimp_channel_load (gimp_image_get_mask (gimage), channel, FALSE);
|
2002-08-20 18:22:23 +08:00
|
|
|
|
2003-08-21 23:54:47 +08:00
|
|
|
gimp_image_mask_changed (gimage);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-01-29 10:45:02 +08:00
|
|
|
GimpChannel *
|
2001-11-29 06:42:19 +08:00
|
|
|
gimp_image_mask_save (GimpImage *gimage)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2002-08-20 18:22:23 +08:00
|
|
|
GimpChannel *mask;
|
2001-01-29 10:45:02 +08:00
|
|
|
GimpChannel *new_channel;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-08-20 18:22:23 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), NULL);
|
|
|
|
|
|
|
|
mask = gimp_image_get_mask (gimage);
|
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
new_channel = GIMP_CHANNEL (gimp_item_duplicate (GIMP_ITEM (mask),
|
2003-09-03 07:07:40 +08:00
|
|
|
GIMP_TYPE_CHANNEL,
|
2003-02-11 21:52:47 +08:00
|
|
|
FALSE));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* saved selections are not visible by default */
|
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
|
|
|
gimp_drawable_set_visible (GIMP_DRAWABLE (new_channel), FALSE, FALSE);
|
2001-03-05 00:52:37 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
gimp_image_add_channel (gimage, new_channel, -1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return new_channel;
|
|
|
|
}
|