medit/moo/mooedit/gtksourceview/upstream/gtksourcestylescheme.c
2007-07-03 01:18:24 -05:00

1070 lines
26 KiB
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*-
* gtksourcestylescheme.c
*
* Copyright (C) 2003 - Paolo Maggi <paolo.maggi@polito.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "gtksourceview-i18n.h"
#include "gtksourcestylemanager.h"
#include "gtksourceview.h"
#include "gtksourcelanguage-private.h"
#include "gtksourcestyle-private.h"
#include <libxml/parser.h>
#include <string.h>
#define STYLE_TEXT "text"
#define STYLE_SELECTED "text-selected"
#define STYLE_BRACKET_MATCH "bracket-match"
#define STYLE_BRACKET_MISMATCH "bracket-mismatch"
#define STYLE_CURSOR "cursor"
#define STYLE_SECONDARY_CURSOR "secondary-cursor"
#define STYLE_CURRENT_LINE "current-line"
#define STYLE_LINE_NUMBERS "line-numbers"
#define STYLE_SCHEME_VERSION "1.0"
static const gchar *get_color_by_name (GtkSourceStyleScheme *scheme,
const gchar *name);
enum {
PROP_0,
PROP_ID,
PROP_NAME
};
struct _GtkSourceStyleSchemePrivate
{
gchar *id;
gchar *name;
gchar *author;
gchar *description;
GtkSourceStyleScheme *parent;
gchar *parent_id;
GHashTable *defined_styles;
GHashTable *style_cache;
GHashTable *named_colors;
};
G_DEFINE_TYPE (GtkSourceStyleScheme, gtk_source_style_scheme, G_TYPE_OBJECT)
static void
gtk_source_style_scheme_finalize (GObject *object)
{
GtkSourceStyleScheme *scheme = GTK_SOURCE_STYLE_SCHEME (object);
g_hash_table_destroy (scheme->priv->named_colors);
g_hash_table_destroy (scheme->priv->style_cache);
g_hash_table_destroy (scheme->priv->defined_styles);
g_free (scheme->priv->author);
g_free (scheme->priv->description);
g_free (scheme->priv->id);
g_free (scheme->priv->name);
g_free (scheme->priv->parent_id);
if (scheme->priv->parent != NULL)
g_object_unref (scheme->priv->parent);
G_OBJECT_CLASS (gtk_source_style_scheme_parent_class)->finalize (object);
}
static void
gtk_source_style_scheme_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
char *tmp;
GtkSourceStyleScheme *scheme = GTK_SOURCE_STYLE_SCHEME (object);
switch (prop_id)
{
case PROP_ID:
tmp = scheme->priv->id;
scheme->priv->id = g_value_dup_string (value);
g_free (tmp);
break;
case PROP_NAME:
tmp = scheme->priv->name;
scheme->priv->name = g_value_dup_string (value);
g_free (tmp);
g_object_notify (object, "name");
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_style_scheme_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GtkSourceStyleScheme *scheme = GTK_SOURCE_STYLE_SCHEME (object);
switch (prop_id)
{
case PROP_ID:
g_value_set_string (value, scheme->priv->id);
break;
case PROP_NAME:
g_value_set_string (value, scheme->priv->name);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_style_scheme_class_init (GtkSourceStyleSchemeClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = gtk_source_style_scheme_finalize;
object_class->set_property = gtk_source_style_scheme_set_property;
object_class->get_property = gtk_source_style_scheme_get_property;
/**
* GtkSourceStyleScheme:id:
*
* Style scheme id, a unique string used to identify the style scheme
* in #GtkSourceStyleManager.
*
* Since: 2.0
*/
g_object_class_install_property (object_class,
PROP_ID,
g_param_spec_string ("id",
_("Style scheme id"),
_("Style scheme id"),
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
/**
* GtkSourceStyleScheme:name:
*
* Style scheme name, a translatable string to present to user.
*
* Since: 2.0
*/
g_object_class_install_property (object_class,
PROP_NAME,
g_param_spec_string ("name",
_("Style scheme name"),
_("Style scheme name"),
NULL,
G_PARAM_READWRITE));
g_type_class_add_private (object_class, sizeof (GtkSourceStyleSchemePrivate));
}
static void
unref_if_not_null (gpointer object)
{
if (object != NULL)
g_object_unref (object);
}
static void
gtk_source_style_scheme_init (GtkSourceStyleScheme *scheme)
{
scheme->priv = G_TYPE_INSTANCE_GET_PRIVATE (scheme, GTK_TYPE_SOURCE_STYLE_SCHEME,
GtkSourceStyleSchemePrivate);
scheme->priv->defined_styles = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, g_object_unref);
scheme->priv->style_cache = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, unref_if_not_null);
scheme->priv->named_colors = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, g_free);
}
/**
* gtk_source_style_scheme_get_id:
* @scheme: a #GtkSourceStyleScheme.
*
* Returns: @scheme id.
*
* Since: 2.0
*/
const gchar *
gtk_source_style_scheme_get_id (GtkSourceStyleScheme *scheme)
{
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
g_return_val_if_fail (scheme->priv->id != NULL, "");
return scheme->priv->id;
}
/**
* gtk_source_style_scheme_get_name:
* @scheme: a #GtkSourceStyleScheme.
*
* Returns: @scheme name.
*
* Since: 2.0
*/
const gchar *
gtk_source_style_scheme_get_name (GtkSourceStyleScheme *scheme)
{
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
g_return_val_if_fail (scheme->priv->name != NULL, "");
return scheme->priv->name;
}
/**
* _gtk_source_style_scheme_new:
* @id: scheme id.
* @name: scheme name.
*
* Returns: new empty #GtkSourceStyleScheme.
*
* Since: 2.0
*/
GtkSourceStyleScheme *
_gtk_source_style_scheme_new (const gchar *id,
const gchar *name)
{
GtkSourceStyleScheme *scheme;
g_return_val_if_fail (id != NULL, NULL);
g_return_val_if_fail (name != NULL, NULL);
scheme = g_object_new (GTK_TYPE_SOURCE_STYLE_SCHEME,
"id", id, "name", name, NULL);
return scheme;
}
static GtkSourceStyle *
fix_style_colors (GtkSourceStyleScheme *scheme,
GtkSourceStyle *real_style)
{
GtkSourceStyle *style;
style = gtk_source_style_copy (real_style);
if (style->mask & GTK_SOURCE_STYLE_USE_BACKGROUND)
{
const gchar *color = get_color_by_name (scheme, style->background);
if (color == NULL)
/* warning is spit out in get_color_by_name,
* here we make sure style doesn't have NULL color */
style->mask &= ~GTK_SOURCE_STYLE_USE_BACKGROUND;
else
style->background = g_intern_string (color);
}
if (style->mask & GTK_SOURCE_STYLE_USE_FOREGROUND)
{
const gchar *color = get_color_by_name (scheme, style->foreground);
if (color == NULL)
style->mask &= ~GTK_SOURCE_STYLE_USE_FOREGROUND;
else
style->foreground = g_intern_string (color);
}
return style;
}
/**
* gtk_source_style_scheme_get_style:
* @scheme: a #GtkSourceStyleScheme.
* @style_name: style name to find.
*
* Returns: style which corresponds to @style_name in the @scheme,
* or %NULL when no style with this name found. It is owned by @sheme
* and may not be unref'ed.
*
* Since: 2.0
*/
/*
* It's a little weird because we have named colors: styles loaded from
* scheme file can have "#red" or "blue", and we want to give out styles
* which have nice colors suitable for gdk_color_parse(), so that GtkSourceStyle
* foreground and background properties are the same as GtkTextTag's.
* So, defined_styles hash has named colors; styles returned with get_style()
* have real colors.
*/
GtkSourceStyle *
gtk_source_style_scheme_get_style (GtkSourceStyleScheme *scheme,
const gchar *style_name)
{
GtkSourceStyle *style = NULL;
GtkSourceStyle *real_style;
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
g_return_val_if_fail (style_name != NULL, NULL);
if (g_hash_table_lookup_extended (scheme->priv->style_cache, style_name,
NULL, (gpointer *) &style))
return style;
real_style = g_hash_table_lookup (scheme->priv->defined_styles, style_name);
if (real_style == NULL)
{
if (scheme->priv->parent != NULL)
style = gtk_source_style_scheme_get_style (scheme->priv->parent,
style_name);
if (style != NULL)
g_object_ref (style);
}
else
{
style = fix_style_colors (scheme, real_style);
}
g_hash_table_insert (scheme->priv->style_cache, g_strdup (style_name), style);
return style;
}
/**
* get_color_by_name:
* @scheme: a #GtkSourceStyleScheme.
* @name: color name to find.
*
* Returns: color which corresponds to @name in the @scheme.
* Returned value is actual color string suitable for gdk_color_parse().
* It may be @name or part of @name so copy it or something, if you need
* it to stay around.
*
* Since: 2.0
*/
static const gchar *
get_color_by_name (GtkSourceStyleScheme *scheme,
const gchar *name)
{
const char *color = NULL;
g_return_val_if_fail (name != NULL, NULL);
if (name[0] == '#')
{
GdkColor dummy;
if (gdk_color_parse (name + 1, &dummy))
color = name + 1;
else if (gdk_color_parse (name, &dummy))
color = name;
else
g_warning ("could not parse color '%s'", name);
}
else
{
color = g_hash_table_lookup (scheme->priv->named_colors, name);
if (color == NULL && scheme->priv->parent != NULL)
color = get_color_by_name (scheme->priv->parent, name);
if (color == NULL)
g_warning ("no color named '%s'", name);
}
return color;
}
#if 0
/**
* gtk_source_style_scheme_set_style:
* @scheme: a #GtkSourceStyleScheme.
* @name: style name.
* @style: style to set or %NULL.
*
* Since: 2.0
*/
void
gtk_source_style_scheme_set_style (GtkSourceStyleScheme *scheme,
const gchar *name,
const GtkSourceStyle *style)
{
g_return_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme));
g_return_if_fail (name != NULL);
if (style != NULL)
g_hash_table_insert (scheme->priv->styles, g_strdup (name),
gtk_source_style_copy (style));
else
g_hash_table_remove (scheme->priv->styles, name);
}
#endif
/**
* gtk_source_style_scheme_get_matching_brackets_style:
* @scheme: a #GtkSourceStyleScheme.
*
* Returns: style which corresponds to "bracket-match" name, to use
* in an editor. It is owned by @scheme and may not be unref'ed.
*
* Since: 2.0
*/
GtkSourceStyle *
gtk_source_style_scheme_get_matching_brackets_style (GtkSourceStyleScheme *scheme)
{
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
return gtk_source_style_scheme_get_style (scheme, STYLE_BRACKET_MATCH);
}
static gboolean
get_color (GtkSourceStyle *style,
gboolean foreground,
GdkColor *dest)
{
const gchar *color;
guint mask;
if (style == NULL)
return FALSE;
if (foreground)
{
color = style->foreground;
mask = GTK_SOURCE_STYLE_USE_FOREGROUND;
}
else
{
color = style->background;
mask = GTK_SOURCE_STYLE_USE_BACKGROUND;
}
if (style->mask & mask)
{
if (color == NULL || !gdk_color_parse (color, dest))
{
g_warning ("%s: invalid color '%s'", G_STRLOC,
color != NULL ? color : "(null)");
return FALSE;
}
return TRUE;
}
return FALSE;
}
/**
* gtk_source_style_scheme_get_current_line_color:
* @scheme: a #GtkSourceStyleScheme.
* @color: a #GdkColor structure to fill.
*
* Returns: %TRUE if @scheme has style for current line set, or %FALSE
* otherwise.
*
* Since: 2.0
*/
gboolean
gtk_source_style_scheme_get_current_line_color (GtkSourceStyleScheme *scheme,
GdkColor *color)
{
GtkSourceStyle *style;
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), FALSE);
g_return_val_if_fail (color != NULL, FALSE);
style = gtk_source_style_scheme_get_style (scheme, STYLE_CURRENT_LINE);
return get_color (style, FALSE, color);
}
static void
set_text_style (GtkWidget *widget,
GtkSourceStyle *style,
GtkStateType state)
{
GdkColor color;
GdkColor *color_ptr;
if (get_color (style, FALSE, &color))
color_ptr = &color;
else
color_ptr = NULL;
gtk_widget_modify_base (widget, state, color_ptr);
if (get_color (style, TRUE, &color))
color_ptr = &color;
else
color_ptr = NULL;
gtk_widget_modify_text (widget, state, color_ptr);
}
static void
set_line_numbers_style (GtkWidget *widget,
GtkSourceStyle *style)
{
gint i;
GdkColor *fg_ptr = NULL;
GdkColor *bg_ptr = NULL;
GdkColor fg;
GdkColor bg;
if (get_color (style, TRUE, &fg))
fg_ptr = &fg;
if (get_color (style, FALSE, &bg))
bg_ptr = &bg;
for (i = 0; i < 5; ++i)
{
gtk_widget_modify_fg (widget, i, fg_ptr);
gtk_widget_modify_bg (widget, i, bg_ptr);
}
}
static void
set_cursor_colors (GtkWidget *widget,
const GdkColor *primary,
const GdkColor *secondary)
{
#if !GTK_CHECK_VERSION(2,11,3)
char *rc_string;
char *widget_name;
widget_name = g_strdup_printf ("gtk-source-view-%p", (gpointer) widget);
rc_string = g_strdup_printf (
"style \"%p\"\n"
"{\n"
" GtkWidget::cursor-color = \"#%02x%02x%02x\"\n"
" GtkWidget::secondary-cursor-color = \"#%02x%02x%02x\"\n"
"}\n"
"widget \"*.%s\" style \"%p\"\n",
(gpointer) widget,
primary->red >> 8, primary->green >> 8, primary->blue >> 8,
secondary->red >> 8, secondary->green >> 8, secondary->blue >> 8,
widget_name,
(gpointer) widget
);
gtk_rc_parse_string (rc_string);
if (strcmp (widget_name, gtk_widget_get_name (widget)) != 0)
gtk_widget_set_name (widget, widget_name);
g_free (rc_string);
g_free (widget_name);
#else
gtk_widget_modify_cursor (widget, primary, secondary);
#endif
}
static void
unset_cursor_colors (GtkWidget *widget)
{
#if !GTK_CHECK_VERSION(2,11,3)
set_cursor_colors (widget,
&widget->style->text[GTK_STATE_NORMAL],
&widget->style->text_aa[GTK_STATE_NORMAL]);
#else
gtk_widget_modify_cursor (widget, NULL, NULL);
#endif
}
static void
update_cursor_colors (GtkWidget *widget,
GtkSourceStyle *style_primary,
GtkSourceStyle *style_secondary)
{
GdkColor primary_color, secondary_color;
GdkColor *primary = NULL, *secondary = NULL;
if (get_color (style_primary, TRUE, &primary_color))
primary = &primary_color;
if (get_color (style_secondary, TRUE, &secondary_color))
secondary = &secondary_color;
if (primary != NULL && secondary == NULL)
{
secondary_color = widget->style->base[GTK_STATE_NORMAL];
secondary_color.red = ((gint) secondary_color.red + primary->red) / 2;
secondary_color.green = ((gint) secondary_color.green + primary->green) / 2;
secondary_color.blue = ((gint) secondary_color.blue + primary->blue) / 2;
secondary = &secondary_color;
}
if (primary != NULL)
set_cursor_colors (widget, primary, secondary);
else
unset_cursor_colors (widget);
}
/**
* _gtk_source_style_scheme_apply:
* @scheme: a #GtkSourceStyleScheme or NULL.
* @widget: a #GtkWidget to apply styles to.
*
* Sets text colors from @scheme in the @widget.
*
* Since: 2.0
*/
void
_gtk_source_style_scheme_apply (GtkSourceStyleScheme *scheme,
GtkWidget *widget)
{
g_return_if_fail (!scheme || GTK_IS_SOURCE_STYLE_SCHEME (scheme));
g_return_if_fail (GTK_IS_WIDGET (widget));
if (scheme != NULL)
{
GtkSourceStyle *style, *style2;
gtk_widget_ensure_style (widget);
style = gtk_source_style_scheme_get_style (scheme, STYLE_TEXT);
set_text_style (widget, style, GTK_STATE_NORMAL);
set_text_style (widget, style, GTK_STATE_ACTIVE);
set_text_style (widget, style, GTK_STATE_PRELIGHT);
set_text_style (widget, style, GTK_STATE_INSENSITIVE);
style = gtk_source_style_scheme_get_style (scheme, STYLE_SELECTED);
set_text_style (widget, style, GTK_STATE_SELECTED);
style = gtk_source_style_scheme_get_style (scheme, STYLE_LINE_NUMBERS);
set_line_numbers_style (widget, style);
style = gtk_source_style_scheme_get_style (scheme, STYLE_CURSOR);
style2 = gtk_source_style_scheme_get_style (scheme, STYLE_SECONDARY_CURSOR);
update_cursor_colors (widget, style, style2);
}
else
{
set_text_style (widget, NULL, GTK_STATE_NORMAL);
set_text_style (widget, NULL, GTK_STATE_ACTIVE);
set_text_style (widget, NULL, GTK_STATE_PRELIGHT);
set_text_style (widget, NULL, GTK_STATE_INSENSITIVE);
set_text_style (widget, NULL, GTK_STATE_SELECTED);
set_line_numbers_style (widget, NULL);
unset_cursor_colors (widget);
}
}
/* --- PARSER ---------------------------------------------------------------- */
#define ERROR_QUARK (g_quark_from_static_string ("gtk-source-style-scheme-parser-error"))
static void
get_bool (xmlNode *node,
const char *propname,
guint *mask,
guint mask_value,
gboolean *value)
{
xmlChar *tmp = xmlGetProp (node, BAD_CAST propname);
if (tmp != NULL)
{
*mask |= mask_value;
*value = g_ascii_strcasecmp ((char*) tmp, "true") == 0 ||
g_ascii_strcasecmp ((char*) tmp, "yes") == 0 ||
g_ascii_strcasecmp ((char*) tmp, "1") == 0;
}
xmlFree (tmp);
}
static gboolean
parse_style (GtkSourceStyleScheme *scheme,
xmlNode *node,
gchar **style_name_p,
GtkSourceStyle **style_p,
GError **error)
{
GtkSourceStyle *use_style = NULL;
GtkSourceStyle *result = NULL;
xmlChar *fg = NULL, *bg = NULL;
gchar *style_name = NULL;
guint mask = 0;
gboolean bold = FALSE;
gboolean italic = FALSE;
gboolean underline = FALSE;
gboolean strikethrough = FALSE;
xmlChar *tmp;
tmp = xmlGetProp (node, BAD_CAST "name");
if (tmp == NULL)
{
g_set_error (error, ERROR_QUARK, 0, "name attribute missing");
return FALSE;
}
style_name = g_strdup ((char*) tmp);
xmlFree (tmp);
tmp = xmlGetProp (node, BAD_CAST "use-style");
if (tmp != NULL)
{
if (use_style != NULL)
{
g_set_error (error, ERROR_QUARK, 0,
"in style '%s': duplicated use-style attribute",
style_name);
g_free (style_name);
g_object_unref (use_style);
return FALSE;
}
use_style = gtk_source_style_scheme_get_style (scheme, (char*) tmp);
if (use_style == NULL)
{
g_set_error (error, ERROR_QUARK, 0,
"in style '%s': unknown style '%s'",
style_name, tmp);
g_free (style_name);
return FALSE;
}
g_object_ref (use_style);
}
xmlFree (tmp);
fg = xmlGetProp (node, BAD_CAST "foreground");
bg = xmlGetProp (node, BAD_CAST "background");
get_bool (node, "italic", &mask, GTK_SOURCE_STYLE_USE_ITALIC, &italic);
get_bool (node, "bold", &mask, GTK_SOURCE_STYLE_USE_BOLD, &bold);
get_bool (node, "underline", &mask, GTK_SOURCE_STYLE_USE_UNDERLINE, &underline);
get_bool (node, "strikethrough", &mask, GTK_SOURCE_STYLE_USE_STRIKETHROUGH, &strikethrough);
if (use_style)
{
if (fg != NULL || bg != NULL || mask != 0)
{
g_set_error (error, ERROR_QUARK, 0,
"in style '%s': style attributes used along with use-style",
style_name);
g_object_unref (use_style);
g_free (style_name);
xmlFree (fg);
xmlFree (bg);
return FALSE;
}
result = use_style;
use_style = NULL;
}
else
{
result = g_object_new (GTK_TYPE_SOURCE_STYLE, NULL);
result->mask = mask;
result->bold = bold;
result->italic = italic;
result->underline = underline;
result->strikethrough = strikethrough;
if (fg != NULL)
{
result->foreground = g_intern_string ((char*) fg);
result->mask |= GTK_SOURCE_STYLE_USE_FOREGROUND;
}
if (bg != NULL)
{
result->background = g_intern_string ((char*) bg);
result->mask |= GTK_SOURCE_STYLE_USE_BACKGROUND;
}
}
*style_p = result;
*style_name_p = style_name;
xmlFree (bg);
xmlFree (fg);
return TRUE;
}
static gboolean
parse_color (GtkSourceStyleScheme *scheme,
xmlNode *node,
GError **error)
{
xmlChar *name, *value;
gboolean result = FALSE;
name = xmlGetProp (node, BAD_CAST "name");
value = xmlGetProp (node, BAD_CAST "value");
if (name == NULL || name[0] == 0)
g_set_error (error, ERROR_QUARK, 0, "name attribute missing in 'color' tag");
else if (value == NULL)
g_set_error (error, ERROR_QUARK, 0, "value attribute missing in 'color' tag");
else if (value[0] != '#' || value[1] == 0)
g_set_error (error, ERROR_QUARK, 0, "value in 'color' tag is not of the form '#RGB' or '#name'");
else if (g_hash_table_lookup (scheme->priv->named_colors, name) != NULL)
g_set_error (error, ERROR_QUARK, 0, "duplicated color '%s'", name);
else
result = TRUE;
if (result)
g_hash_table_insert (scheme->priv->named_colors,
g_strdup ((char *) name),
g_strdup ((char *) value));
xmlFree (value);
xmlFree (name);
return result;
}
static gboolean
parse_style_scheme_child (GtkSourceStyleScheme *scheme,
xmlNode *node,
GError **error)
{
if (strcmp ((char*) node->name, "style") == 0)
{
GtkSourceStyle *style;
gchar *style_name;
if (!parse_style (scheme, node, &style_name, &style, error))
return FALSE;
g_hash_table_insert (scheme->priv->defined_styles, style_name, style);
}
else if (strcmp ((char*) node->name, "color") == 0)
{
if (!parse_color (scheme, node, error))
return FALSE;
}
else if (strcmp ((char*) node->name, "author") == 0)
{
xmlChar *tmp = xmlNodeGetContent (node);
scheme->priv->author = g_strdup ((char*) tmp);
xmlFree (tmp);
}
else if (strcmp ((char*) node->name, "description") == 0)
{
xmlChar *tmp = xmlNodeGetContent (node);
scheme->priv->description = g_strdup ((char*) tmp);
xmlFree (tmp);
}
else if (strcmp ((char*) node->name, "_description") == 0)
{
xmlChar *tmp = xmlNodeGetContent (node);
scheme->priv->description = g_strdup (_((char*) tmp));
xmlFree (tmp);
}
else
{
g_set_error (error, ERROR_QUARK, 0, "unknown node '%s'", node->name);
return FALSE;
}
return TRUE;
}
static void
parse_style_scheme_element (GtkSourceStyleScheme *scheme,
xmlNode *scheme_node,
GError **error)
{
xmlChar *tmp;
xmlNode *node;
if (strcmp ((char*) scheme_node->name, "style-scheme") != 0)
{
g_set_error (error, ERROR_QUARK, 0,
"unexpected element '%s'",
(char*) scheme_node->name);
return;
}
tmp = xmlGetProp (scheme_node, BAD_CAST "version");
if (tmp == NULL)
{
g_set_error (error, ERROR_QUARK, 0, "missing 'version' attribute");
return;
}
if (strcmp ((char*) tmp, STYLE_SCHEME_VERSION) != 0)
{
g_set_error (error, ERROR_QUARK, 0, "unsupported version '%s'", (char*) tmp);
xmlFree (tmp);
return;
}
xmlFree (tmp);
tmp = xmlGetProp (scheme_node, BAD_CAST "id");
if (tmp == NULL)
{
g_set_error (error, ERROR_QUARK, 0, "missing 'id' attribute");
return;
}
scheme->priv->id = g_strdup ((char*) tmp);
xmlFree (tmp);
tmp = xmlGetProp (scheme_node, BAD_CAST "_name");
if (tmp != NULL)
scheme->priv->name = g_strdup (_((char*) tmp));
else if ((tmp = xmlGetProp (scheme_node, BAD_CAST "name")) != NULL)
scheme->priv->name = g_strdup ((char*) tmp);
else
{
g_set_error (error, ERROR_QUARK, 0, "missing 'name' attribute");
return;
}
xmlFree (tmp);
tmp = xmlGetProp (scheme_node, BAD_CAST "parent-scheme");
if (tmp != NULL)
scheme->priv->parent_id = g_strdup ((char*) tmp);
xmlFree (tmp);
for (node = scheme_node->children; node != NULL; node = node->next)
if (node->type == XML_ELEMENT_NODE)
if (!parse_style_scheme_child (scheme, node, error))
return;
}
/**
* _gtk_source_style_scheme_new_from_file:
* @filename: file to parse.
*
* Returns: new #GtkSourceStyleScheme created from file, or
* %NULL on error.
*
* Since: 2.0
*/
GtkSourceStyleScheme *
_gtk_source_style_scheme_new_from_file (const gchar *filename)
{
char *text;
gsize text_len;
xmlDoc *doc;
xmlNode *node;
GError *error = NULL;
GtkSourceStyleScheme *scheme;
g_return_val_if_fail (filename != NULL, NULL);
if (!g_file_get_contents (filename, &text, &text_len, &error))
{
gchar *filename_utf8 = g_filename_display_name (filename);
g_warning ("could not load style scheme file '%s': %s",
filename_utf8, error->message);
g_free (filename_utf8);
g_error_free (error);
return NULL;
}
doc = xmlParseMemory (text, text_len);
if (!doc)
{
gchar *filename_utf8 = g_filename_display_name (filename);
g_warning ("could not parse scheme file '%s'", filename_utf8);
g_free (filename_utf8);
g_free (text);
return NULL;
}
node = xmlDocGetRootElement (doc);
if (node == NULL)
{
gchar *filename_utf8 = g_filename_display_name (filename);
g_warning ("could not load scheme file '%s': empty document", filename_utf8);
g_free (filename_utf8);
xmlFreeDoc (doc);
g_free (text);
return NULL;
}
scheme = g_object_new (GTK_TYPE_SOURCE_STYLE_SCHEME, NULL);
parse_style_scheme_element (scheme, node, &error);
if (error != NULL)
{
gchar *filename_utf8 = g_filename_display_name (filename);
g_warning ("could not load style scheme file '%s': %s",
filename_utf8, error->message);
g_free (filename_utf8);
g_error_free (error);
g_object_unref (scheme);
scheme = NULL;
}
xmlFreeDoc (doc);
g_free (text);
return scheme;
}
/**
* _gtk_source_style_scheme_get_parent_id:
* @scheme: a #GtkSourceStyleScheme.
*
* Returns: parent style scheme id or %NULL.
*
* Since: 2.0
*/
const gchar *
_gtk_source_style_scheme_get_parent_id (GtkSourceStyleScheme *scheme)
{
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
return scheme->priv->parent_id;
}
/**
* _gtk_source_style_scheme_set_parent:
* @scheme: a #GtkSourceStyleScheme.
* @parent_scheme: parent #GtkSourceStyleScheme for @scheme.
*
* Sets @parent_scheme as parent scheme for @scheme, @scheme will
* look for styles in @parent_scheme if it doesn't have style set
* for given name.
*
* Since: 2.0
*/
void
_gtk_source_style_scheme_set_parent (GtkSourceStyleScheme *scheme,
GtkSourceStyleScheme *parent_scheme)
{
g_return_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme));
g_return_if_fail (!parent_scheme || GTK_IS_SOURCE_STYLE_SCHEME (parent_scheme));
if (scheme->priv->parent != NULL)
g_object_unref (scheme->priv->parent);
if (parent_scheme)
g_object_ref (parent_scheme);
scheme->priv->parent = parent_scheme;
}
/**
* _gtk_source_style_scheme_get_default:
*
* Returns: default style scheme to be used when user didn't set
* style scheme explicitly.
*
* Since: 2.0
*/
GtkSourceStyleScheme *
_gtk_source_style_scheme_get_default (void)
{
GtkSourceStyleManager *manager;
manager = gtk_source_style_manager_get_default ();
return gtk_source_style_manager_get_scheme (manager, "gvim");
}