
2001-04-04 Kjartan Maraas <kmaraas@gnome.org> * gal/e-text/e-entry.c: Fix headers. * gal/e-text/e-table-text-model.[ch]: Ditto. * gal/e-text/e-table-text-model-uri.c: Ditto. * gal/e-text/e-text-model-uri.[ch]: Ditto. * gal/e-text/e-text-model.[ch]: Ditto. * gal/e-text/e-text.[ch]: Ditto. * gal/util/e-text-event-processor-emacs-like.[ch]: Ditto. * gal/util/e-text-event-processor.[ch]: Same. * gal/util/e-util.h: Ditto. * gal/util/e-xml-utils.[ch]: Same here. * gal/widgets/color-group.[ch]: Ditto. * gal/widgets/color-palette.[ch]: Ditto. * gal/widgets/e-canvas-utils.h: Ditto. * gal/widgets/e-canvas-vbox.[ch]: Ditto. * gal/widgets/e-canvas.[ch]: Ditto. * gal/widgets/e-categories.h: Ditto. * gal/widgets/e-colors.[ch]: Ditto. * gal/widgets/e-cursors.c: Ditto. * gal/widgets/e-gui-utils.c: Ditto * gal/widgets/e-popup-menu.[ch]: Same. * gal/widgets/e-reflow-sorted.c: Same. * gal/widgets/e-reflow.[ch]: Same. * gal/widgets/e-selection-model.c: Same * gal/widgets/e-unicode.[ch]: Same. * gal/widgets/gtk-combo-stack.[ch]: Same. * gal/widgets/widget-color-combo.[ch]: Same. * gal/widgets/widget-pixmap-combo.[ch]: Same. svn path=/trunk/; revision=9168
96 lines
5.2 KiB
C
96 lines
5.2 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* e-xml-utils.h
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
* Author: Chris Lahey <clahey@helixcode.com>
|
|
*
|
|
* This library 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 library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __E_XML_UTILS__
|
|
#define __E_XML_UTILS__
|
|
|
|
#include <libgnome/gnome-defs.h>
|
|
#include <glib.h>
|
|
#include <gnome-xml/tree.h>
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
xmlNode *e_xml_get_child_by_name (const xmlNode *parent,
|
|
const xmlChar *child_name);
|
|
/* lang set to NULL means use the current locale. */
|
|
xmlNode *e_xml_get_child_by_name_by_lang (const xmlNode *parent,
|
|
const xmlChar *child_name,
|
|
const gchar *lang);
|
|
/* lang_list set to NULL means use the current locale. */
|
|
xmlNode *e_xml_get_child_by_name_by_lang_list (const xmlNode *parent,
|
|
const gchar *name,
|
|
GList *lang_list);
|
|
xmlNode *e_xml_get_child_by_name_no_lang (const xmlNode *parent,
|
|
const gchar *name);
|
|
|
|
gint e_xml_get_integer_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
gint e_xml_get_integer_prop_by_name_with_default (const xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gint def);
|
|
void e_xml_set_integer_prop_by_name (xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gint value);
|
|
|
|
guint e_xml_get_uint_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
guint e_xml_get_uint_prop_by_name_with_default (const xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
guint def);
|
|
void e_xml_set_uint_prop_by_name (xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
guint value);
|
|
|
|
gboolean e_xml_get_bool_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
gboolean e_xml_get_bool_prop_by_name_with_default (const xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gboolean def);
|
|
void e_xml_set_bool_prop_by_name (xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gboolean value);
|
|
|
|
gdouble e_xml_get_double_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
gdouble e_xml_get_double_prop_by_name_with_default (const xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gdouble def);
|
|
void e_xml_set_double_prop_by_name ( xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
gdouble value);
|
|
|
|
gchar *e_xml_get_string_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
gchar *e_xml_get_string_prop_by_name_with_default (const xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
const gchar *def);
|
|
void e_xml_set_string_prop_by_name (xmlNode *parent,
|
|
const xmlChar *prop_name,
|
|
const gchar *value);
|
|
|
|
gchar *e_xml_get_translated_string_prop_by_name (const xmlNode *parent,
|
|
const xmlChar *prop_name);
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* __E_XML_UTILS__ */
|