2010-04-11 21:03:25 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
*
|
|
|
|
* 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 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gtkstyleprovider.h>
|
|
|
|
|
|
|
|
#include "gtkcssprovider.h"
|
|
|
|
|
|
|
|
#include "gtkalias.h"
|
|
|
|
|
|
|
|
typedef struct GtkCssProviderPrivate GtkCssProviderPrivate;
|
|
|
|
typedef struct SelectorElement SelectorElement;
|
|
|
|
typedef struct SelectorPath SelectorPath;
|
|
|
|
typedef struct SelectorStyleInfo SelectorStyleInfo;
|
|
|
|
typedef enum SelectorElementType SelectorElementType;
|
2010-04-16 01:02:42 +00:00
|
|
|
typedef enum CombinatorType CombinatorType;
|
2010-04-11 21:03:25 +00:00
|
|
|
typedef enum ParserScope ParserScope;
|
2010-04-20 23:46:52 +00:00
|
|
|
typedef enum ParserSymbol ParserSymbol;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
enum SelectorElementType {
|
|
|
|
SELECTOR_TYPE_NAME,
|
|
|
|
SELECTOR_NAME,
|
2010-04-15 22:29:11 +00:00
|
|
|
SELECTOR_GTYPE,
|
2010-04-20 23:48:01 +00:00
|
|
|
SELECTOR_REGION,
|
2010-08-06 10:08:48 +00:00
|
|
|
SELECTOR_CLASS,
|
2010-04-15 22:29:11 +00:00
|
|
|
SELECTOR_GLOB
|
2010-04-11 21:03:25 +00:00
|
|
|
};
|
|
|
|
|
2010-04-16 01:02:42 +00:00
|
|
|
enum CombinatorType {
|
|
|
|
COMBINATOR_DESCENDANT, /* No direct relation needed */
|
|
|
|
COMBINATOR_CHILD /* Direct child */
|
|
|
|
};
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
struct SelectorElement
|
|
|
|
{
|
|
|
|
SelectorElementType elem_type;
|
2010-04-16 01:02:42 +00:00
|
|
|
CombinatorType combinator;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
GQuark name;
|
|
|
|
GType type;
|
2010-04-20 23:48:01 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
GQuark name;
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags flags;
|
2010-04-20 23:48:01 +00:00
|
|
|
} region;
|
2010-04-11 21:03:25 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SelectorPath
|
|
|
|
{
|
|
|
|
GSList *elements;
|
2010-08-16 17:09:34 +00:00
|
|
|
GtkStateFlags state;
|
2010-04-11 21:03:25 +00:00
|
|
|
guint ref_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SelectorStyleInfo
|
|
|
|
{
|
|
|
|
SelectorPath *path;
|
|
|
|
GHashTable *style;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GtkCssProviderPrivate
|
|
|
|
{
|
|
|
|
GScanner *scanner;
|
2010-06-25 16:46:59 +00:00
|
|
|
gchar *filename;
|
2010-06-19 14:04:30 +00:00
|
|
|
|
2010-06-25 18:27:15 +00:00
|
|
|
GHashTable *symbolic_colors;
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
GPtrArray *selectors_info;
|
|
|
|
|
|
|
|
/* Current parser state */
|
|
|
|
GSList *state;
|
|
|
|
GSList *cur_selectors;
|
|
|
|
GHashTable *cur_properties;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ParserScope {
|
|
|
|
SCOPE_SELECTOR,
|
2010-04-14 21:36:48 +00:00
|
|
|
SCOPE_PSEUDO_CLASS,
|
2010-04-20 23:46:52 +00:00
|
|
|
SCOPE_NTH_CHILD,
|
2010-04-11 21:03:25 +00:00
|
|
|
SCOPE_DECLARATION,
|
|
|
|
SCOPE_VALUE
|
|
|
|
};
|
|
|
|
|
2010-04-20 23:46:52 +00:00
|
|
|
/* Extend GtkStateType, since these
|
|
|
|
* values are also used as symbols
|
|
|
|
*/
|
|
|
|
enum ParserSymbol {
|
|
|
|
/* Scope: pseudo-class */
|
|
|
|
SYMBOL_NTH_CHILD = GTK_STATE_LAST,
|
|
|
|
SYMBOL_FIRST_CHILD,
|
|
|
|
SYMBOL_LAST_CHILD,
|
|
|
|
|
|
|
|
/* Scope: nth-child */
|
|
|
|
SYMBOL_NTH_CHILD_EVEN,
|
|
|
|
SYMBOL_NTH_CHILD_ODD,
|
|
|
|
SYMBOL_NTH_CHILD_FIRST,
|
|
|
|
SYMBOL_NTH_CHILD_LAST
|
|
|
|
};
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
static void gtk_css_provider_finalize (GObject *object);
|
|
|
|
static void gtk_css_style_provider_iface_init (GtkStyleProviderIface *iface);
|
|
|
|
|
|
|
|
static void css_provider_apply_scope (GtkCssProvider *css_provider,
|
|
|
|
ParserScope scope);
|
2010-06-18 15:04:03 +00:00
|
|
|
static gboolean css_provider_parse_value (const gchar *value_str,
|
|
|
|
GValue *value);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE_EXTENDED (GtkCssProvider, gtk_css_provider, G_TYPE_OBJECT, 0,
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_STYLE_PROVIDER,
|
|
|
|
gtk_css_style_provider_iface_init));
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_provider_class_init (GtkCssProviderClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gtk_css_provider_finalize;
|
|
|
|
|
|
|
|
g_type_class_add_private (object_class, sizeof (GtkCssProviderPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static SelectorPath *
|
|
|
|
selector_path_new (void)
|
|
|
|
{
|
|
|
|
SelectorPath *path;
|
|
|
|
|
|
|
|
path = g_slice_new0 (SelectorPath);
|
|
|
|
path->ref_count = 1;
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SelectorPath *
|
|
|
|
selector_path_ref (SelectorPath *path)
|
|
|
|
{
|
|
|
|
path->ref_count++;
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
selector_path_unref (SelectorPath *path)
|
|
|
|
{
|
|
|
|
path->ref_count--;
|
|
|
|
|
|
|
|
if (path->ref_count > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (path->elements)
|
|
|
|
{
|
2010-04-16 00:59:36 +00:00
|
|
|
g_slice_free (SelectorElement, path->elements->data);
|
2010-04-11 21:03:25 +00:00
|
|
|
path->elements = g_slist_delete_link (path->elements, path->elements);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slice_free (SelectorPath, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
selector_path_prepend_type (SelectorPath *path,
|
|
|
|
const gchar *type_name)
|
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
GType type;
|
|
|
|
|
|
|
|
elem = g_slice_new (SelectorElement);
|
2010-04-16 01:02:42 +00:00
|
|
|
elem->combinator = COMBINATOR_DESCENDANT;
|
2010-04-11 21:03:25 +00:00
|
|
|
type = g_type_from_name (type_name);
|
|
|
|
|
|
|
|
if (type == G_TYPE_INVALID)
|
|
|
|
{
|
|
|
|
elem->elem_type = SELECTOR_TYPE_NAME;
|
|
|
|
elem->name = g_quark_from_string (type_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
elem->elem_type = SELECTOR_GTYPE;
|
|
|
|
elem->type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
path->elements = g_slist_prepend (path->elements, elem);
|
|
|
|
}
|
|
|
|
|
2010-04-15 22:29:11 +00:00
|
|
|
static void
|
|
|
|
selector_path_prepend_glob (SelectorPath *path)
|
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
|
|
|
|
elem = g_slice_new (SelectorElement);
|
|
|
|
elem->elem_type = SELECTOR_GLOB;
|
2010-04-16 01:02:42 +00:00
|
|
|
elem->combinator = COMBINATOR_DESCENDANT;
|
2010-04-15 22:29:11 +00:00
|
|
|
|
|
|
|
path->elements = g_slist_prepend (path->elements, elem);
|
|
|
|
}
|
|
|
|
|
2010-04-20 23:48:01 +00:00
|
|
|
static void
|
2010-08-05 09:08:51 +00:00
|
|
|
selector_path_prepend_region (SelectorPath *path,
|
|
|
|
const gchar *name,
|
|
|
|
GtkRegionFlags flags)
|
2010-04-20 23:48:01 +00:00
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
|
|
|
|
elem = g_slice_new (SelectorElement);
|
|
|
|
elem->combinator = COMBINATOR_DESCENDANT;
|
|
|
|
elem->elem_type = SELECTOR_REGION;
|
|
|
|
|
|
|
|
elem->region.name = g_quark_from_string (name);
|
|
|
|
elem->region.flags = flags;
|
|
|
|
|
|
|
|
path->elements = g_slist_prepend (path->elements, elem);
|
|
|
|
}
|
|
|
|
|
2010-08-04 09:44:32 +00:00
|
|
|
static void
|
|
|
|
selector_path_prepend_name (SelectorPath *path,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
|
|
|
|
elem = g_slice_new (SelectorElement);
|
|
|
|
elem->combinator = COMBINATOR_DESCENDANT;
|
|
|
|
elem->elem_type = SELECTOR_NAME;
|
|
|
|
|
|
|
|
elem->name = g_quark_from_string (name);
|
|
|
|
|
|
|
|
path->elements = g_slist_prepend (path->elements, elem);
|
|
|
|
}
|
|
|
|
|
2010-08-06 10:08:48 +00:00
|
|
|
static void
|
|
|
|
selector_path_prepend_class (SelectorPath *path,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
|
|
|
|
elem = g_slice_new (SelectorElement);
|
|
|
|
elem->combinator = COMBINATOR_DESCENDANT;
|
|
|
|
elem->elem_type = SELECTOR_CLASS;
|
|
|
|
|
|
|
|
elem->name = g_quark_from_string (name);
|
|
|
|
|
|
|
|
path->elements = g_slist_prepend (path->elements, elem);
|
|
|
|
}
|
|
|
|
|
2010-04-16 01:02:42 +00:00
|
|
|
static void
|
|
|
|
selector_path_prepend_combinator (SelectorPath *path,
|
|
|
|
CombinatorType combinator)
|
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
|
|
|
|
g_assert (path->elements != NULL);
|
|
|
|
|
|
|
|
/* It is actually stored in the last element */
|
|
|
|
elem = path->elements->data;
|
|
|
|
elem->combinator = combinator;
|
|
|
|
}
|
|
|
|
|
2010-04-15 23:44:50 +00:00
|
|
|
static gint
|
|
|
|
selector_path_depth (SelectorPath *path)
|
|
|
|
{
|
|
|
|
return g_slist_length (path->elements);
|
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
static SelectorStyleInfo *
|
|
|
|
selector_style_info_new (SelectorPath *path)
|
|
|
|
{
|
|
|
|
SelectorStyleInfo *info;
|
|
|
|
|
|
|
|
info = g_slice_new0 (SelectorStyleInfo);
|
|
|
|
info->path = selector_path_ref (path);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
selector_style_info_free (SelectorStyleInfo *info)
|
|
|
|
{
|
|
|
|
if (info->style)
|
|
|
|
g_hash_table_unref (info->style);
|
|
|
|
|
|
|
|
if (info->path)
|
|
|
|
selector_path_unref (info->path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
selector_style_info_set_style (SelectorStyleInfo *info,
|
|
|
|
GHashTable *style)
|
|
|
|
{
|
|
|
|
if (info->style)
|
|
|
|
g_hash_table_unref (info->style);
|
|
|
|
|
|
|
|
if (style)
|
|
|
|
info->style = g_hash_table_ref (style);
|
|
|
|
else
|
|
|
|
info->style = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_provider_init (GtkCssProvider *css_provider)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GScanner *scanner;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv = G_TYPE_INSTANCE_GET_PRIVATE (css_provider,
|
|
|
|
GTK_TYPE_CSS_PROVIDER,
|
|
|
|
GtkCssProviderPrivate);
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
priv->selectors_info = g_ptr_array_new_with_free_func ((GDestroyNotify) selector_style_info_free);
|
|
|
|
|
|
|
|
scanner = g_scanner_new (NULL);
|
|
|
|
|
2010-04-14 21:36:48 +00:00
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "active", GUINT_TO_POINTER (GTK_STATE_ACTIVE));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "prelight", GUINT_TO_POINTER (GTK_STATE_PRELIGHT));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "hover", GUINT_TO_POINTER (GTK_STATE_PRELIGHT));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "selected", GUINT_TO_POINTER (GTK_STATE_SELECTED));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "insensitive", GUINT_TO_POINTER (GTK_STATE_INSENSITIVE));
|
|
|
|
|
2010-04-20 23:46:52 +00:00
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "nth-child", GUINT_TO_POINTER (SYMBOL_NTH_CHILD));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "first-child", GUINT_TO_POINTER (SYMBOL_FIRST_CHILD));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_PSEUDO_CLASS, "last-child", GUINT_TO_POINTER (SYMBOL_LAST_CHILD));
|
|
|
|
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_NTH_CHILD, "even", GUINT_TO_POINTER (SYMBOL_NTH_CHILD_EVEN));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_NTH_CHILD, "odd", GUINT_TO_POINTER (SYMBOL_NTH_CHILD_ODD));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_NTH_CHILD, "first", GUINT_TO_POINTER (SYMBOL_NTH_CHILD_FIRST));
|
|
|
|
g_scanner_scope_add_symbol (scanner, SCOPE_NTH_CHILD, "last", GUINT_TO_POINTER (SYMBOL_NTH_CHILD_LAST));
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
priv->scanner = scanner;
|
|
|
|
css_provider_apply_scope (css_provider, SCOPE_SELECTOR);
|
2010-06-25 18:27:15 +00:00
|
|
|
|
|
|
|
priv->symbolic_colors = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
(GDestroyNotify) g_free,
|
|
|
|
(GDestroyNotify) gtk_symbolic_color_unref);
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct ComparePathData ComparePathData;
|
|
|
|
|
|
|
|
struct ComparePathData
|
|
|
|
{
|
|
|
|
guint64 score;
|
|
|
|
SelectorPath *path;
|
|
|
|
GSList *iter;
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean
|
2010-04-20 23:27:46 +00:00
|
|
|
compare_selector_element (GtkWidgetPath *path,
|
|
|
|
guint index,
|
|
|
|
SelectorElement *elem,
|
|
|
|
guint8 *score)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
2010-04-20 23:27:46 +00:00
|
|
|
*score = 0;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (elem->elem_type == SELECTOR_TYPE_NAME)
|
|
|
|
{
|
|
|
|
const gchar *type_name;
|
|
|
|
GType resolved_type;
|
|
|
|
|
|
|
|
/* Resolve the type name */
|
|
|
|
type_name = g_quark_to_string (elem->name);
|
|
|
|
resolved_type = g_type_from_name (type_name);
|
|
|
|
|
|
|
|
if (resolved_type == G_TYPE_INVALID)
|
|
|
|
{
|
|
|
|
/* Type couldn't be resolved, so the selector
|
|
|
|
* clearly doesn't affect the given widget path
|
|
|
|
*/
|
2010-04-20 23:27:46 +00:00
|
|
|
return FALSE;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elem->elem_type = SELECTOR_GTYPE;
|
|
|
|
elem->type = resolved_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (elem->elem_type == SELECTOR_GTYPE)
|
|
|
|
{
|
2010-04-20 23:27:46 +00:00
|
|
|
GType type;
|
|
|
|
|
2010-08-04 10:50:37 +00:00
|
|
|
type = gtk_widget_path_iter_get_widget_type (path, index);
|
2010-04-20 23:27:46 +00:00
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
if (!g_type_is_a (type, elem->type))
|
2010-04-20 23:27:46 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (type == elem->type)
|
|
|
|
*score |= 0xF;
|
2010-04-11 21:03:25 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
GType parent = type;
|
2010-04-20 23:27:46 +00:00
|
|
|
|
|
|
|
*score = 0xE;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
while ((parent = g_type_parent (parent)) != G_TYPE_INVALID)
|
|
|
|
{
|
|
|
|
if (parent == elem->type)
|
|
|
|
break;
|
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
*score -= 1;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
if (*score == 1)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
|
|
|
g_warning ("Hierarchy is higher than expected.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-20 23:27:46 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
2010-04-22 23:31:44 +00:00
|
|
|
else if (elem->elem_type == SELECTOR_REGION)
|
|
|
|
{
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags flags;
|
2010-04-22 23:31:44 +00:00
|
|
|
|
2010-08-04 10:19:23 +00:00
|
|
|
if (!gtk_widget_path_iter_has_qregion (path, index,
|
|
|
|
elem->region.name,
|
|
|
|
&flags))
|
2010-04-22 23:31:44 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (elem->region.flags != 0 &&
|
|
|
|
(flags & elem->region.flags) == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*score = 0xF;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-04-15 22:29:11 +00:00
|
|
|
else if (elem->elem_type == SELECTOR_GLOB)
|
|
|
|
{
|
|
|
|
/* Treat as lowest matching type */
|
2010-04-20 23:27:46 +00:00
|
|
|
*score = 1;
|
|
|
|
return TRUE;
|
2010-04-15 22:29:11 +00:00
|
|
|
}
|
2010-08-04 09:44:32 +00:00
|
|
|
else if (elem->elem_type == SELECTOR_NAME)
|
|
|
|
{
|
2010-08-04 11:11:50 +00:00
|
|
|
if (!gtk_widget_path_iter_has_qname (path, index, elem->name))
|
2010-08-04 09:44:32 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*score = 0xF;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-08-06 10:08:48 +00:00
|
|
|
else if (elem->elem_type == SELECTOR_CLASS)
|
|
|
|
{
|
|
|
|
if (!gtk_widget_path_iter_has_qclass (path, index, elem->name))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*score = 0xF;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
return FALSE;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static guint64
|
|
|
|
compare_selector (GtkWidgetPath *path,
|
|
|
|
SelectorPath *selector)
|
|
|
|
{
|
2010-04-20 23:27:46 +00:00
|
|
|
GSList *elements = selector->elements;
|
|
|
|
gboolean match = TRUE;
|
|
|
|
guint64 score = 0;
|
2010-08-04 09:36:21 +00:00
|
|
|
guint len;
|
2010-04-20 23:27:46 +00:00
|
|
|
guint i = 0;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-08-04 09:36:21 +00:00
|
|
|
len = gtk_widget_path_length (path);
|
|
|
|
|
|
|
|
while (elements && match && i < len)
|
2010-04-20 23:27:46 +00:00
|
|
|
{
|
|
|
|
SelectorElement *elem;
|
|
|
|
guint8 elem_score;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
elem = elements->data;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
match = compare_selector_element (path, i, elem, &elem_score);
|
2010-08-04 09:43:18 +00:00
|
|
|
|
|
|
|
/* Only move on to the next index if there is no match
|
|
|
|
* with the current element (whether to continue or not
|
|
|
|
* handled right after in the combinator check), or a
|
|
|
|
* GType or glob has just been matched.
|
|
|
|
*
|
|
|
|
* Region and widget names do not trigger this because
|
|
|
|
* the next element in the selector path could also be
|
|
|
|
* related to the same index.
|
|
|
|
*/
|
|
|
|
if (!match ||
|
|
|
|
(elem->elem_type == SELECTOR_GTYPE ||
|
|
|
|
elem->elem_type == SELECTOR_GLOB))
|
|
|
|
i++;
|
2010-04-20 23:27:46 +00:00
|
|
|
|
2010-08-04 09:42:08 +00:00
|
|
|
if (!match &&
|
|
|
|
elem->elem_type != SELECTOR_TYPE_NAME &&
|
|
|
|
elem->combinator == COMBINATOR_DESCENDANT)
|
2010-04-20 23:27:46 +00:00
|
|
|
{
|
|
|
|
/* With descendant combinators there may
|
|
|
|
* be intermediate chidren in the hierarchy
|
|
|
|
*/
|
|
|
|
match = TRUE;
|
|
|
|
}
|
2010-08-04 09:42:08 +00:00
|
|
|
else if (match)
|
2010-04-22 23:23:27 +00:00
|
|
|
elements = elements->next;
|
2010-04-20 23:27:46 +00:00
|
|
|
|
|
|
|
if (match)
|
|
|
|
{
|
2010-05-04 17:58:07 +00:00
|
|
|
/* Only 4 bits are actually used */
|
2010-04-20 23:27:46 +00:00
|
|
|
score <<= 4;
|
|
|
|
score |= elem_score;
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
/* If there are pending selector
|
|
|
|
* elements to compare, it's not
|
|
|
|
* a match.
|
|
|
|
*/
|
|
|
|
if (elements)
|
|
|
|
match = FALSE;
|
|
|
|
|
|
|
|
if (!match)
|
|
|
|
score = 0;
|
|
|
|
|
|
|
|
return score;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct StylePriorityInfo StylePriorityInfo;
|
|
|
|
|
|
|
|
struct StylePriorityInfo
|
|
|
|
{
|
|
|
|
guint64 score;
|
|
|
|
GHashTable *style;
|
2010-08-16 17:09:34 +00:00
|
|
|
GtkStateFlags state;
|
2010-04-11 21:03:25 +00:00
|
|
|
};
|
|
|
|
|
2010-06-18 14:52:34 +00:00
|
|
|
static GArray *
|
|
|
|
css_provider_get_selectors (GtkCssProvider *css_provider,
|
|
|
|
GtkWidgetPath *path)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GArray *priority_info;
|
|
|
|
guint i, j;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
priority_info = g_array_new (FALSE, FALSE, sizeof (StylePriorityInfo));
|
|
|
|
|
|
|
|
for (i = 0; i < priv->selectors_info->len; i++)
|
|
|
|
{
|
|
|
|
SelectorStyleInfo *info;
|
|
|
|
StylePriorityInfo new;
|
|
|
|
gboolean added = FALSE;
|
|
|
|
guint64 score;
|
|
|
|
|
|
|
|
info = g_ptr_array_index (priv->selectors_info, i);
|
|
|
|
score = compare_selector (path, info->path);
|
|
|
|
|
|
|
|
if (score <= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
new.score = score;
|
|
|
|
new.style = info->style;
|
2010-04-14 21:36:48 +00:00
|
|
|
new.state = info->path->state;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
for (j = 0; j < priority_info->len; j++)
|
|
|
|
{
|
|
|
|
StylePriorityInfo *cur;
|
|
|
|
|
|
|
|
cur = &g_array_index (priority_info, StylePriorityInfo, j);
|
|
|
|
|
|
|
|
if (cur->score > new.score)
|
|
|
|
{
|
|
|
|
g_array_insert_val (priority_info, j, new);
|
|
|
|
added = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!added)
|
|
|
|
g_array_append_val (priority_info, new);
|
|
|
|
}
|
|
|
|
|
2010-06-18 14:52:34 +00:00
|
|
|
return priority_info;
|
|
|
|
}
|
|
|
|
|
2010-06-25 18:27:15 +00:00
|
|
|
static void
|
|
|
|
css_provider_dump_symbolic_colors (GtkCssProvider *css_provider,
|
|
|
|
GtkStyleSet *set)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-06-25 18:27:15 +00:00
|
|
|
g_hash_table_iter_init (&iter, priv->symbolic_colors);
|
|
|
|
|
|
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
GtkSymbolicColor *color;
|
|
|
|
|
|
|
|
name = key;
|
|
|
|
color = value;
|
|
|
|
|
|
|
|
gtk_style_set_map_color (set, name, color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-18 14:52:34 +00:00
|
|
|
static GtkStyleSet *
|
|
|
|
gtk_css_provider_get_style (GtkStyleProvider *provider,
|
|
|
|
GtkWidgetPath *path)
|
|
|
|
{
|
2010-07-03 00:19:27 +00:00
|
|
|
GtkCssProvider *css_provider;
|
2010-06-18 14:52:34 +00:00
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GtkStyleSet *set;
|
|
|
|
GArray *priority_info;
|
|
|
|
guint i;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
css_provider = GTK_CSS_PROVIDER (provider);
|
|
|
|
priv = css_provider->priv;
|
2010-06-18 14:52:34 +00:00
|
|
|
set = gtk_style_set_new ();
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
css_provider_dump_symbolic_colors (css_provider, set);
|
|
|
|
priority_info = css_provider_get_selectors (css_provider, path);
|
2010-06-18 14:52:34 +00:00
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
for (i = 0; i < priority_info->len; i++)
|
|
|
|
{
|
|
|
|
StylePriorityInfo *info;
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
|
|
|
|
|
|
|
info = &g_array_index (priority_info, StylePriorityInfo, i);
|
|
|
|
g_hash_table_iter_init (&iter, info->style);
|
|
|
|
|
|
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
2010-05-04 17:58:07 +00:00
|
|
|
{
|
2010-06-18 15:04:03 +00:00
|
|
|
gchar *prop = key;
|
|
|
|
|
2010-08-04 15:51:19 +00:00
|
|
|
/* Properties starting with '-' may be both widget style properties
|
|
|
|
* or custom properties from the theming engine, so check whether
|
|
|
|
* the type is registered or not.
|
|
|
|
*/
|
|
|
|
if (prop[0] == '-' &&
|
|
|
|
!gtk_style_set_lookup_property (prop, NULL, NULL))
|
|
|
|
continue;
|
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
gtk_style_set_set_property (set, key, info->state, value);
|
2010-05-04 17:58:07 +00:00
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_array_free (priority_info, TRUE);
|
|
|
|
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2010-06-18 15:04:03 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_css_provider_get_style_property (GtkStyleProvider *provider,
|
|
|
|
GtkWidgetPath *path,
|
|
|
|
const gchar *property_name,
|
|
|
|
GValue *value)
|
|
|
|
{
|
|
|
|
GArray *priority_info;
|
|
|
|
gboolean found = FALSE;
|
|
|
|
gchar *prop_name;
|
|
|
|
GType path_type;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
path_type = gtk_widget_path_get_widget_type (path);
|
|
|
|
|
|
|
|
prop_name = g_strdup_printf ("-%s-%s",
|
|
|
|
g_type_name (path_type),
|
|
|
|
property_name);
|
|
|
|
|
|
|
|
priority_info = css_provider_get_selectors (GTK_CSS_PROVIDER (provider), path);
|
|
|
|
|
|
|
|
for (i = priority_info->len - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
StylePriorityInfo *info;
|
|
|
|
GValue *val;
|
|
|
|
|
|
|
|
info = &g_array_index (priority_info, StylePriorityInfo, i);
|
|
|
|
val = g_hash_table_lookup (info->style, prop_name);
|
|
|
|
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
const gchar *val_str;
|
|
|
|
|
|
|
|
val_str = g_value_get_string (val);
|
|
|
|
found = TRUE;
|
|
|
|
|
|
|
|
css_provider_parse_value (val_str, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_array_free (priority_info, TRUE);
|
|
|
|
g_free (prop_name);
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
static void
|
|
|
|
gtk_css_style_provider_iface_init (GtkStyleProviderIface *iface)
|
|
|
|
{
|
2010-06-18 15:04:03 +00:00
|
|
|
iface->get_style = gtk_css_provider_get_style;
|
|
|
|
iface->get_style_property = gtk_css_provider_get_style_property;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_provider_finalize (GObject *object)
|
|
|
|
{
|
2010-07-03 00:19:27 +00:00
|
|
|
GtkCssProvider *css_provider;
|
2010-04-11 21:03:25 +00:00
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
css_provider = GTK_CSS_PROVIDER (object);
|
|
|
|
priv = css_provider->priv;
|
2010-06-19 14:04:30 +00:00
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
g_scanner_destroy (priv->scanner);
|
2010-06-19 14:04:30 +00:00
|
|
|
g_free (priv->filename);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
g_ptr_array_free (priv->selectors_info, TRUE);
|
|
|
|
|
|
|
|
g_slist_foreach (priv->cur_selectors, (GFunc) selector_path_unref, NULL);
|
|
|
|
g_slist_free (priv->cur_selectors);
|
|
|
|
|
|
|
|
g_hash_table_unref (priv->cur_properties);
|
2010-06-25 18:27:15 +00:00
|
|
|
g_hash_table_destroy (priv->symbolic_colors);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_css_provider_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkCssProvider *
|
|
|
|
gtk_css_provider_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_CSS_PROVIDER, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
property_value_free (GValue *value)
|
|
|
|
{
|
|
|
|
if (G_IS_VALUE (value))
|
|
|
|
g_value_unset (value);
|
|
|
|
|
|
|
|
g_slice_free (GValue, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
css_provider_apply_scope (GtkCssProvider *css_provider,
|
|
|
|
ParserScope scope)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
g_scanner_set_scope (priv->scanner, scope);
|
|
|
|
|
|
|
|
if (scope == SCOPE_VALUE)
|
|
|
|
{
|
2010-06-25 18:27:15 +00:00
|
|
|
priv->scanner->config->cset_identifier_first = G_CSET_a_2_z "@#-_0123456789" G_CSET_A_2_Z;
|
|
|
|
priv->scanner->config->cset_identifier_nth = G_CSET_a_2_z "@#-_ 0123456789(),." G_CSET_A_2_Z;
|
2010-06-18 14:46:31 +00:00
|
|
|
priv->scanner->config->scan_identifier_1char = TRUE;
|
2010-04-15 22:29:11 +00:00
|
|
|
}
|
|
|
|
else if (scope == SCOPE_SELECTOR)
|
|
|
|
{
|
2010-06-25 18:27:15 +00:00
|
|
|
priv->scanner->config->cset_identifier_first = G_CSET_a_2_z G_CSET_A_2_Z "*@";
|
2010-08-04 12:51:01 +00:00
|
|
|
priv->scanner->config->cset_identifier_nth = G_CSET_a_2_z "-_#" G_CSET_A_2_Z;
|
2010-04-15 22:29:11 +00:00
|
|
|
priv->scanner->config->scan_identifier_1char = TRUE;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
2010-06-18 14:49:06 +00:00
|
|
|
else if (scope == SCOPE_PSEUDO_CLASS ||
|
|
|
|
scope == SCOPE_NTH_CHILD ||
|
|
|
|
scope == SCOPE_DECLARATION)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
2010-06-18 15:04:03 +00:00
|
|
|
priv->scanner->config->cset_identifier_first = G_CSET_a_2_z "-" G_CSET_A_2_Z;
|
2010-04-11 21:03:25 +00:00
|
|
|
priv->scanner->config->cset_identifier_nth = G_CSET_a_2_z "-" G_CSET_A_2_Z;
|
2010-04-15 22:29:11 +00:00
|
|
|
priv->scanner->config->scan_identifier_1char = FALSE;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
2010-06-18 14:49:06 +00:00
|
|
|
else
|
|
|
|
g_assert_not_reached ();
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
priv->scanner->config->scan_float = FALSE;
|
2010-08-04 09:44:32 +00:00
|
|
|
priv->scanner->config->cpair_comment_single = NULL;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
css_provider_push_scope (GtkCssProvider *css_provider,
|
|
|
|
ParserScope scope)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
priv->state = g_slist_prepend (priv->state, GUINT_TO_POINTER (scope));
|
|
|
|
|
|
|
|
css_provider_apply_scope (css_provider, scope);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ParserScope
|
|
|
|
css_provider_pop_scope (GtkCssProvider *css_provider)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
ParserScope scope = SCOPE_SELECTOR;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (!priv->state)
|
|
|
|
{
|
|
|
|
g_warning ("Push/pop calls to parser scope aren't paired");
|
|
|
|
css_provider_apply_scope (css_provider, SCOPE_SELECTOR);
|
|
|
|
return SCOPE_SELECTOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->state = g_slist_delete_link (priv->state, priv->state);
|
|
|
|
|
|
|
|
/* Fetch new scope */
|
|
|
|
if (priv->state)
|
|
|
|
scope = GPOINTER_TO_INT (priv->state->data);
|
|
|
|
|
|
|
|
css_provider_apply_scope (css_provider, scope);
|
|
|
|
|
|
|
|
return scope;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
css_provider_reset_parser (GtkCssProvider *css_provider)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
g_slist_free (priv->state);
|
|
|
|
priv->state = NULL;
|
|
|
|
|
|
|
|
css_provider_apply_scope (css_provider, SCOPE_SELECTOR);
|
|
|
|
|
|
|
|
g_slist_foreach (priv->cur_selectors, (GFunc) selector_path_unref, NULL);
|
|
|
|
g_slist_free (priv->cur_selectors);
|
|
|
|
priv->cur_selectors = NULL;
|
|
|
|
|
|
|
|
if (priv->cur_properties)
|
|
|
|
g_hash_table_unref (priv->cur_properties);
|
|
|
|
|
|
|
|
priv->cur_properties = g_hash_table_new_full (g_str_hash,
|
|
|
|
g_str_equal,
|
|
|
|
(GDestroyNotify) g_free,
|
|
|
|
(GDestroyNotify) property_value_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
css_provider_commit (GtkCssProvider *css_provider)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GSList *l;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
l = priv->cur_selectors;
|
|
|
|
|
|
|
|
while (l)
|
|
|
|
{
|
|
|
|
SelectorPath *path = l->data;
|
|
|
|
SelectorStyleInfo *info;
|
|
|
|
|
|
|
|
info = selector_style_info_new (path);
|
|
|
|
selector_style_info_set_style (info, priv->cur_properties);
|
|
|
|
|
|
|
|
g_ptr_array_add (priv->selectors_info, info);
|
|
|
|
l = l->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-20 23:46:52 +00:00
|
|
|
static GTokenType
|
2010-08-16 17:09:34 +00:00
|
|
|
parse_nth_child (GtkCssProvider *css_provider,
|
|
|
|
GScanner *scanner,
|
|
|
|
GtkRegionFlags *flags)
|
2010-04-20 23:46:52 +00:00
|
|
|
{
|
|
|
|
ParserSymbol symbol;
|
|
|
|
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_SYMBOL)
|
|
|
|
return G_TOKEN_SYMBOL;
|
|
|
|
|
|
|
|
symbol = GPOINTER_TO_INT (scanner->value.v_symbol);
|
|
|
|
|
|
|
|
if (symbol == SYMBOL_NTH_CHILD)
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_LEFT_PAREN)
|
|
|
|
return G_TOKEN_LEFT_PAREN;
|
|
|
|
|
|
|
|
css_provider_push_scope (css_provider, SCOPE_NTH_CHILD);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_SYMBOL)
|
|
|
|
return G_TOKEN_SYMBOL;
|
|
|
|
|
|
|
|
symbol = GPOINTER_TO_INT (scanner->value.v_symbol);
|
|
|
|
|
|
|
|
switch (symbol)
|
|
|
|
{
|
|
|
|
case SYMBOL_NTH_CHILD_EVEN:
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_EVEN;
|
2010-04-20 23:46:52 +00:00
|
|
|
break;
|
|
|
|
case SYMBOL_NTH_CHILD_ODD:
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_ODD;
|
2010-04-20 23:46:52 +00:00
|
|
|
break;
|
|
|
|
case SYMBOL_NTH_CHILD_FIRST:
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_FIRST;
|
2010-04-20 23:46:52 +00:00
|
|
|
break;
|
|
|
|
case SYMBOL_NTH_CHILD_LAST:
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_LAST;
|
2010-04-20 23:46:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_RIGHT_PAREN)
|
|
|
|
return G_TOKEN_RIGHT_PAREN;
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
}
|
|
|
|
else if (symbol == SYMBOL_FIRST_CHILD)
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_FIRST;
|
2010-04-20 23:46:52 +00:00
|
|
|
else if (symbol == SYMBOL_LAST_CHILD)
|
2010-08-05 09:08:51 +00:00
|
|
|
*flags = GTK_REGION_LAST;
|
2010-04-22 23:28:24 +00:00
|
|
|
else
|
|
|
|
{
|
2010-08-16 17:09:34 +00:00
|
|
|
*flags = 0;
|
|
|
|
return G_TOKEN_SYMBOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GTokenType
|
|
|
|
parse_pseudo_class (GtkCssProvider *css_provider,
|
|
|
|
GScanner *scanner,
|
|
|
|
SelectorPath *selector)
|
|
|
|
{
|
|
|
|
GtkStateType state;
|
2010-04-22 23:28:24 +00:00
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_SYMBOL)
|
|
|
|
return G_TOKEN_SYMBOL;
|
|
|
|
|
|
|
|
state = GPOINTER_TO_INT (scanner->value.v_symbol);
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case GTK_STATE_ACTIVE:
|
|
|
|
selector->state |= GTK_STATE_FLAG_ACTIVE;
|
|
|
|
break;
|
|
|
|
case GTK_STATE_PRELIGHT:
|
|
|
|
selector->state |= GTK_STATE_FLAG_PRELIGHT;
|
|
|
|
break;
|
|
|
|
case GTK_STATE_SELECTED:
|
|
|
|
selector->state |= GTK_STATE_FLAG_SELECTED;
|
|
|
|
break;
|
|
|
|
case GTK_STATE_INSENSITIVE:
|
|
|
|
selector->state |= GTK_STATE_FLAG_INSENSITIVE;
|
|
|
|
break;
|
|
|
|
case GTK_STATE_INCONSISTENT:
|
|
|
|
selector->state |= GTK_STATE_FLAG_INCONSISTENT;
|
|
|
|
break;
|
|
|
|
case GTK_STATE_FOCUSED:
|
|
|
|
selector->state |= GTK_STATE_FLAG_FOCUSED;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return G_TOKEN_SYMBOL;
|
2010-04-22 23:28:24 +00:00
|
|
|
}
|
2010-04-20 23:46:52 +00:00
|
|
|
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
static GTokenType
|
2010-04-15 22:29:11 +00:00
|
|
|
parse_selector (GtkCssProvider *css_provider,
|
|
|
|
GScanner *scanner,
|
|
|
|
SelectorPath **selector_out)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
|
|
|
SelectorPath *path;
|
|
|
|
|
2010-04-20 23:51:46 +00:00
|
|
|
path = selector_path_new ();
|
|
|
|
*selector_out = path;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-15 23:44:50 +00:00
|
|
|
if (scanner->token != ':' &&
|
2010-08-04 09:44:32 +00:00
|
|
|
scanner->token != '#' &&
|
2010-08-06 10:08:48 +00:00
|
|
|
scanner->token != '.' &&
|
2010-04-15 23:44:50 +00:00
|
|
|
scanner->token != G_TOKEN_IDENTIFIER)
|
2010-04-11 21:03:25 +00:00
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
|
2010-08-04 09:44:32 +00:00
|
|
|
while (scanner->token == '#' ||
|
2010-08-06 10:08:48 +00:00
|
|
|
scanner->token == '.' ||
|
2010-08-04 09:44:32 +00:00
|
|
|
scanner->token == G_TOKEN_IDENTIFIER)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
2010-08-06 10:08:48 +00:00
|
|
|
if (scanner->token == '#' ||
|
|
|
|
scanner->token == '.')
|
2010-08-04 09:44:32 +00:00
|
|
|
{
|
2010-08-06 10:08:48 +00:00
|
|
|
gboolean is_class;
|
|
|
|
|
|
|
|
is_class = (scanner->token == '.');
|
|
|
|
|
2010-08-04 09:44:32 +00:00
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_IDENTIFIER)
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
|
2010-08-04 12:51:01 +00:00
|
|
|
selector_path_prepend_glob (path);
|
|
|
|
selector_path_prepend_combinator (path, COMBINATOR_CHILD);
|
2010-08-06 10:08:48 +00:00
|
|
|
|
|
|
|
if (is_class)
|
|
|
|
selector_path_prepend_class (path, scanner->value.v_identifier);
|
|
|
|
else
|
|
|
|
selector_path_prepend_name (path, scanner->value.v_identifier);
|
2010-08-04 09:44:32 +00:00
|
|
|
}
|
|
|
|
else if (g_ascii_isupper (scanner->value.v_identifier[0]))
|
2010-08-04 12:51:01 +00:00
|
|
|
{
|
|
|
|
gchar *pos;
|
|
|
|
|
2010-08-06 10:08:48 +00:00
|
|
|
if ((pos = strchr (scanner->value.v_identifier, '#')) != NULL ||
|
|
|
|
(pos = strchr (scanner->value.v_identifier, '.')) != NULL)
|
2010-08-04 12:51:01 +00:00
|
|
|
{
|
|
|
|
gchar *type_name, *name;
|
2010-08-06 10:08:48 +00:00
|
|
|
gboolean is_class;
|
|
|
|
|
|
|
|
is_class = (*pos == '.');
|
2010-08-04 12:51:01 +00:00
|
|
|
|
2010-08-06 10:08:48 +00:00
|
|
|
/* Widget type and name/class put together */
|
2010-08-04 12:51:01 +00:00
|
|
|
name = pos + 1;
|
|
|
|
*pos = '\0';
|
|
|
|
type_name = scanner->value.v_identifier;
|
|
|
|
|
|
|
|
selector_path_prepend_type (path, type_name);
|
|
|
|
|
|
|
|
/* This is only so there is a direct relationship
|
|
|
|
* between widget type and its name.
|
|
|
|
*/
|
|
|
|
selector_path_prepend_combinator (path, COMBINATOR_CHILD);
|
2010-08-06 10:08:48 +00:00
|
|
|
|
|
|
|
if (is_class)
|
|
|
|
selector_path_prepend_class (path, name);
|
|
|
|
else
|
|
|
|
selector_path_prepend_name (path, name);
|
2010-08-04 12:51:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
selector_path_prepend_type (path, scanner->value.v_identifier);
|
|
|
|
}
|
2010-04-20 23:46:52 +00:00
|
|
|
else if (g_ascii_islower (scanner->value.v_identifier[0]))
|
|
|
|
{
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags flags = 0;
|
2010-04-20 23:48:01 +00:00
|
|
|
gchar *region_name;
|
|
|
|
|
|
|
|
region_name = g_strdup (scanner->value.v_identifier);
|
2010-04-20 23:46:52 +00:00
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
if (g_scanner_peek_next_token (scanner) == ':')
|
2010-04-20 23:46:52 +00:00
|
|
|
{
|
2010-08-16 17:09:34 +00:00
|
|
|
ParserSymbol symbol;
|
2010-04-22 23:28:24 +00:00
|
|
|
|
2010-04-20 23:46:52 +00:00
|
|
|
g_scanner_get_next_token (scanner);
|
2010-08-16 17:09:34 +00:00
|
|
|
css_provider_push_scope (css_provider, SCOPE_PSEUDO_CLASS);
|
|
|
|
|
|
|
|
/* Check for the next token being nth-child, parse in that
|
|
|
|
* case, and fallback into common state parsing if not.
|
|
|
|
*/
|
|
|
|
if (g_scanner_peek_next_token (scanner) != G_TOKEN_SYMBOL)
|
|
|
|
return G_TOKEN_SYMBOL;
|
|
|
|
|
|
|
|
symbol = GPOINTER_TO_INT (scanner->next_value.v_symbol);
|
|
|
|
|
|
|
|
if (symbol == SYMBOL_FIRST_CHILD ||
|
|
|
|
symbol == SYMBOL_LAST_CHILD ||
|
|
|
|
symbol == SYMBOL_NTH_CHILD)
|
|
|
|
{
|
|
|
|
GTokenType token;
|
2010-04-20 23:46:52 +00:00
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
if ((token = parse_nth_child (css_provider, scanner, &flags)) != G_TOKEN_NONE)
|
|
|
|
return token;
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
selector_path_prepend_region (path, region_name, 0);
|
|
|
|
g_free (region_name);
|
|
|
|
break;
|
|
|
|
}
|
2010-04-20 23:46:52 +00:00
|
|
|
}
|
2010-04-20 23:48:01 +00:00
|
|
|
|
|
|
|
selector_path_prepend_region (path, region_name, flags);
|
|
|
|
g_free (region_name);
|
2010-04-20 23:46:52 +00:00
|
|
|
}
|
2010-04-15 22:29:11 +00:00
|
|
|
else if (scanner->value.v_identifier[0] == '*')
|
|
|
|
selector_path_prepend_glob (path);
|
|
|
|
else
|
2010-04-20 23:51:46 +00:00
|
|
|
return G_TOKEN_IDENTIFIER;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-04-15 22:29:11 +00:00
|
|
|
g_scanner_get_next_token (scanner);
|
2010-04-16 01:02:42 +00:00
|
|
|
|
|
|
|
if (scanner->token == '>')
|
|
|
|
{
|
|
|
|
selector_path_prepend_combinator (path, COMBINATOR_CHILD);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
if (scanner->token == ':')
|
2010-04-14 21:36:48 +00:00
|
|
|
{
|
2010-04-15 23:44:50 +00:00
|
|
|
/* Add glob selector if path is empty */
|
|
|
|
if (selector_path_depth (path) == 0)
|
|
|
|
selector_path_prepend_glob (path);
|
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
css_provider_push_scope (css_provider, SCOPE_PSEUDO_CLASS);
|
2010-04-14 21:36:48 +00:00
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
while (scanner->token == ':')
|
2010-04-22 23:28:24 +00:00
|
|
|
{
|
2010-08-16 17:09:34 +00:00
|
|
|
GTokenType token;
|
|
|
|
|
|
|
|
if ((token = parse_pseudo_class (css_provider, scanner, path)) != G_TOKEN_NONE)
|
|
|
|
return token;
|
|
|
|
|
|
|
|
g_scanner_get_next_token (scanner);
|
2010-04-22 23:28:24 +00:00
|
|
|
}
|
2010-04-14 21:36:48 +00:00
|
|
|
|
2010-08-16 17:09:34 +00:00
|
|
|
css_provider_pop_scope (css_provider);
|
2010-04-14 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
|
2010-06-25 18:27:15 +00:00
|
|
|
#define SKIP_SPACES(s) while (s[0] == ' ') s++;
|
|
|
|
|
|
|
|
static GtkSymbolicColor *
|
|
|
|
symbolic_color_parse_str (const gchar *string,
|
|
|
|
gchar **end_ptr)
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *symbolic_color = NULL;
|
|
|
|
gchar *str;
|
|
|
|
|
|
|
|
str = (gchar *) string;
|
|
|
|
|
|
|
|
if (str[0] == '#')
|
|
|
|
{
|
|
|
|
GdkColor color;
|
|
|
|
gchar *color_str;
|
|
|
|
const gchar *end;
|
|
|
|
|
|
|
|
end = str + 1;
|
|
|
|
|
|
|
|
while (g_ascii_isxdigit (*end))
|
|
|
|
end++;
|
|
|
|
|
|
|
|
color_str = g_strndup (str, end - str);
|
|
|
|
*end_ptr = (gchar *) end;
|
|
|
|
|
|
|
|
if (!gdk_color_parse (color_str, &color))
|
|
|
|
{
|
|
|
|
g_free (color_str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
symbolic_color = gtk_symbolic_color_new_literal (&color);
|
|
|
|
g_free (color_str);
|
|
|
|
}
|
|
|
|
else if (str[0] == '@')
|
|
|
|
{
|
|
|
|
const gchar *end;
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
str++;
|
|
|
|
end = str;
|
|
|
|
|
|
|
|
while (*end == '-' || *end == '_' ||
|
|
|
|
g_ascii_isalpha (*end))
|
|
|
|
end++;
|
|
|
|
|
|
|
|
name = g_strndup (str, end - str);
|
|
|
|
symbolic_color = gtk_symbolic_color_new_name (name);
|
|
|
|
g_free (name);
|
|
|
|
|
|
|
|
*end_ptr = (gchar *) end;
|
|
|
|
}
|
|
|
|
else if (g_str_has_prefix (str, "shade"))
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *param_color;
|
|
|
|
gdouble factor;
|
|
|
|
|
|
|
|
str += strlen ("shade");
|
|
|
|
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
|
|
|
|
if (*str != '(')
|
|
|
|
{
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
param_color = symbolic_color_parse_str (str, end_ptr);
|
|
|
|
|
|
|
|
if (!param_color)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
str = *end_ptr;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
|
|
|
|
if (str[0] != ',')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (param_color);
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
factor = g_ascii_strtod (str, end_ptr);
|
|
|
|
|
|
|
|
str = *end_ptr;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
|
|
|
|
if (str[0] != ')')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (param_color);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
symbolic_color = gtk_symbolic_color_new_shade (param_color, factor);
|
|
|
|
(*end_ptr)++;
|
|
|
|
}
|
|
|
|
else if (g_str_has_prefix (str, "mix"))
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *color1, *color2;
|
|
|
|
gdouble factor;
|
|
|
|
|
|
|
|
str += strlen ("mix");
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
|
|
|
|
if (*str != '(')
|
|
|
|
{
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
color1 = symbolic_color_parse_str (str, end_ptr);
|
|
|
|
|
|
|
|
if (!color1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
str = *end_ptr;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
|
|
|
|
if (str[0] != ',')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (color1);
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
color2 = symbolic_color_parse_str (str, end_ptr);
|
|
|
|
|
|
|
|
if (!color2 || *end_ptr[0] != ',')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (color1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = *end_ptr;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
|
|
|
|
if (str[0] != ',')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (color1);
|
|
|
|
gtk_symbolic_color_unref (color2);
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
factor = g_ascii_strtod (str, end_ptr);
|
|
|
|
|
|
|
|
str = *end_ptr;
|
|
|
|
SKIP_SPACES (str);
|
|
|
|
*end_ptr = (gchar *) str;
|
|
|
|
|
|
|
|
if (str[0] != ')')
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (color1);
|
|
|
|
gtk_symbolic_color_unref (color2);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
symbolic_color = gtk_symbolic_color_new_mix (color1, color2, factor);
|
|
|
|
(*end_ptr)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return symbolic_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef SKIP_SPACES
|
|
|
|
|
|
|
|
static GtkSymbolicColor *
|
|
|
|
symbolic_color_parse (const gchar *str)
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *color;
|
|
|
|
gchar *end;
|
|
|
|
|
|
|
|
color = symbolic_color_parse_str (str, &end);
|
|
|
|
|
|
|
|
if (*end != '\0')
|
|
|
|
{
|
|
|
|
g_warning ("Error parsing symbolic color \"%s\", stopped at char %ld : '%c'",
|
|
|
|
str, end - str, *end);
|
|
|
|
|
|
|
|
if (color)
|
|
|
|
{
|
|
|
|
gtk_symbolic_color_unref (color);
|
|
|
|
color = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
static gboolean
|
2010-06-18 15:04:03 +00:00
|
|
|
css_provider_parse_value (const gchar *value_str,
|
|
|
|
GValue *value)
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
2010-06-18 15:04:03 +00:00
|
|
|
GType type;
|
2010-06-18 14:42:48 +00:00
|
|
|
gboolean parsed = TRUE;
|
|
|
|
|
2010-06-18 15:04:03 +00:00
|
|
|
type = G_VALUE_TYPE (value);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (type == GDK_TYPE_COLOR)
|
|
|
|
{
|
|
|
|
GdkColor color;
|
|
|
|
|
2010-06-25 18:31:08 +00:00
|
|
|
if (gdk_color_parse (value_str, &color) == TRUE)
|
|
|
|
g_value_set_boxed (value, &color);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *symbolic_color;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-06-25 18:31:08 +00:00
|
|
|
symbolic_color = symbolic_color_parse (value_str);
|
|
|
|
|
|
|
|
if (!symbolic_color)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_value_unset (value);
|
|
|
|
g_value_init (value, GTK_TYPE_SYMBOLIC_COLOR);
|
|
|
|
g_value_take_boxed (value, symbolic_color);
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
else if (type == PANGO_TYPE_FONT_DESCRIPTION)
|
|
|
|
{
|
|
|
|
PangoFontDescription *font_desc;
|
|
|
|
|
|
|
|
font_desc = pango_font_description_from_string (value_str);
|
|
|
|
g_value_take_boxed (value, font_desc);
|
|
|
|
}
|
2010-06-18 14:46:31 +00:00
|
|
|
else if (type == G_TYPE_BOOLEAN)
|
|
|
|
{
|
|
|
|
if (value_str[0] == '1' ||
|
|
|
|
g_ascii_strcasecmp (value_str, "true") == 0)
|
|
|
|
g_value_set_boolean (value, TRUE);
|
|
|
|
else
|
|
|
|
g_value_set_boolean (value, FALSE);
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
else if (type == G_TYPE_INT)
|
2010-06-18 14:42:48 +00:00
|
|
|
g_value_set_int (value, atoi (value_str));
|
2010-04-11 21:03:25 +00:00
|
|
|
else if (type == G_TYPE_DOUBLE)
|
2010-06-18 14:42:48 +00:00
|
|
|
g_value_set_double (value, g_ascii_strtod (value_str, NULL));
|
2010-06-13 15:31:22 +00:00
|
|
|
else if (type == GTK_TYPE_THEMING_ENGINE)
|
|
|
|
{
|
|
|
|
GtkThemingEngine *engine;
|
|
|
|
|
|
|
|
engine = gtk_theming_engine_load (value_str);
|
|
|
|
g_value_set_object (value, engine);
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
else
|
2010-06-18 14:42:48 +00:00
|
|
|
{
|
|
|
|
g_warning ("Cannot parse string '%s' for type %s", value_str, g_type_name (type));
|
|
|
|
parsed = FALSE;
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-06-18 14:42:48 +00:00
|
|
|
return parsed;
|
2010-04-11 21:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GTokenType
|
|
|
|
parse_rule (GtkCssProvider *css_provider,
|
|
|
|
GScanner *scanner)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GTokenType expected_token;
|
|
|
|
SelectorPath *selector;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
css_provider_push_scope (css_provider, SCOPE_SELECTOR);
|
2010-06-25 18:27:15 +00:00
|
|
|
|
|
|
|
if (scanner->token == G_TOKEN_IDENTIFIER &&
|
|
|
|
scanner->value.v_identifier[0] == '@')
|
|
|
|
{
|
|
|
|
GtkSymbolicColor *color;
|
|
|
|
gchar *color_name;
|
|
|
|
|
|
|
|
/* Rule is a color mapping */
|
|
|
|
color_name = g_strdup (&scanner->value.v_identifier[1]);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != ':')
|
|
|
|
return ':';
|
|
|
|
|
|
|
|
css_provider_push_scope (css_provider, SCOPE_VALUE);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_IDENTIFIER)
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
|
|
|
|
color = symbolic_color_parse (scanner->value.v_identifier);
|
|
|
|
|
|
|
|
if (!color)
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
|
|
|
|
g_hash_table_insert (priv->symbolic_colors, color_name, color);
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != ';')
|
|
|
|
return ';';
|
|
|
|
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
|
2010-04-14 21:36:48 +00:00
|
|
|
expected_token = parse_selector (css_provider, scanner, &selector);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (expected_token != G_TOKEN_NONE)
|
2010-04-20 23:51:46 +00:00
|
|
|
{
|
|
|
|
selector_path_unref (selector);
|
|
|
|
return expected_token;
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
priv->cur_selectors = g_slist_prepend (priv->cur_selectors, selector);
|
|
|
|
|
|
|
|
while (scanner->token == ',')
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
2010-04-14 21:36:48 +00:00
|
|
|
expected_token = parse_selector (css_provider, scanner, &selector);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (expected_token != G_TOKEN_NONE)
|
2010-04-20 23:51:46 +00:00
|
|
|
{
|
|
|
|
selector_path_unref (selector);
|
|
|
|
return expected_token;
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
priv->cur_selectors = g_slist_prepend (priv->cur_selectors, selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_LEFT_CURLY)
|
|
|
|
return G_TOKEN_LEFT_CURLY;
|
|
|
|
|
|
|
|
/* Declarations parsing */
|
|
|
|
css_provider_push_scope (css_provider, SCOPE_DECLARATION);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
while (scanner->token == G_TOKEN_IDENTIFIER)
|
|
|
|
{
|
|
|
|
const gchar *value_str = NULL;
|
2010-08-04 15:49:15 +00:00
|
|
|
GtkStylePropertyParser parse_func = NULL;
|
2010-04-11 21:03:25 +00:00
|
|
|
GType prop_type;
|
2010-08-04 15:49:15 +00:00
|
|
|
GError *error = NULL;
|
2010-04-11 21:03:25 +00:00
|
|
|
gchar *prop;
|
|
|
|
|
|
|
|
prop = g_strdup (scanner->value.v_identifier);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != ':')
|
|
|
|
{
|
|
|
|
g_free (prop);
|
|
|
|
return ':';
|
|
|
|
}
|
|
|
|
|
|
|
|
css_provider_push_scope (css_provider, SCOPE_VALUE);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_IDENTIFIER)
|
|
|
|
{
|
|
|
|
g_free (prop);
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
}
|
|
|
|
|
|
|
|
value_str = g_strstrip (scanner->value.v_identifier);
|
|
|
|
|
2010-08-04 15:51:19 +00:00
|
|
|
if (gtk_style_set_lookup_property (prop, &prop_type, &parse_func))
|
2010-06-18 15:04:03 +00:00
|
|
|
{
|
|
|
|
GValue *val;
|
|
|
|
|
|
|
|
val = g_slice_new0 (GValue);
|
|
|
|
g_value_init (val, prop_type);
|
|
|
|
|
2010-08-05 14:21:47 +00:00
|
|
|
if (prop_type == G_TYPE_STRING)
|
|
|
|
{
|
|
|
|
g_value_set_string (val, value_str);
|
|
|
|
g_hash_table_insert (priv->cur_properties, prop, val);
|
|
|
|
}
|
2010-08-04 15:49:15 +00:00
|
|
|
else if ((parse_func && (parse_func) (value_str, val, &error)) ||
|
|
|
|
(!parse_func && css_provider_parse_value (value_str, val)))
|
2010-06-18 15:04:03 +00:00
|
|
|
g_hash_table_insert (priv->cur_properties, prop, val);
|
|
|
|
else
|
|
|
|
{
|
2010-08-04 15:49:15 +00:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
g_warning ("Error parsing property value: %s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
2010-06-18 15:04:03 +00:00
|
|
|
g_value_unset (val);
|
|
|
|
g_slice_free (GValue, val);
|
|
|
|
g_free (prop);
|
|
|
|
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
}
|
|
|
|
}
|
2010-08-04 15:51:19 +00:00
|
|
|
else if (prop[0] == '-' &&
|
|
|
|
g_ascii_isupper (prop[1]))
|
|
|
|
{
|
|
|
|
GValue *val;
|
|
|
|
|
|
|
|
val = g_slice_new0 (GValue);
|
|
|
|
g_value_init (val, G_TYPE_STRING);
|
|
|
|
g_value_set_string (val, value_str);
|
|
|
|
|
|
|
|
g_hash_table_insert (priv->cur_properties, prop, val);
|
|
|
|
}
|
2010-04-11 21:03:25 +00:00
|
|
|
else
|
|
|
|
g_free (prop);
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
|
|
|
|
if (scanner->token != ';')
|
|
|
|
return ';';
|
|
|
|
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scanner->token != G_TOKEN_RIGHT_CURLY)
|
|
|
|
return G_TOKEN_RIGHT_CURLY;
|
|
|
|
|
|
|
|
css_provider_pop_scope (css_provider);
|
|
|
|
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
parse_stylesheet (GtkCssProvider *css_provider)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
g_scanner_get_next_token (priv->scanner);
|
|
|
|
|
|
|
|
while (!g_scanner_eof (priv->scanner))
|
|
|
|
{
|
|
|
|
GTokenType expected_token;
|
|
|
|
|
|
|
|
css_provider_reset_parser (css_provider);
|
|
|
|
expected_token = parse_rule (css_provider, priv->scanner);
|
|
|
|
|
|
|
|
if (expected_token != G_TOKEN_NONE)
|
|
|
|
{
|
|
|
|
g_scanner_unexp_token (priv->scanner, expected_token,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"Error parsing style resource", FALSE);
|
|
|
|
|
|
|
|
while (!g_scanner_eof (priv->scanner) &&
|
|
|
|
priv->scanner->token != G_TOKEN_RIGHT_CURLY)
|
|
|
|
g_scanner_get_next_token (priv->scanner);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
css_provider_commit (css_provider);
|
|
|
|
|
|
|
|
g_scanner_get_next_token (priv->scanner);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_css_provider_load_from_data (GtkCssProvider *css_provider,
|
|
|
|
const gchar *data,
|
|
|
|
gssize length,
|
|
|
|
GError *error)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_CSS_PROVIDER (css_provider), FALSE);
|
|
|
|
g_return_val_if_fail (data != NULL, FALSE);
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (length < 0)
|
|
|
|
length = strlen (data);
|
|
|
|
|
|
|
|
if (priv->selectors_info->len > 0)
|
|
|
|
g_ptr_array_remove_range (priv->selectors_info, 0, priv->selectors_info->len);
|
|
|
|
|
|
|
|
css_provider_reset_parser (css_provider);
|
2010-06-19 14:04:30 +00:00
|
|
|
priv->scanner->input_name = "-";
|
2010-04-11 21:03:25 +00:00
|
|
|
g_scanner_input_text (priv->scanner, data, (guint) length);
|
|
|
|
|
|
|
|
parse_stylesheet (css_provider);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_css_provider_load_from_file (GtkCssProvider *css_provider,
|
|
|
|
GFile *file,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GtkCssProviderPrivate *priv;
|
|
|
|
GError *internal_error = NULL;
|
|
|
|
gchar *data;
|
|
|
|
gsize length;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_CSS_PROVIDER (css_provider), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
|
2010-07-03 00:19:27 +00:00
|
|
|
priv = css_provider->priv;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
if (!g_file_load_contents (file, NULL,
|
|
|
|
&data, &length,
|
|
|
|
NULL, &internal_error))
|
|
|
|
{
|
|
|
|
g_propagate_error (error, internal_error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->selectors_info->len > 0)
|
|
|
|
g_ptr_array_remove_range (priv->selectors_info, 0, priv->selectors_info->len);
|
|
|
|
|
2010-06-19 14:04:30 +00:00
|
|
|
g_free (priv->filename);
|
|
|
|
priv->filename = g_file_get_path (file);
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
css_provider_reset_parser (css_provider);
|
2010-06-19 14:04:30 +00:00
|
|
|
priv->scanner->input_name = priv->filename;
|
2010-04-11 21:03:25 +00:00
|
|
|
g_scanner_input_text (priv->scanner, data, (guint) length);
|
|
|
|
|
|
|
|
parse_stylesheet (css_provider);
|
|
|
|
|
|
|
|
g_free (data);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-08-02 14:16:03 +00:00
|
|
|
GtkCssProvider *
|
|
|
|
gtk_css_provider_get_default (void)
|
|
|
|
{
|
|
|
|
static GtkCssProvider *provider;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!provider))
|
|
|
|
{
|
|
|
|
const gchar *str =
|
|
|
|
"@fg_color: #000; \n"
|
|
|
|
"@bg_color: #dcdad5; \n"
|
|
|
|
"@text_color: #000; \n"
|
|
|
|
"@base_color: #fff; \n"
|
|
|
|
"@selected_bg_color: #4b6983; \n"
|
|
|
|
"@selected_fg_color: #fff; \n"
|
|
|
|
"@tooltip_bg_color: #eee1b3; \n"
|
|
|
|
"@tooltip_fg_color: #000; \n"
|
|
|
|
"\n"
|
2010-08-16 17:09:34 +00:00
|
|
|
"*,\n"
|
|
|
|
"GtkTreeView > GtkButton {\n"
|
2010-08-02 14:16:03 +00:00
|
|
|
" background-color: @bg_color;\n"
|
|
|
|
" foreground-color: @fg_color;\n"
|
|
|
|
" text-color: @text_color; \n"
|
|
|
|
" base-color: @base_color; \n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"*:prelight {\n"
|
|
|
|
" background-color: #eeebe7;\n"
|
|
|
|
" foreground-color: #000000;\n"
|
|
|
|
" text-color: #eeebe7; \n"
|
|
|
|
" base-color: #ffffff; \n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"*:selected {\n"
|
|
|
|
" background-color: #4b6983;\n"
|
|
|
|
" foreground-color: #ffffff;\n"
|
|
|
|
" base-color: #4b6983;\n"
|
|
|
|
" text-color: #ffffff;\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"*:insensitive {\n"
|
|
|
|
" background-color: #dcdad5;\n"
|
|
|
|
" foreground-color: #757575;\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"GtkTreeView, GtkIconView {\n"
|
|
|
|
" background-color: #ffffff; \n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
2010-08-04 09:46:01 +00:00
|
|
|
"GtkTreeView > row:nth-child(odd) { \n"
|
2010-08-02 14:16:03 +00:00
|
|
|
" background-color: shade(#ffffff, 0.93); \n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
2010-08-06 10:09:09 +00:00
|
|
|
".tooltip {\n"
|
2010-08-02 14:16:03 +00:00
|
|
|
" background-color: @tooltip_bg_color; \n"
|
|
|
|
" foreground-color: @tooltip_fg_color; \n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"GtkToggleButton:prelight {\n"
|
|
|
|
" text-color: #000; \n"
|
|
|
|
"}\n"
|
2010-08-16 17:09:34 +00:00
|
|
|
"\n"
|
|
|
|
".button:active {\n"
|
|
|
|
" background-color: #c4c2bd;\n"
|
|
|
|
" foreground-color: #000000;\n"
|
|
|
|
" text-color: #c4c2bd; \n"
|
|
|
|
" base-color: #9c9a94; \n"
|
|
|
|
"}\n"
|
2010-08-02 14:16:03 +00:00
|
|
|
"\n";
|
|
|
|
|
|
|
|
provider = gtk_css_provider_new ();
|
|
|
|
gtk_css_provider_load_from_data (provider, str, -1, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return provider;
|
|
|
|
}
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
#define __GTK_CSS_PROVIDER_C__
|
|
|
|
#include "gtkaliasdef.c"
|