2011-04-14 02:47:18 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2011 Benjamin Otte <otte@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_CSS_PARSER_PRIVATE_H__
|
|
|
|
#define __GTK_CSS_PARSER_PRIVATE_H__
|
|
|
|
|
2012-01-13 22:48:42 +00:00
|
|
|
#include "gtk/gtkcsstypesprivate.h"
|
2011-04-14 02:47:18 +00:00
|
|
|
#include <gtk/gtksymboliccolor.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2012-01-13 22:48:42 +00:00
|
|
|
typedef enum /*< skip >*/ {
|
|
|
|
GTK_CSS_POSITIVE_ONLY = (1 << 0),
|
|
|
|
GTK_CSS_PARSE_PERCENT = (1 << 1),
|
|
|
|
GTK_CSS_PARSE_NUMBER = (1 << 2),
|
|
|
|
GTK_CSS_NUMBER_AS_PIXELS = (1 << 3),
|
2012-01-15 16:51:58 +00:00
|
|
|
GTK_CSS_PARSE_LENGTH = (1 << 4),
|
|
|
|
GTK_CSS_PARSE_ANGLE = (1 << 5)
|
2012-01-13 22:48:42 +00:00
|
|
|
} GtkCssNumberParseFlags;
|
|
|
|
|
2011-04-14 02:47:18 +00:00
|
|
|
typedef struct _GtkCssParser GtkCssParser;
|
|
|
|
|
|
|
|
typedef void (* GtkCssParserErrorFunc) (GtkCssParser *parser,
|
|
|
|
const GError *error,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
GtkCssParser * _gtk_css_parser_new (const char *data,
|
|
|
|
GtkCssParserErrorFunc error_func,
|
|
|
|
gpointer user_data);
|
|
|
|
void _gtk_css_parser_free (GtkCssParser *parser);
|
|
|
|
|
2011-05-18 16:32:22 +00:00
|
|
|
void _gtk_css_parser_take_error (GtkCssParser *parser,
|
|
|
|
GError *error);
|
2011-04-14 02:47:18 +00:00
|
|
|
void _gtk_css_parser_error (GtkCssParser *parser,
|
|
|
|
const char *format,
|
|
|
|
...) G_GNUC_PRINTF (2, 3);
|
|
|
|
|
|
|
|
guint _gtk_css_parser_get_line (GtkCssParser *parser);
|
|
|
|
guint _gtk_css_parser_get_position (GtkCssParser *parser);
|
|
|
|
|
|
|
|
gboolean _gtk_css_parser_is_eof (GtkCssParser *parser);
|
|
|
|
gboolean _gtk_css_parser_begins_with (GtkCssParser *parser,
|
|
|
|
char c);
|
2011-12-20 07:15:18 +00:00
|
|
|
gboolean _gtk_css_parser_has_prefix (GtkCssParser *parser,
|
|
|
|
const char *prefix);
|
2011-04-14 02:47:18 +00:00
|
|
|
gboolean _gtk_css_parser_is_string (GtkCssParser *parser);
|
|
|
|
|
|
|
|
/* IMPORTANT:
|
|
|
|
* _try_foo() functions do not modify the data pointer if they fail, nor do they
|
|
|
|
* signal an error. _read_foo() will modify the data pointer and position it at
|
|
|
|
* the first token that is broken and emit an error about the failure.
|
|
|
|
* So only call _read_foo() when you know that you are reading a foo. _try_foo()
|
|
|
|
* however is fine to call if you don't know yet if the token is a foo or a bar,
|
|
|
|
* you can _try_bar() if try_foo() failed.
|
|
|
|
*/
|
|
|
|
gboolean _gtk_css_parser_try (GtkCssParser *parser,
|
|
|
|
const char *string,
|
|
|
|
gboolean skip_whitespace);
|
|
|
|
char * _gtk_css_parser_try_ident (GtkCssParser *parser,
|
|
|
|
gboolean skip_whitespace);
|
|
|
|
char * _gtk_css_parser_try_name (GtkCssParser *parser,
|
|
|
|
gboolean skip_whitespace);
|
|
|
|
gboolean _gtk_css_parser_try_int (GtkCssParser *parser,
|
|
|
|
int *value);
|
|
|
|
gboolean _gtk_css_parser_try_uint (GtkCssParser *parser,
|
2011-05-22 04:07:18 +00:00
|
|
|
guint *value);
|
2011-04-14 02:47:18 +00:00
|
|
|
gboolean _gtk_css_parser_try_double (GtkCssParser *parser,
|
|
|
|
gdouble *value);
|
2012-01-05 14:47:23 +00:00
|
|
|
gboolean _gtk_css_parser_try_length (GtkCssParser *parser,
|
|
|
|
int *value);
|
2011-11-25 13:11:56 +00:00
|
|
|
gboolean _gtk_css_parser_try_enum (GtkCssParser *parser,
|
2012-01-05 14:47:23 +00:00
|
|
|
GType enum_type,
|
|
|
|
int *value);
|
2011-04-14 02:47:18 +00:00
|
|
|
|
2012-01-13 22:48:42 +00:00
|
|
|
gboolean _gtk_css_parser_has_number (GtkCssParser *parser);
|
|
|
|
gboolean _gtk_css_parser_read_number (GtkCssParser *parser,
|
|
|
|
GtkCssNumber *number,
|
|
|
|
GtkCssNumberParseFlags flags);
|
2011-04-14 02:47:18 +00:00
|
|
|
char * _gtk_css_parser_read_string (GtkCssParser *parser);
|
|
|
|
char * _gtk_css_parser_read_value (GtkCssParser *parser);
|
|
|
|
GtkSymbolicColor *_gtk_css_parser_read_symbolic_color
|
|
|
|
(GtkCssParser *parser);
|
2012-01-13 22:55:53 +00:00
|
|
|
GFile * _gtk_css_parser_read_url (GtkCssParser *parser,
|
|
|
|
GFile *base);
|
2011-04-14 02:47:18 +00:00
|
|
|
|
2012-01-13 22:48:42 +00:00
|
|
|
void _gtk_css_parser_skip_whitespace (GtkCssParser *parser);
|
2011-04-14 02:47:18 +00:00
|
|
|
void _gtk_css_parser_resync (GtkCssParser *parser,
|
|
|
|
gboolean sync_at_semicolon,
|
|
|
|
char terminator);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_PARSER_PRIVATE_H__ */
|