2012-03-06 13:16:08 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 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
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: Alexander Larsson <alexl@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_CSS_VALUE_PRIVATE_H__
|
|
|
|
#define __GTK_CSS_VALUE_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "gtkcsstypesprivate.h"
|
|
|
|
#include "gtksymboliccolor.h"
|
2012-03-27 23:56:57 +00:00
|
|
|
#include "gtkthemingengine.h"
|
2012-03-06 13:16:08 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_CSS_VALUE (_gtk_css_value_get_type ())
|
|
|
|
#define GTK_CSS_VALUE(obj) (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_CSS_VALUE, GtkCssValue))
|
|
|
|
#define GTK_CSS_VALUE_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_CSS_VALUE, GtkCssValueClass))
|
|
|
|
#define GTK_IS_CSS_VALUE(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_CSS_VALUE))
|
|
|
|
#define GTK_IS_CSS_VALUE_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_CSS_VALUE))
|
|
|
|
#define GTK_CSS_VALUE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CSS_VALUE, GtkCssValueClass))
|
|
|
|
|
2012-03-26 04:13:57 +00:00
|
|
|
/* A GtkCssValue is a refcounted immutable value type */
|
|
|
|
|
2012-03-06 13:16:08 +00:00
|
|
|
typedef struct _GtkCssValue GtkCssValue;
|
2012-03-26 04:13:57 +00:00
|
|
|
typedef struct _GtkCssValueClass GtkCssValueClass;
|
2012-03-06 13:16:08 +00:00
|
|
|
|
2012-03-26 04:13:57 +00:00
|
|
|
/* using define instead of struct here so compilers get the packing right */
|
|
|
|
#define GTK_CSS_VALUE_BASE \
|
|
|
|
const GtkCssValueClass *class; \
|
|
|
|
volatile gint ref_count;
|
|
|
|
|
|
|
|
struct _GtkCssValueClass {
|
|
|
|
void (* free) (GtkCssValue *value);
|
2012-03-26 04:46:29 +00:00
|
|
|
|
cssvalue: Add _gtk_css_value_equal()
For now, we return FALSE for all default css values, so this is not very
useful.
I also think of this as an optimization equal, not a guaranteed equal,
because we don't even have a notion of what "equal" means.
For example, for background-repeat, "repeat, repeat" and "repeat"
are functionally equivalent. But the cssvalue has no idea that it's used
for background-repeat.
As a more complicated example, "repeat, no-repeat" and "repeat" are
equal to what one sees as long as there's only one image listed
background-image-source. But once you start transition'ing to an image
with 2 sources, it's different...
2012-03-26 23:43:12 +00:00
|
|
|
gboolean (* equal) (const GtkCssValue *value1,
|
|
|
|
const GtkCssValue *value2);
|
2012-03-26 04:46:29 +00:00
|
|
|
void (* print) (const GtkCssValue *value,
|
|
|
|
GString *string);
|
2012-03-26 04:13:57 +00:00
|
|
|
};
|
2012-03-06 13:16:08 +00:00
|
|
|
|
|
|
|
GType _gtk_css_value_get_type (void) G_GNUC_CONST;
|
2012-03-26 04:13:57 +00:00
|
|
|
|
|
|
|
GtkCssValue *_gtk_css_value_alloc (const GtkCssValueClass *klass,
|
|
|
|
gsize size);
|
|
|
|
#define _gtk_css_value_new(_name, _klass) ((_name *) _gtk_css_value_alloc ((_klass), sizeof (_name)))
|
|
|
|
|
2012-03-06 13:16:08 +00:00
|
|
|
GtkCssValue *_gtk_css_value_ref (GtkCssValue *value);
|
|
|
|
void _gtk_css_value_unref (GtkCssValue *value);
|
2012-03-26 04:13:57 +00:00
|
|
|
|
cssvalue: Add _gtk_css_value_equal()
For now, we return FALSE for all default css values, so this is not very
useful.
I also think of this as an optimization equal, not a guaranteed equal,
because we don't even have a notion of what "equal" means.
For example, for background-repeat, "repeat, repeat" and "repeat"
are functionally equivalent. But the cssvalue has no idea that it's used
for background-repeat.
As a more complicated example, "repeat, no-repeat" and "repeat" are
equal to what one sees as long as there's only one image listed
background-image-source. But once you start transition'ing to an image
with 2 sources, it's different...
2012-03-26 23:43:12 +00:00
|
|
|
gboolean _gtk_css_value_equal (const GtkCssValue *value1,
|
|
|
|
const GtkCssValue *value2);
|
|
|
|
|
2012-03-26 04:46:29 +00:00
|
|
|
void _gtk_css_value_print (const GtkCssValue *value,
|
|
|
|
GString *string);
|
|
|
|
|
|
|
|
GType _gtk_css_value_get_content_type (const GtkCssValue *value);
|
|
|
|
gboolean _gtk_css_value_holds (const GtkCssValue *value,
|
2012-03-06 13:16:08 +00:00
|
|
|
GType type);
|
|
|
|
GtkCssValue *_gtk_css_value_new_from_gvalue (const GValue *g_value);
|
|
|
|
GtkCssValue *_gtk_css_value_new_from_int (gint val);
|
2012-03-26 15:24:02 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_enum (GType type,
|
|
|
|
gint val);
|
|
|
|
GtkCssValue *_gtk_css_value_new_take_strv (char **strv);
|
2012-03-27 02:58:15 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_boxed (GType type,
|
|
|
|
gpointer boxed);
|
2012-03-06 13:16:08 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_color (const GdkColor *v);
|
|
|
|
GtkCssValue *_gtk_css_value_new_take_symbolic_color (GtkSymbolicColor *v);
|
|
|
|
GtkCssValue *_gtk_css_value_new_take_pattern (cairo_pattern_t *v);
|
2012-03-27 02:58:15 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_theming_engine (GtkThemingEngine *v);
|
2012-03-26 15:24:02 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_take_binding_sets (GPtrArray *array);
|
2012-03-06 13:16:08 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_background_size (const GtkCssBackgroundSize *v);
|
2012-03-16 21:13:04 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_background_position (const GtkCssBackgroundPosition *v);
|
2012-03-26 15:24:02 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_border_corner_radius (const GtkCssBorderCornerRadius *v);
|
2012-03-27 02:58:15 +00:00
|
|
|
GtkCssValue *_gtk_css_value_new_from_border_image_repeat (const GtkCssBorderImageRepeat *v);
|
2012-03-26 04:46:29 +00:00
|
|
|
void _gtk_css_value_init_gvalue (const GtkCssValue *value,
|
2012-03-06 13:16:08 +00:00
|
|
|
GValue *g_value);
|
|
|
|
|
2012-03-26 04:46:29 +00:00
|
|
|
int _gtk_css_value_get_int (const GtkCssValue *value);
|
|
|
|
int _gtk_css_value_get_enum (const GtkCssValue *value);
|
|
|
|
gpointer _gtk_css_value_dup_object (const GtkCssValue *value);
|
|
|
|
gpointer _gtk_css_value_get_object (const GtkCssValue *value);
|
|
|
|
gpointer _gtk_css_value_get_boxed (const GtkCssValue *value);
|
|
|
|
const char ** _gtk_css_value_get_strv (const GtkCssValue *value);
|
|
|
|
GtkSymbolicColor *_gtk_css_value_get_symbolic_color (const GtkCssValue *value);
|
|
|
|
const GtkCssBackgroundSize *_gtk_css_value_get_background_size (const GtkCssValue *value);
|
|
|
|
const GtkCssBackgroundPosition *_gtk_css_value_get_background_position (const GtkCssValue *value);
|
|
|
|
const GtkCssBorderCornerRadius *_gtk_css_value_get_border_corner_radius (const GtkCssValue *value);
|
|
|
|
const GtkCssBorderImageRepeat *_gtk_css_value_get_border_image_repeat (const GtkCssValue *value);
|
|
|
|
GtkGradient *_gtk_css_value_get_gradient (const GtkCssValue *value);
|
2012-03-06 13:16:08 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_VALUE_PRIVATE_H__ */
|