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>
|
2019-03-16 03:48:26 +00:00
|
|
|
|
2012-03-06 13:16:08 +00:00
|
|
|
#include "gtkcsstypesprivate.h"
|
2019-03-16 03:48:26 +00:00
|
|
|
#include "gtkstyleprovider.h"
|
2012-03-06 13:16:08 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_CSS_VALUE (_gtk_css_value_get_type ())
|
|
|
|
|
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; \
|
2020-07-24 13:54:49 +00:00
|
|
|
int ref_count; \
|
2020-01-11 11:53:23 +00:00
|
|
|
guint is_computed: 1;
|
2012-03-26 04:13:57 +00:00
|
|
|
|
|
|
|
struct _GtkCssValueClass {
|
2020-01-09 10:57:00 +00:00
|
|
|
const char *type_name;
|
2012-03-26 04:13:57 +00:00
|
|
|
void (* free) (GtkCssValue *value);
|
2012-03-26 04:46:29 +00:00
|
|
|
|
2012-07-11 04:56:07 +00:00
|
|
|
GtkCssValue * (* compute) (GtkCssValue *value,
|
2012-07-12 01:43:15 +00:00
|
|
|
guint property_id,
|
2017-10-31 03:31:46 +00:00
|
|
|
GtkStyleProvider *provider,
|
2015-01-31 10:56:15 +00:00
|
|
|
GtkCssStyle *style,
|
2015-02-14 01:27:39 +00:00
|
|
|
GtkCssStyle *parent_style);
|
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-30 15:47:26 +00:00
|
|
|
GtkCssValue * (* transition) (GtkCssValue *start,
|
|
|
|
GtkCssValue *end,
|
2012-08-30 13:51:29 +00:00
|
|
|
guint property_id,
|
2012-03-30 15:47:26 +00:00
|
|
|
double progress);
|
2020-01-24 12:17:09 +00:00
|
|
|
gboolean (* is_dynamic) (const GtkCssValue *value);
|
2018-02-13 04:55:33 +00:00
|
|
|
GtkCssValue * (* get_dynamic_value) (GtkCssValue *value,
|
|
|
|
gint64 monotonic_time);
|
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)))
|
|
|
|
|
2018-02-13 04:55:33 +00:00
|
|
|
#define _gtk_css_value_ref gtk_css_value_ref
|
|
|
|
GtkCssValue * gtk_css_value_ref (GtkCssValue *value);
|
|
|
|
#define _gtk_css_value_unref gtk_css_value_unref
|
|
|
|
void gtk_css_value_unref (GtkCssValue *value);
|
2012-03-26 04:13:57 +00:00
|
|
|
|
2012-07-11 04:56:07 +00:00
|
|
|
GtkCssValue *_gtk_css_value_compute (GtkCssValue *value,
|
2012-07-12 01:43:15 +00:00
|
|
|
guint property_id,
|
2017-10-31 03:31:46 +00:00
|
|
|
GtkStyleProvider *provider,
|
2015-01-31 10:56:15 +00:00
|
|
|
GtkCssStyle *style,
|
2020-01-24 12:17:09 +00:00
|
|
|
GtkCssStyle *parent_style) G_GNUC_PURE;
|
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,
|
2020-01-24 12:17:09 +00:00
|
|
|
const GtkCssValue *value2) G_GNUC_PURE;
|
2012-04-04 14:15:41 +00:00
|
|
|
gboolean _gtk_css_value_equal0 (const GtkCssValue *value1,
|
2020-01-24 12:17:09 +00:00
|
|
|
const GtkCssValue *value2) G_GNUC_PURE;
|
2012-03-30 15:47:26 +00:00
|
|
|
GtkCssValue *_gtk_css_value_transition (GtkCssValue *start,
|
|
|
|
GtkCssValue *end,
|
2012-08-30 13:51:29 +00:00
|
|
|
guint property_id,
|
2012-03-30 15:47:26 +00:00
|
|
|
double progress);
|
2020-01-24 12:17:09 +00:00
|
|
|
gboolean gtk_css_value_is_dynamic (const GtkCssValue *value) G_GNUC_PURE;
|
2018-02-13 04:55:33 +00:00
|
|
|
GtkCssValue * gtk_css_value_get_dynamic_value (GtkCssValue *value,
|
|
|
|
gint64 monotonic_time);
|
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
|
|
|
|
2012-04-01 05:28:35 +00:00
|
|
|
char * _gtk_css_value_to_string (const GtkCssValue *value);
|
2012-03-26 04:46:29 +00:00
|
|
|
void _gtk_css_value_print (const GtkCssValue *value,
|
|
|
|
GString *string);
|
2020-01-11 11:53:23 +00:00
|
|
|
gboolean gtk_css_value_is_computed (const GtkCssValue *value) G_GNUC_PURE;
|
2012-03-26 04:46:29 +00:00
|
|
|
|
2012-03-06 13:16:08 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_VALUE_PRIVATE_H__ */
|