2011-12-28 15:15:00 +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-12-28 15:15:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_SYMBOLIC_COLOR_PRIVATE_H__
|
|
|
|
#define __GTK_SYMBOLIC_COLOR_PRIVATE_H__
|
|
|
|
|
2012-11-25 03:16:43 +00:00
|
|
|
#include "gtk/deprecated/gtksymboliccolor.h"
|
2012-04-05 19:09:35 +00:00
|
|
|
#include "gtk/gtkcssparserprivate.h"
|
2012-03-08 13:52:10 +00:00
|
|
|
#include "gtk/gtkcssvalueprivate.h"
|
2011-12-28 15:15:00 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2012-11-24 20:56:31 +00:00
|
|
|
GtkSymbolicColor * _gtk_css_symbolic_value_new (GtkCssParser *parser);
|
2012-04-07 04:18:03 +00:00
|
|
|
|
2012-11-25 00:55:53 +00:00
|
|
|
GtkCssValue * _gtk_symbolic_color_get_css_value (GtkSymbolicColor *symbolic);
|
|
|
|
|
2011-12-28 15:15:00 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_SYMBOLIC_COLOR_PRIVATE_H__ */
|