2006-08-26 04:46:29 -05:00
|
|
|
/* -*- 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 program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library 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 Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library 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 "gtksourceview-i18n.h"
|
|
|
|
#include "gtksourcestylescheme.h"
|
|
|
|
#include "gtksourceview.h"
|
|
|
|
#include "gtksourcelanguage-private.h"
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define STYLE_HAS_FOREGROUND(s) ((s) && ((s)->mask & GTK_SOURCE_STYLE_USE_FOREGROUND))
|
|
|
|
#define STYLE_HAS_BACKGROUND(s) ((s) && ((s)->mask & GTK_SOURCE_STYLE_USE_BACKGROUND))
|
|
|
|
|
|
|
|
#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"
|
2007-06-09 06:57:30 -05:00
|
|
|
#define STYLE_SECONDARY_CURSOR "secondary-cursor"
|
2006-08-26 04:46:29 -05:00
|
|
|
#define STYLE_CURRENT_LINE "current-line"
|
2007-06-09 06:57:30 -05:00
|
|
|
#define STYLE_LINE_NUMBERS "line-numbers"
|
2006-08-26 04:46:29 -05:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_ID,
|
|
|
|
PROP_NAME
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkSourceStyleSchemePrivate
|
|
|
|
{
|
2006-11-02 00:39:54 -06:00
|
|
|
gchar *id;
|
|
|
|
gchar *name;
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceStyleScheme *parent;
|
2006-11-02 00:39:54 -06:00
|
|
|
gchar *parent_id;
|
2006-08-26 04:46:29 -05:00
|
|
|
GHashTable *styles;
|
|
|
|
};
|
|
|
|
|
|
|
|
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->styles);
|
|
|
|
g_free (scheme->priv->id);
|
|
|
|
g_free (scheme->priv->name);
|
2006-11-02 00:39:54 -06:00
|
|
|
g_free (scheme->priv->parent_id);
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (scheme->priv->parent != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
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_strdup (g_value_get_string (value));
|
|
|
|
g_free (tmp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_NAME:
|
|
|
|
tmp = scheme->priv->name;
|
|
|
|
scheme->priv->name = g_strdup (g_value_get_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;
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* GtkSourceStyleScheme:id:
|
|
|
|
*
|
|
|
|
* Style scheme id, a unique string used to identify the style scheme
|
|
|
|
* in #GtkSourceStyleManager.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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));
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* GtkSourceStyleScheme:name:
|
|
|
|
*
|
|
|
|
* Style scheme name, a translatable string to present to user.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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
|
|
|
|
gtk_source_style_scheme_init (GtkSourceStyleScheme *scheme)
|
|
|
|
{
|
|
|
|
scheme->priv = G_TYPE_INSTANCE_GET_PRIVATE (scheme, GTK_TYPE_SOURCE_STYLE_SCHEME,
|
|
|
|
GtkSourceStyleSchemePrivate);
|
|
|
|
scheme->priv->styles = g_hash_table_new_full (g_str_hash, g_str_equal, g_free,
|
|
|
|
(GDestroyNotify) gtk_source_style_free);
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* gtk_source_style_scheme_get_id:
|
|
|
|
* @scheme: a #GtkSourceStyleScheme.
|
|
|
|
*
|
|
|
|
* Returns: @scheme id.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* gtk_source_style_scheme_get_name:
|
|
|
|
* @scheme: a #GtkSourceStyleScheme.
|
|
|
|
*
|
|
|
|
* Returns: @scheme name.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _gtk_source_style_scheme_new:
|
|
|
|
* @id: scheme id.
|
|
|
|
* @name: scheme name.
|
|
|
|
*
|
|
|
|
* Returns: new empty #GtkSourceStyleScheme.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceStyleScheme *
|
2006-11-02 00:39:54 -06:00
|
|
|
_gtk_source_style_scheme_new (const gchar *id,
|
|
|
|
const gchar *name)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* 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. Free it with
|
|
|
|
* gtk_source_style_free().
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceStyle *
|
|
|
|
gtk_source_style_scheme_get_style (GtkSourceStyleScheme *scheme,
|
|
|
|
const gchar *style_name)
|
|
|
|
{
|
|
|
|
GtkSourceStyle *style = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SOURCE_STYLE_SCHEME (scheme), NULL);
|
|
|
|
g_return_val_if_fail (style_name != NULL, NULL);
|
|
|
|
|
|
|
|
style = g_hash_table_lookup (scheme->priv->styles, style_name);
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (style != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
return gtk_source_style_copy (style);
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (scheme->priv->parent != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
return gtk_source_style_scheme_get_style (scheme->priv->parent,
|
|
|
|
style_name);
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* gtk_source_style_scheme_set_style:
|
|
|
|
* @scheme: a #GtkSourceStyleScheme.
|
|
|
|
* @name: style name.
|
|
|
|
* @style: style to set or %NULL.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* gtk_source_style_scheme_get_matching_brackets_style:
|
|
|
|
* @scheme: a #GtkSourceStyleScheme.
|
|
|
|
*
|
|
|
|
* Returns: style which corresponds to "bracket-match" name, to use
|
|
|
|
* in an editor. Free it with gtk_source_style_free().
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
gboolean
|
|
|
|
gtk_source_style_scheme_get_current_line_color (GtkSourceStyleScheme *scheme,
|
|
|
|
GdkColor *color)
|
|
|
|
{
|
|
|
|
GtkSourceStyle *style;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (STYLE_HAS_FOREGROUND (style))
|
|
|
|
{
|
|
|
|
*color = style->foreground;
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_source_style_free (style);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_text_style (GtkWidget *widget,
|
|
|
|
GtkSourceStyle *style,
|
|
|
|
GtkStateType state)
|
|
|
|
{
|
|
|
|
GdkColor *color;
|
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
if (style != NULL && STYLE_HAS_BACKGROUND (style))
|
2006-08-26 04:46:29 -05:00
|
|
|
color = &style->background;
|
|
|
|
else
|
|
|
|
color = NULL;
|
|
|
|
|
|
|
|
gtk_widget_modify_base (widget, state, color);
|
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
if (style != NULL && STYLE_HAS_FOREGROUND (style))
|
2006-08-26 04:46:29 -05:00
|
|
|
color = &style->foreground;
|
|
|
|
else
|
|
|
|
color = NULL;
|
|
|
|
|
|
|
|
gtk_widget_modify_text (widget, state, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-06-09 06:57:30 -05:00
|
|
|
set_line_numbers_style (GtkWidget *widget,
|
|
|
|
GtkSourceStyle *style)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2007-06-09 06:57:30 -05:00
|
|
|
gint i;
|
|
|
|
GdkColor *fg = NULL;
|
|
|
|
GdkColor *bg = NULL;
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
if (style != NULL && STYLE_HAS_FOREGROUND (style))
|
2007-06-09 06:57:30 -05:00
|
|
|
fg = &style->foreground;
|
|
|
|
if (style != NULL && STYLE_HAS_BACKGROUND (style))
|
|
|
|
bg = &style->background;
|
|
|
|
|
|
|
|
for (i = 0; i < 5; ++i)
|
|
|
|
{
|
|
|
|
gtk_widget_modify_fg (widget, i, fg);
|
|
|
|
gtk_widget_modify_bg (widget, i, bg);
|
|
|
|
}
|
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2007-06-09 06:57:30 -05:00
|
|
|
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);
|
|
|
|
|
|
|
|
if (strcmp (widget_name, gtk_widget_get_name (widget)) != 0)
|
|
|
|
gtk_widget_set_name (widget, widget_name);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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 color;
|
|
|
|
GdkColor *primary = NULL, *secondary = NULL;
|
|
|
|
|
|
|
|
if (style_primary != NULL && STYLE_HAS_FOREGROUND (style_primary))
|
|
|
|
primary = &style_primary->foreground;
|
|
|
|
|
|
|
|
if (style_secondary != NULL && STYLE_HAS_FOREGROUND (style_secondary))
|
|
|
|
secondary = &style_secondary->foreground;
|
|
|
|
|
|
|
|
if (primary != NULL && secondary == NULL)
|
|
|
|
{
|
|
|
|
GdkColor tmp = widget->style->base[GTK_STATE_NORMAL];
|
|
|
|
color.red = ((gint) tmp.red + primary->red) / 2;
|
|
|
|
color.green = ((gint) tmp.green + primary->green) / 2;
|
|
|
|
color.blue = ((gint) tmp.blue + primary->blue) / 2;
|
|
|
|
secondary = &color;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (primary != NULL)
|
|
|
|
set_cursor_colors (widget, primary, secondary);
|
|
|
|
else
|
|
|
|
unset_cursor_colors (widget);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _gtk_source_style_scheme_apply:
|
2007-04-17 12:49:39 -05:00
|
|
|
* @scheme: a #GtkSourceStyleScheme or NULL.
|
2006-12-31 04:54:51 -06:00
|
|
|
* @widget: a #GtkWidget to apply styles to.
|
|
|
|
*
|
|
|
|
* Sets text colors from @scheme in the @widget.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
void
|
|
|
|
_gtk_source_style_scheme_apply (GtkSourceStyleScheme *scheme,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
2007-04-17 12:49:39 -05:00
|
|
|
g_return_if_fail (!scheme || GTK_IS_SOURCE_STYLE_SCHEME (scheme));
|
2006-08-26 04:46:29 -05:00
|
|
|
g_return_if_fail (GTK_IS_WIDGET (widget));
|
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
if (scheme != NULL)
|
|
|
|
{
|
2007-06-09 06:57:30 -05:00
|
|
|
GtkSourceStyle *style, *style2;
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
gtk_widget_ensure_style (widget);
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
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);
|
|
|
|
gtk_source_style_free (style);
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
style = gtk_source_style_scheme_get_style (scheme, STYLE_SELECTED);
|
|
|
|
set_text_style (widget, style, GTK_STATE_SELECTED);
|
|
|
|
gtk_source_style_free (style);
|
|
|
|
|
2007-06-09 06:57:30 -05:00
|
|
|
style = gtk_source_style_scheme_get_style (scheme, STYLE_LINE_NUMBERS);
|
|
|
|
set_line_numbers_style (widget, style);
|
|
|
|
gtk_source_style_free (style);
|
|
|
|
|
2007-04-17 12:49:39 -05:00
|
|
|
style = gtk_source_style_scheme_get_style (scheme, STYLE_CURSOR);
|
2007-06-09 06:57:30 -05:00
|
|
|
style2 = gtk_source_style_scheme_get_style (scheme, STYLE_SECONDARY_CURSOR);
|
|
|
|
update_cursor_colors (widget, style, style2);
|
|
|
|
gtk_source_style_free (style2);
|
2007-04-17 12:49:39 -05:00
|
|
|
gtk_source_style_free (style);
|
|
|
|
}
|
|
|
|
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);
|
2007-06-09 06:57:30 -05:00
|
|
|
set_line_numbers_style (widget, NULL);
|
|
|
|
unset_cursor_colors (widget);
|
2007-04-17 12:49:39 -05:00
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --- PARSER ---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkSourceStyleScheme *scheme;
|
|
|
|
gboolean done;
|
|
|
|
} ParserData;
|
|
|
|
|
|
|
|
#define ERROR_QUARK (g_quark_from_static_string ("gtk-source-style-scheme-parser-error"))
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
str_to_bool (const gchar *string)
|
|
|
|
{
|
|
|
|
return !g_ascii_strcasecmp (string, "true") ||
|
|
|
|
!g_ascii_strcasecmp (string, "yes") ||
|
|
|
|
!g_ascii_strcasecmp (string, "1");
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2006-09-01 03:47:03 -05:00
|
|
|
parse_style (GtkSourceStyleScheme *scheme,
|
|
|
|
const gchar **names,
|
|
|
|
const gchar **values,
|
|
|
|
gchar **style_name_p,
|
|
|
|
GtkSourceStyle **style_p,
|
|
|
|
GError **error)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
GtkSourceStyle *use_style = NULL;
|
|
|
|
GtkSourceStyle *result = NULL;
|
|
|
|
const gchar *fg = NULL, *bg = NULL;
|
|
|
|
const gchar *style_name = NULL;
|
|
|
|
GtkSourceStyleMask mask = 0;
|
2006-12-25 01:46:12 -06:00
|
|
|
gboolean bold = FALSE;
|
|
|
|
gboolean italic = FALSE;
|
|
|
|
gboolean underline = FALSE;
|
|
|
|
gboolean strikethrough = FALSE;
|
2006-09-01 03:47:03 -05:00
|
|
|
|
|
|
|
for ( ; names && *names; names++, values++)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
const gchar *name = *names;
|
|
|
|
const gchar *val = *values;
|
|
|
|
|
|
|
|
if (!strcmp (name, "name"))
|
|
|
|
style_name = val;
|
|
|
|
else if (!strcmp (name, "foreground"))
|
|
|
|
fg = val;
|
|
|
|
else if (!strcmp (name, "background"))
|
|
|
|
bg = val;
|
|
|
|
else if (!strcmp (name, "italic"))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
mask |= GTK_SOURCE_STYLE_USE_ITALIC;
|
|
|
|
italic = str_to_bool (val);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
2006-09-01 03:47:03 -05:00
|
|
|
else if (!strcmp (name, "bold"))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
mask |= GTK_SOURCE_STYLE_USE_BOLD;
|
|
|
|
bold = str_to_bool (val);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
2006-09-01 03:47:03 -05:00
|
|
|
else if (!strcmp (name, "underline"))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
mask |= GTK_SOURCE_STYLE_USE_UNDERLINE;
|
|
|
|
underline = str_to_bool (val);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
2006-09-01 03:47:03 -05:00
|
|
|
else if (!strcmp (name, "strikethrough"))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
mask |= GTK_SOURCE_STYLE_USE_STRIKETHROUGH;
|
|
|
|
strikethrough = str_to_bool (val);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
2006-09-01 03:47:03 -05:00
|
|
|
else if (!strcmp (name, "use-style"))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
if (use_style != NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"in style '%s': duplicated use-style attribute",
|
|
|
|
style_name ? style_name : "(null)");
|
|
|
|
gtk_source_style_free (use_style);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
use_style = gtk_source_style_scheme_get_style (scheme, val);
|
|
|
|
|
|
|
|
if (!use_style)
|
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"in style '%s': unknown style '%s'",
|
|
|
|
style_name ? style_name : "(null)", val);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
2006-09-01 03:47:03 -05:00
|
|
|
"in style '%s': unexpected attribute '%s'",
|
|
|
|
style_name ? style_name : "(null)", name);
|
|
|
|
gtk_source_style_free (use_style);
|
2006-08-26 04:46:29 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (style_name == NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
g_set_error (error, ERROR_QUARK, 0, "name attribute missing");
|
|
|
|
gtk_source_style_free (use_style);
|
2006-08-26 04:46:29 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
if (use_style)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
2006-09-01 03:47:03 -05:00
|
|
|
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);
|
|
|
|
gtk_source_style_free (use_style);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
result = use_style;
|
|
|
|
use_style = NULL;
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
2006-09-01 03:47:03 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
result = gtk_source_style_new (mask);
|
|
|
|
result->bold = bold;
|
|
|
|
result->italic = italic;
|
|
|
|
result->underline = underline;
|
|
|
|
result->strikethrough = strikethrough;
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
if (fg != NULL)
|
|
|
|
{
|
|
|
|
if (gdk_color_parse (fg, &result->foreground))
|
|
|
|
result->mask |= GTK_SOURCE_STYLE_USE_FOREGROUND;
|
|
|
|
else
|
|
|
|
g_warning ("in style '%s': invalid color '%s'",
|
|
|
|
style_name, fg);
|
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
if (bg != NULL)
|
|
|
|
{
|
|
|
|
if (gdk_color_parse (bg, &result->background))
|
|
|
|
result->mask |= GTK_SOURCE_STYLE_USE_BACKGROUND;
|
|
|
|
else
|
|
|
|
g_warning ("in style '%s': invalid color '%s'",
|
|
|
|
style_name, bg);
|
|
|
|
}
|
|
|
|
}
|
2006-08-26 04:46:29 -05:00
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
*style_p = result;
|
|
|
|
*style_name_p = g_strdup (style_name);
|
2006-08-26 04:46:29 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
start_element (G_GNUC_UNUSED GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ParserData *data = user_data;
|
|
|
|
GtkSourceStyle *style;
|
|
|
|
gchar *style_name;
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (data->done || (data->scheme == NULL && strcmp (element_name, "style-scheme") != 0))
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"unexpected element '%s'",
|
|
|
|
element_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (data->scheme == NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
data->scheme = g_object_new (GTK_TYPE_SOURCE_STYLE_SCHEME, NULL);
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
while (attribute_names != NULL && *attribute_names != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
gboolean error_set = FALSE;
|
|
|
|
|
|
|
|
if (!strcmp (*attribute_names, "id"))
|
|
|
|
{
|
|
|
|
data->scheme->priv->id = g_strdup (*attribute_values);
|
|
|
|
}
|
|
|
|
else if (!strcmp (*attribute_names, "_name"))
|
|
|
|
{
|
2006-09-03 17:59:59 -05:00
|
|
|
if (data->scheme->priv->name != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"duplicated name attribute");
|
|
|
|
error_set = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data->scheme->priv->name = g_strdup (_(*attribute_values));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!strcmp (*attribute_names, "name"))
|
|
|
|
{
|
2006-09-03 17:59:59 -05:00
|
|
|
if (data->scheme->priv->name != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"duplicated name attribute");
|
|
|
|
error_set = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data->scheme->priv->name = g_strdup (*attribute_values);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!strcmp (*attribute_names, "parent-scheme"))
|
|
|
|
{
|
2006-11-02 00:39:54 -06:00
|
|
|
data->scheme->priv->parent_id = g_strdup (*attribute_values);
|
2006-08-26 04:46:29 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"unexpected attribute '%s' in element 'style-scheme'",
|
|
|
|
*attribute_names);
|
|
|
|
error_set = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error_set)
|
|
|
|
return;
|
|
|
|
|
|
|
|
attribute_names++;
|
|
|
|
attribute_values++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-03 17:59:59 -05:00
|
|
|
if (strcmp (element_name, "style") != 0)
|
2006-08-26 04:46:29 -05:00
|
|
|
{
|
|
|
|
g_set_error (error, ERROR_QUARK, 0,
|
|
|
|
"unexpected element '%s'",
|
|
|
|
element_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-01 03:47:03 -05:00
|
|
|
if (!parse_style (data->scheme, attribute_names, attribute_values,
|
2006-08-26 04:46:29 -05:00
|
|
|
&style_name, &style, error))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_insert (data->scheme->priv->styles, style_name, style);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_element (G_GNUC_UNUSED GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
gpointer user_data,
|
|
|
|
G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
|
|
|
ParserData *data = user_data;
|
|
|
|
if (!strcmp (element_name, "style-scheme"))
|
|
|
|
data->done = TRUE;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _gtk_source_style_scheme_new_from_file:
|
|
|
|
* @filename: file to parse.
|
|
|
|
*
|
|
|
|
* Returns: new #GtkSourceStyleScheme created from file, or
|
|
|
|
* %NULL on error.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceStyleScheme *
|
|
|
|
_gtk_source_style_scheme_new_from_file (const gchar *filename)
|
|
|
|
{
|
|
|
|
GMarkupParseContext *ctx = NULL;
|
|
|
|
GError *error = NULL;
|
|
|
|
char *text = NULL;
|
|
|
|
ParserData data;
|
|
|
|
GMarkupParser parser = {start_element, end_element, NULL, NULL, NULL};
|
|
|
|
|
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
|
|
|
|
|
|
|
if (!g_file_get_contents (filename, &text, NULL, &error))
|
|
|
|
{
|
|
|
|
g_warning ("could not load style scheme file '%s': %s",
|
|
|
|
filename, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
data.scheme = NULL;
|
|
|
|
data.done = FALSE;
|
|
|
|
|
|
|
|
ctx = g_markup_parse_context_new (&parser, 0, &data, NULL);
|
|
|
|
|
|
|
|
if (!g_markup_parse_context_parse (ctx, text, -1, &error) ||
|
|
|
|
!g_markup_parse_context_end_parse (ctx, &error))
|
|
|
|
{
|
2006-09-03 17:59:59 -05:00
|
|
|
if (data.scheme != NULL)
|
2006-08-26 04:46:29 -05:00
|
|
|
g_object_unref (data.scheme);
|
|
|
|
data.scheme = NULL;
|
|
|
|
g_warning ("could not load style scheme file '%s': %s",
|
|
|
|
filename, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_markup_parse_context_free (ctx);
|
|
|
|
g_free (text);
|
|
|
|
return data.scheme;
|
|
|
|
}
|
2006-11-02 00:39:54 -06:00
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _gtk_source_style_scheme_get_parent_id:
|
|
|
|
* @scheme: a #GtkSourceStyleScheme.
|
|
|
|
*
|
|
|
|
* Returns: parent style scheme id or %NULL.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-11-02 00:39:54 -06:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _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
|
|
|
|
*/
|
2006-11-02 00:39:54 -06:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-12-31 04:54:51 -06:00
|
|
|
/**
|
|
|
|
* _gtk_source_style_scheme_default_new:
|
|
|
|
*
|
|
|
|
* Returns: new default style scheme. Not clear what it means though.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
*/
|
2006-11-02 00:39:54 -06:00
|
|
|
GtkSourceStyleScheme *
|
|
|
|
_gtk_source_style_scheme_default_new (void)
|
|
|
|
{
|
|
|
|
return _gtk_source_style_scheme_new ("gvim", "GVim");
|
|
|
|
}
|