forked from AuroraMiddleware/gtk
5d562b6a2a
For now, the split out style cache doesn't cache anything. This is mostly to make sure that bisections of wrong caching behavior will bisect down to the commit that actually adds caching.
45 lines
2.1 KiB
C
45 lines
2.1 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 2016 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
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GTK_CSS_NODE_STYLE_CACHE_PRIVATE_H__
|
|
#define __GTK_CSS_NODE_STYLE_CACHE_PRIVATE_H__
|
|
|
|
#include "gtkcssstyleprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _GtkCssNodeStyleCache GtkCssNodeStyleCache;
|
|
|
|
GtkCssNodeStyleCache * gtk_css_node_style_cache_new (GtkCssStyle *style);
|
|
void gtk_css_node_style_cache_unref (GtkCssNodeStyleCache *cache);
|
|
|
|
GtkCssStyle * gtk_css_node_style_cache_get_style (GtkCssNodeStyleCache *cache);
|
|
|
|
GtkCssNodeStyleCache * gtk_css_node_style_cache_insert (GtkCssNodeStyleCache *parent,
|
|
GtkCssNodeDeclaration *decl,
|
|
gboolean is_first,
|
|
gboolean is_last,
|
|
GtkCssStyle *style);
|
|
GtkCssNodeStyleCache * gtk_css_node_style_cache_lookup (GtkCssNodeStyleCache *parent,
|
|
GtkCssNodeDeclaration *decl,
|
|
gboolean is_first,
|
|
gboolean is_last);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_CSS_NODE_STYLE_CACHE_PRIVATE_H__ */
|