2011-12-31 12:43:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* 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.1 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-31 12:43:31 +00:00
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_CSS_STYLE_PROPERTY_PRIVATE_H__
|
|
|
|
#define __GTK_CSS_STYLE_PROPERTY_PRIVATE_H__
|
|
|
|
|
|
|
|
#include "gtk/gtkstylepropertyprivate.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_CSS_STYLE_PROPERTY (_gtk_css_style_property_get_type ())
|
|
|
|
#define GTK_CSS_STYLE_PROPERTY(obj) (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_CSS_STYLE_PROPERTY, GtkCssStyleProperty))
|
|
|
|
#define GTK_CSS_STYLE_PROPERTY_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_CSS_STYLE_PROPERTY, GtkCssStylePropertyClass))
|
|
|
|
#define GTK_IS_CSS_STYLE_PROPERTY(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_CSS_STYLE_PROPERTY))
|
|
|
|
#define GTK_IS_CSS_STYLE_PROPERTY_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_CSS_STYLE_PROPERTY))
|
|
|
|
#define GTK_CSS_STYLE_PROPERTY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CSS_STYLE_PROPERTY, GtkCssStylePropertyClass))
|
|
|
|
|
|
|
|
typedef struct _GtkCssStyleProperty GtkCssStyleProperty;
|
|
|
|
typedef struct _GtkCssStylePropertyClass GtkCssStylePropertyClass;
|
|
|
|
|
2012-03-26 15:24:02 +00:00
|
|
|
typedef GtkCssValue * (* GtkCssStylePropertyParseFunc) (GtkCssStyleProperty *property,
|
2012-04-18 19:58:22 +00:00
|
|
|
GtkCssParser *parser);
|
2012-03-27 21:54:06 +00:00
|
|
|
typedef void (* GtkCssStylePropertyQueryFunc) (GtkCssStyleProperty *property,
|
2020-01-08 07:37:04 +00:00
|
|
|
GtkCssValue *cssvalue,
|
2012-03-27 21:54:06 +00:00
|
|
|
GValue *value);
|
2011-12-31 12:43:31 +00:00
|
|
|
struct _GtkCssStyleProperty
|
|
|
|
{
|
|
|
|
GtkStyleProperty parent;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
2012-03-06 13:16:32 +00:00
|
|
|
GtkCssValue *initial_value;
|
2011-12-31 18:28:59 +00:00
|
|
|
guint id;
|
2015-01-27 03:32:09 +00:00
|
|
|
GtkCssAffects affects;
|
2011-12-31 18:59:16 +00:00
|
|
|
guint inherit :1;
|
2012-04-02 06:53:51 +00:00
|
|
|
guint animated :1;
|
2012-01-02 16:50:32 +00:00
|
|
|
|
2012-01-02 17:05:06 +00:00
|
|
|
GtkCssStylePropertyParseFunc parse_value;
|
2012-03-27 21:54:06 +00:00
|
|
|
GtkCssStylePropertyQueryFunc query_value;
|
2011-12-31 12:43:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkCssStylePropertyClass
|
|
|
|
{
|
|
|
|
GtkStylePropertyClass parent_class;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
|
|
GPtrArray *style_properties;
|
2011-12-31 12:43:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType _gtk_css_style_property_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2012-01-02 09:21:57 +00:00
|
|
|
void _gtk_css_style_property_init_properties (void);
|
|
|
|
|
2020-01-24 12:17:09 +00:00
|
|
|
guint _gtk_css_style_property_get_n_properties(void) G_GNUC_CONST;
|
2011-12-31 18:28:59 +00:00
|
|
|
GtkCssStyleProperty * _gtk_css_style_property_lookup_by_id (guint id);
|
|
|
|
|
2011-12-31 18:45:17 +00:00
|
|
|
gboolean _gtk_css_style_property_is_inherit (GtkCssStyleProperty *property);
|
2012-04-02 06:53:51 +00:00
|
|
|
gboolean _gtk_css_style_property_is_animated (GtkCssStyleProperty *property);
|
2015-01-27 03:32:09 +00:00
|
|
|
GtkCssAffects _gtk_css_style_property_get_affects (GtkCssStyleProperty *property);
|
2012-11-30 17:57:56 +00:00
|
|
|
gboolean _gtk_css_style_property_affects_size (GtkCssStyleProperty *property);
|
2012-12-06 20:14:02 +00:00
|
|
|
gboolean _gtk_css_style_property_affects_font (GtkCssStyleProperty *property);
|
2011-12-31 18:28:59 +00:00
|
|
|
guint _gtk_css_style_property_get_id (GtkCssStyleProperty *property);
|
2012-03-06 13:16:32 +00:00
|
|
|
GtkCssValue * _gtk_css_style_property_get_initial_value
|
2011-12-31 18:45:17 +00:00
|
|
|
(GtkCssStyleProperty *property);
|
2011-12-31 12:43:31 +00:00
|
|
|
|
2012-01-01 17:28:27 +00:00
|
|
|
void _gtk_css_style_property_print_value (GtkCssStyleProperty *property,
|
2012-03-06 13:16:32 +00:00
|
|
|
GtkCssValue *value,
|
2012-01-01 17:28:27 +00:00
|
|
|
GString *string);
|
2012-11-30 19:37:46 +00:00
|
|
|
|
2016-04-18 15:43:01 +00:00
|
|
|
/* XXX - find a better place for these */
|
|
|
|
GtkCssValue * gtk_css_font_family_value_parse (GtkCssParser *parser);
|
|
|
|
GtkCssValue * gtk_css_font_size_value_parse (GtkCssParser *parser);
|
|
|
|
|
2011-12-31 12:43:31 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_STYLE_PROPERTY_PRIVATE_H__ */
|