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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-04-14 02:47:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_CSS_PARSER_PRIVATE_H__
|
|
|
|
#define __GTK_CSS_PARSER_PRIVATE_H__
|
|
|
|
|
2012-03-26 16:36:20 +00:00
|
|
|
#include <gtk/gtkcssprovider.h>
|
2011-04-14 02:47:18 +00:00
|
|
|
|
2019-03-22 03:20:17 +00:00
|
|
|
#include <gtk/css/gtkcss.h>
|
2019-03-23 17:21:59 +00:00
|
|
|
#include "gtk/css/gtkcsstokenizerprivate.h"
|
2019-04-09 02:47:00 +00:00
|
|
|
#include "gtk/css/gtkcssparserprivate.h"
|
2019-03-22 03:20:17 +00:00
|
|
|
|
2011-04-14 02:47:18 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2014-05-01 17:47:58 +00:00
|
|
|
/* XXX: Find better place to put it? */
|
|
|
|
void _gtk_css_print_string (GString *str,
|
|
|
|
const char *string);
|
|
|
|
|
|
|
|
|
2011-04-14 02:47:18 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_PARSER_PRIVATE_H__ */
|