gimp/app/text/gimptext-parasite.c
Sven Neumann c0ebe2a8a3 app/text/Makefile.am new files that load and save text layers to/from XCF.
2003-10-27  Sven Neumann  <sven@gimp.org>

	* app/text/Makefile.am
	* app/text/gimptextlayer-xcf.[ch]: new files that load and save
	text layers to/from XCF.

	* app/xcf/xcf-load.c
	* app/xcf/xcf-save.c
	* app/text/gimptextlayer.c: removed that code here and use the new
	functions instead.

	* app/text/gimptext-parasite.[ch] (gimp_text_from_parasite): added
	a GError parameter.

	* app/text/gimptextlayer.[ch]: store the name of the parasite that
	the text layer was created from (if read from XCF). Remove the
	parasite when the text layer is edited. If a text layer wasn't
	touched, the original parasite is written back to the XCF file.

	* app/text/gimptextlayout.c (gimp_text_layout_new): handle a NULL
	text string.

	* app/tools/gimptextoptions.c: implement GimpToolOptions::reset
	and save the text across a reset.
2003-10-27 21:50:41 +00:00

202 lines
5.4 KiB
C

/* The GIMP -- an 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 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <string.h>
#include <stdlib.h>
#include <glib-object.h>
#include "libgimpbase/gimpbase.h"
#include "libgimpcolor/gimpcolor.h"
#include "text/text-types.h"
#include "config/gimpconfig.h"
#include "gimptext.h"
#include "gimptext-parasite.h"
#include "gimptext-xlfd.h"
#include "gimp-intl.h"
/****************************************/
/* The native GimpTextLayer parasite. */
/****************************************/
const gchar *
gimp_text_parasite_name (void)
{
return "gimp-text-layer";
}
GimpParasite *
gimp_text_to_parasite (const GimpText *text)
{
GimpParasite *parasite;
gchar *str;
g_return_val_if_fail (GIMP_IS_TEXT (text), NULL);
str = gimp_config_serialize_to_string (GIMP_CONFIG (text), NULL);
g_return_val_if_fail (str != NULL, NULL);
parasite = gimp_parasite_new (gimp_text_parasite_name (),
GIMP_PARASITE_PERSISTENT,
strlen (str) + 1, str);
g_free (str);
return parasite;
}
GimpText *
gimp_text_from_parasite (const GimpParasite *parasite,
GError **error)
{
GimpText *text;
const gchar *str;
g_return_val_if_fail (parasite != NULL, FALSE);
g_return_val_if_fail (strcmp (gimp_parasite_name (parasite),
gimp_text_parasite_name ()) == 0, FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
str = gimp_parasite_data (parasite);
g_return_val_if_fail (str != NULL, FALSE);
text = g_object_new (GIMP_TYPE_TEXT, NULL);
gimp_config_deserialize_string (GIMP_CONFIG (text),
str,
gimp_parasite_data_size (parasite),
NULL,
error);
return text;
}
/****************************************************************/
/* Compatibility to plug-in GDynText 1.4.4 and later versions */
/* GDynText was written by Marco Lamberto <lm@geocities.com> */
/****************************************************************/
const gchar *
gimp_text_gdyntext_parasite_name (void)
{
return "plug_in_gdyntext/data";
}
enum
{
TEXT = 0,
ANTIALIAS = 1,
ALIGNMENT = 2,
ROTATION = 3,
LINE_SPACING = 4,
COLOR = 5,
LAYER_ALIGNMENT = 6,
XLFD = 7,
NUM_PARAMS
};
GimpText *
gimp_text_from_gdyntext_parasite (const GimpParasite *parasite)
{
GimpText *retval = NULL;
GimpTextJustification justify;
const gchar *str;
gchar *text = NULL;
gchar **params;
gboolean antialias;
gdouble spacing;
GimpRGB rgb;
glong color;
gint i;
g_return_val_if_fail (parasite != NULL, NULL);
g_return_val_if_fail (strcmp (gimp_parasite_name (parasite),
gimp_text_gdyntext_parasite_name ()) == 0,
NULL);
str = gimp_parasite_data (parasite);
g_return_val_if_fail (str != NULL, NULL);
if (strncmp (str, "GDT10{", 6) != 0) /* magic value */
return NULL;
params = g_strsplit (str + 6, "}{", -1);
/* first check that we have the required number of parameters */
for (i = 0; i < NUM_PARAMS; i++)
if (!params[i])
goto cleanup;
text = g_strcompress (params[TEXT]);
if (! g_utf8_validate (text, -1, NULL))
{
gchar *utf8_str;
utf8_str = g_locale_to_utf8 (text, -1, NULL, NULL, NULL);
g_free (text);
if (utf8_str)
text = utf8_str;
else
text = g_strdup (_("(invalid UTF-8 string)"));
}
antialias = atoi (params[ANTIALIAS]) ? TRUE : FALSE;
switch (atoi (params[ALIGNMENT]))
{
default:
case 0: justify = GIMP_TEXT_JUSTIFY_LEFT; break;
case 1: justify = GIMP_TEXT_JUSTIFY_CENTER; break;
case 2: justify = GIMP_TEXT_JUSTIFY_RIGHT; break;
}
spacing = atof (params[LINE_SPACING]);
color = strtol (params[COLOR], NULL, 16);
gimp_rgba_set_uchar (&rgb, color >> 16, color >> 8, color, 255);
retval = g_object_new (GIMP_TYPE_TEXT,
"text", text,
"antialias", antialias,
"justify", justify,
"line-spacing", spacing,
"color", &rgb,
NULL);
gimp_text_set_font_from_xlfd (GIMP_TEXT (retval), params[XLFD]);
cleanup:
g_free (text);
g_strfreev (params);
return retval;
}