This commit completely removes the "Edit -> Fade..." feature, because... - The main reason is that "fade" requires us to keep two buffers, instead of one, for each fadeable undo step, doubling (or worse, since the extra buffer might have higher precision than the drawable) the space consumed by these steps. This has notable impact when editing large images. This overhead is incurred even when not actually using "fade", and since it seems to be very rarely used, this is too wasteful. - "Fade" is broken in 2.10: when comitting a filter, we copy the cached parts of the result into the apply buffer. However, the result cache sits after the mode node, while the apply buffer should contain the result of the filter *before* the mode node, which can lead to wrong results in the general case. - The same behavior can be trivially achieved "manually", by duplicating the layer, editing the duplicate, and changing its opacity/mode. - If we really want this feature, now that most filters are GEGL ops, it makes more sense to just add opacity/mode options to the filter tool, instead of having this be a separate step.
212 lines
7 KiB
C
212 lines
7 KiB
C
/* GIMP - The GNU 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 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gegl.h>
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
#include "core-types.h"
|
|
|
|
#include "operations/layer-modes/gimp-layer-modes.h"
|
|
|
|
#include "gegl/gimp-gegl-loops.h"
|
|
|
|
#include "gimpchannel.h"
|
|
#include "gimpdrawable.h"
|
|
#include "gimpdrawable-edit.h"
|
|
#include "gimpcontext.h"
|
|
#include "gimpfilloptions.h"
|
|
#include "gimpimage.h"
|
|
#include "gimppattern.h"
|
|
#include "gimptempbuf.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
static gboolean gimp_drawable_edit_can_fill_direct (GimpDrawable *drawable,
|
|
GimpFillOptions *options);
|
|
static void gimp_drawable_edit_fill_direct (GimpDrawable *drawable,
|
|
GimpFillOptions *options,
|
|
const gchar *undo_desc);
|
|
|
|
|
|
/* private functions */
|
|
|
|
static gboolean
|
|
gimp_drawable_edit_can_fill_direct (GimpDrawable *drawable,
|
|
GimpFillOptions *options)
|
|
{
|
|
GimpImage *image;
|
|
GimpContext *context;
|
|
gdouble opacity;
|
|
GimpComponentMask affect;
|
|
GimpLayerMode mode;
|
|
GimpLayerCompositeMode composite_mode;
|
|
GimpLayerCompositeRegion composite_region;
|
|
|
|
image = gimp_item_get_image (GIMP_ITEM (drawable));
|
|
context = GIMP_CONTEXT (options);
|
|
opacity = gimp_context_get_opacity (context);
|
|
affect = gimp_drawable_get_active_mask (drawable);
|
|
mode = gimp_context_get_paint_mode (context);
|
|
composite_mode = gimp_layer_mode_get_paint_composite_mode (mode);
|
|
composite_region = gimp_layer_mode_get_included_region (mode, composite_mode);
|
|
|
|
if (gimp_channel_is_empty (gimp_image_get_mask (image)) &&
|
|
opacity == GIMP_OPACITY_OPAQUE &&
|
|
affect == GIMP_COMPONENT_MASK_ALL &&
|
|
gimp_layer_mode_is_trivial (mode) &&
|
|
(! gimp_layer_mode_is_subtractive (mode) ^
|
|
! (composite_region & GIMP_LAYER_COMPOSITE_REGION_SOURCE)))
|
|
{
|
|
switch (gimp_fill_options_get_style (options))
|
|
{
|
|
case GIMP_FILL_STYLE_SOLID:
|
|
return TRUE;
|
|
|
|
case GIMP_FILL_STYLE_PATTERN:
|
|
{
|
|
GimpPattern *pattern;
|
|
GimpTempBuf *mask;
|
|
const Babl *format;
|
|
|
|
pattern = gimp_context_get_pattern (context);
|
|
mask = gimp_pattern_get_mask (pattern);
|
|
format = gimp_temp_buf_get_format (mask);
|
|
|
|
return ! babl_format_has_alpha (format);
|
|
}
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gimp_drawable_edit_fill_direct (GimpDrawable *drawable,
|
|
GimpFillOptions *options,
|
|
const gchar *undo_desc)
|
|
{
|
|
GeglBuffer *buffer;
|
|
GimpContext *context;
|
|
GimpLayerMode mode;
|
|
gint width;
|
|
gint height;
|
|
|
|
buffer = gimp_drawable_get_buffer (drawable);
|
|
context = GIMP_CONTEXT (options);
|
|
mode = gimp_context_get_paint_mode (context);
|
|
width = gimp_item_get_width (GIMP_ITEM (drawable));
|
|
height = gimp_item_get_height (GIMP_ITEM (drawable));
|
|
|
|
gimp_drawable_push_undo (drawable, undo_desc,
|
|
NULL, 0, 0, width, height);
|
|
|
|
if (! gimp_layer_mode_is_subtractive (mode))
|
|
gimp_fill_options_fill_buffer (options, drawable, buffer, 0, 0);
|
|
else
|
|
gimp_gegl_clear (buffer, NULL);
|
|
}
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
gimp_drawable_edit_clear (GimpDrawable *drawable,
|
|
GimpContext *context)
|
|
{
|
|
GimpFillOptions *options;
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
g_return_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)));
|
|
g_return_if_fail (GIMP_IS_CONTEXT (context));
|
|
|
|
options = gimp_fill_options_new (context->gimp, NULL, FALSE);
|
|
|
|
if (gimp_drawable_has_alpha (drawable))
|
|
gimp_fill_options_set_by_fill_type (options, context,
|
|
GIMP_FILL_TRANSPARENT, NULL);
|
|
else
|
|
gimp_fill_options_set_by_fill_type (options, context,
|
|
GIMP_FILL_BACKGROUND, NULL);
|
|
|
|
gimp_drawable_edit_fill (drawable, options, C_("undo-type", "Clear"));
|
|
|
|
g_object_unref (options);
|
|
}
|
|
|
|
void
|
|
gimp_drawable_edit_fill (GimpDrawable *drawable,
|
|
GimpFillOptions *options,
|
|
const gchar *undo_desc)
|
|
{
|
|
gint x, y, width, height;
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
g_return_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)));
|
|
g_return_if_fail (GIMP_IS_FILL_OPTIONS (options));
|
|
|
|
if (! gimp_item_mask_intersect (GIMP_ITEM (drawable),
|
|
&x, &y, &width, &height))
|
|
{
|
|
return; /* nothing to do, but the fill succeeded */
|
|
}
|
|
|
|
if (! undo_desc)
|
|
undo_desc = gimp_fill_options_get_undo_desc (options);
|
|
|
|
/* check if we can fill the drawable's buffer directly */
|
|
if (gimp_drawable_edit_can_fill_direct (drawable, options))
|
|
{
|
|
gimp_drawable_edit_fill_direct (drawable, options, undo_desc);
|
|
}
|
|
else
|
|
{
|
|
GeglBuffer *buffer;
|
|
GimpContext *context;
|
|
gdouble opacity;
|
|
GimpLayerMode mode;
|
|
GimpLayerMode composite_mode;
|
|
|
|
context = GIMP_CONTEXT (options);
|
|
opacity = gimp_context_get_opacity (context);
|
|
mode = gimp_context_get_paint_mode (context);
|
|
composite_mode = gimp_layer_mode_get_paint_composite_mode (mode);
|
|
|
|
buffer = gimp_fill_options_create_buffer (options, drawable,
|
|
GEGL_RECTANGLE (0, 0,
|
|
width, height),
|
|
-x, -y);
|
|
|
|
gimp_drawable_apply_buffer (drawable, buffer,
|
|
GEGL_RECTANGLE (0, 0, width, height),
|
|
TRUE, undo_desc,
|
|
opacity,
|
|
mode,
|
|
GIMP_LAYER_COLOR_SPACE_AUTO,
|
|
GIMP_LAYER_COLOR_SPACE_AUTO,
|
|
composite_mode,
|
|
NULL, x, y);
|
|
|
|
g_object_unref (buffer);
|
|
}
|
|
|
|
gimp_drawable_update (drawable, x, y, width, height);
|
|
}
|