Fixing: > GIMP-CRITICAL: gimp_image_undo_push_rasterizable: assertion 'gimp_item_is_attached (GIMP_ITEM (rasterizable))' failed … when loading the XCF from #14131.
174 lines
5.1 KiB
C
174 lines
5.1 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* GimpText
|
|
* Copyright (C) 2003 Sven Neumann <sven@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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
#include <gegl.h>
|
|
#include <cairo.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
#include "text-types.h"
|
|
|
|
#include "core/gimp.h"
|
|
#include "core/gimpdrawable-private.h" /* eek */
|
|
#include "core/gimpimage.h"
|
|
#include "core/gimplayer-xcf.h"
|
|
#include "core/gimpparasitelist.h"
|
|
#include "core/gimprasterizable.h"
|
|
|
|
#include "gimptext.h"
|
|
#include "gimptext-parasite.h"
|
|
#include "gimptextlayer.h"
|
|
#include "gimptextlayer-xcf.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
enum
|
|
{
|
|
TEXT_LAYER_XCF_NONE = 0,
|
|
TEXT_LAYER_XCF_DONT_AUTO_RENAME = 1 << 0,
|
|
TEXT_LAYER_XCF_MODIFIED = 1 << 1
|
|
};
|
|
|
|
|
|
gboolean
|
|
gimp_text_layer_xcf_load_hack (GimpLayer **layer)
|
|
{
|
|
const gchar *name;
|
|
GimpText *text = NULL;
|
|
const GimpParasite *parasite;
|
|
gboolean before_xcf_v19 = FALSE;
|
|
|
|
g_return_val_if_fail (layer != NULL, FALSE);
|
|
g_return_val_if_fail (GIMP_IS_LAYER (*layer), FALSE);
|
|
|
|
name = gimp_text_parasite_name ();
|
|
parasite = gimp_item_parasite_find (GIMP_ITEM (*layer), name);
|
|
|
|
if (parasite)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
text = gimp_text_from_parasite (parasite,
|
|
gimp_item_get_image (GIMP_ITEM (*layer))->gimp,
|
|
&before_xcf_v19,
|
|
&error);
|
|
|
|
if (error)
|
|
{
|
|
gimp_message (gimp_item_get_image (GIMP_ITEM (*layer))->gimp, NULL,
|
|
GIMP_MESSAGE_ERROR,
|
|
_("Problems parsing the text parasite for layer '%s':\n"
|
|
"%s\n\n"
|
|
"Some text properties may be wrong. "
|
|
"Unless you want to edit the text layer, "
|
|
"you don't need to worry about this."),
|
|
gimp_object_get_name (*layer),
|
|
error->message);
|
|
g_clear_error (&error);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
name = gimp_text_gdyntext_parasite_name ();
|
|
|
|
parasite = gimp_item_parasite_find (GIMP_ITEM (*layer), name);
|
|
|
|
if (parasite)
|
|
{
|
|
text = gimp_text_from_gdyntext_parasite (gimp_item_get_image (GIMP_ITEM (*layer))->gimp,
|
|
parasite);
|
|
before_xcf_v19 = TRUE;
|
|
}
|
|
}
|
|
|
|
if (text)
|
|
{
|
|
*layer = gimp_layer_from_layer (*layer, GIMP_TYPE_TEXT_LAYER,
|
|
"image", gimp_item_get_image (GIMP_ITEM (*layer)),
|
|
NULL);
|
|
gimp_text_layer_set_text (GIMP_TEXT_LAYER (*layer), text);
|
|
g_object_unref (text);
|
|
|
|
/* let the text layer knows what parasite was used to create it */
|
|
GIMP_TEXT_LAYER (*layer)->text_parasite = name;
|
|
GIMP_TEXT_LAYER (*layer)->text_parasite_is_old = before_xcf_v19;
|
|
}
|
|
|
|
return (text != NULL);
|
|
}
|
|
|
|
void
|
|
gimp_text_layer_xcf_save_prepare (GimpTextLayer *layer)
|
|
{
|
|
GimpText *text;
|
|
|
|
g_return_if_fail (GIMP_IS_TEXT_LAYER (layer));
|
|
|
|
/* If the layer has a text parasite already, it wasn't changed and we
|
|
* can simply save the original parasite back which is still attached.
|
|
*/
|
|
if (layer->text_parasite)
|
|
return;
|
|
|
|
text = gimp_text_layer_get_text (layer);
|
|
if (text)
|
|
{
|
|
GimpParasite *parasite = gimp_text_to_parasite (text);
|
|
|
|
/* Don't push an undo because the parasite only exists temporarily
|
|
* while the text layer is saved to XCF.
|
|
*/
|
|
gimp_item_parasite_attach (GIMP_ITEM (layer), parasite, FALSE);
|
|
|
|
gimp_parasite_free (parasite);
|
|
}
|
|
}
|
|
|
|
guint32
|
|
gimp_text_layer_get_xcf_flags (GimpTextLayer *text_layer)
|
|
{
|
|
guint flags = 0;
|
|
|
|
g_return_val_if_fail (GIMP_IS_TEXT_LAYER (text_layer), 0);
|
|
|
|
if (! gimp_rasterizable_get_auto_rename (GIMP_RASTERIZABLE (text_layer)))
|
|
flags |= TEXT_LAYER_XCF_DONT_AUTO_RENAME;
|
|
|
|
if (gimp_rasterizable_is_rasterized (GIMP_RASTERIZABLE (text_layer)))
|
|
flags |= TEXT_LAYER_XCF_MODIFIED;
|
|
|
|
return flags;
|
|
}
|
|
|
|
void
|
|
gimp_text_layer_set_xcf_flags (GimpTextLayer *text_layer,
|
|
guint32 flags)
|
|
{
|
|
g_return_if_fail (GIMP_IS_TEXT_LAYER (text_layer));
|
|
|
|
gimp_rasterizable_set_auto_rename (GIMP_RASTERIZABLE (text_layer),
|
|
(flags & TEXT_LAYER_XCF_DONT_AUTO_RENAME) == 0);
|
|
|
|
if ((flags & TEXT_LAYER_XCF_MODIFIED) != 0)
|
|
gimp_rasterizable_rasterize (GIMP_RASTERIZABLE (text_layer), FALSE);
|
|
}
|