2010-02-08 13:40:25 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2010-11-10 17:00:45 -05:00
|
|
|
/*
|
|
|
|
* st-theme-node-private.h: private structures and functions for StThemeNode
|
|
|
|
*
|
|
|
|
* Copyright 2009, 2010 Red Hat, Inc.
|
2011-12-23 12:59:20 -05:00
|
|
|
* Copyright 2011 Quentin "Sardem FF7" Glidic
|
2010-11-10 17:00:45 -05:00
|
|
|
*
|
|
|
|
* This program 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 program is distributed in the hope 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-02-08 13:40:25 -05:00
|
|
|
#ifndef __ST_THEME_NODE_PRIVATE_H__
|
|
|
|
#define __ST_THEME_NODE_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
|
|
|
|
#include "st-theme-node.h"
|
2019-11-21 15:24:02 -05:00
|
|
|
#include "croco/libcroco.h"
|
2011-12-23 12:59:20 -05:00
|
|
|
#include "st-types.h"
|
2010-02-08 13:40:25 -05:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
struct _StThemeNode {
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
StThemeContext *context;
|
|
|
|
StThemeNode *parent_node;
|
|
|
|
StTheme *theme;
|
|
|
|
|
|
|
|
PangoFontDescription *font_desc;
|
|
|
|
|
|
|
|
ClutterColor background_color;
|
|
|
|
/* If gradient is set, then background_color is the gradient start */
|
|
|
|
StGradientType background_gradient_type;
|
|
|
|
ClutterColor background_gradient_end;
|
|
|
|
|
2010-09-01 12:13:43 -04:00
|
|
|
int background_position_x;
|
|
|
|
int background_position_y;
|
2012-07-28 03:49:14 -04:00
|
|
|
|
2011-12-23 12:59:20 -05:00
|
|
|
StBackgroundSize background_size;
|
|
|
|
gint background_size_w;
|
|
|
|
gint background_size_h;
|
2010-09-01 12:13:43 -04:00
|
|
|
|
2010-02-08 13:40:25 -05:00
|
|
|
ClutterColor foreground_color;
|
|
|
|
ClutterColor border_color[4];
|
2010-05-26 16:50:24 -04:00
|
|
|
ClutterColor outline_color;
|
2010-02-08 13:40:25 -05:00
|
|
|
|
|
|
|
int border_width[4];
|
|
|
|
int border_radius[4];
|
2010-05-26 16:50:24 -04:00
|
|
|
int outline_width;
|
2010-02-08 13:40:25 -05:00
|
|
|
guint padding[4];
|
2014-11-11 09:04:46 -05:00
|
|
|
guint margin[4];
|
2010-02-08 13:40:25 -05:00
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int min_width;
|
|
|
|
int min_height;
|
|
|
|
int max_width;
|
|
|
|
int max_height;
|
|
|
|
|
2010-05-30 17:06:37 -04:00
|
|
|
int transition_duration;
|
|
|
|
|
2014-09-18 20:04:00 -04:00
|
|
|
GFile *background_image;
|
2010-02-08 13:40:25 -05:00
|
|
|
StBorderImage *border_image;
|
2011-01-13 18:27:24 -05:00
|
|
|
StShadow *box_shadow;
|
|
|
|
StShadow *background_image_shadow;
|
2010-07-24 10:56:50 -04:00
|
|
|
StShadow *text_shadow;
|
2010-10-31 22:06:48 -04:00
|
|
|
StIconColors *icon_colors;
|
2010-02-08 13:40:25 -05:00
|
|
|
|
|
|
|
GType element_type;
|
|
|
|
char *element_id;
|
2012-11-07 13:44:33 -05:00
|
|
|
GStrv element_classes;
|
|
|
|
GStrv pseudo_classes;
|
2010-02-08 13:40:25 -05:00
|
|
|
char *inline_style;
|
|
|
|
|
|
|
|
CRDeclaration **properties;
|
|
|
|
int n_properties;
|
|
|
|
|
|
|
|
/* We hold onto these separately so we can destroy them on finalize */
|
|
|
|
CRDeclaration *inline_properties;
|
|
|
|
|
2012-07-28 03:49:14 -04:00
|
|
|
guint background_position_set : 1;
|
2012-07-28 04:36:20 -04:00
|
|
|
guint background_repeat : 1;
|
2012-07-28 03:49:14 -04:00
|
|
|
|
2010-02-08 13:40:25 -05:00
|
|
|
guint properties_computed : 1;
|
|
|
|
guint geometry_computed : 1;
|
|
|
|
guint background_computed : 1;
|
|
|
|
guint foreground_computed : 1;
|
|
|
|
guint border_image_computed : 1;
|
2011-01-13 18:27:24 -05:00
|
|
|
guint box_shadow_computed : 1;
|
|
|
|
guint background_image_shadow_computed : 1;
|
2010-07-24 10:56:50 -04:00
|
|
|
guint text_shadow_computed : 1;
|
2010-02-08 13:40:25 -05:00
|
|
|
guint link_type : 2;
|
2013-07-03 12:01:00 -04:00
|
|
|
guint rendered_once : 1;
|
2013-07-04 09:26:08 -04:00
|
|
|
guint cached_textures : 1;
|
2013-07-03 12:01:00 -04:00
|
|
|
|
|
|
|
int box_shadow_min_width;
|
|
|
|
int box_shadow_min_height;
|
2013-04-04 21:22:34 -04:00
|
|
|
|
2019-04-30 08:42:59 -04:00
|
|
|
guint stylesheets_changed_id;
|
|
|
|
|
2015-09-25 22:20:22 -04:00
|
|
|
CoglPipeline *border_slices_texture;
|
2015-10-15 17:42:19 -04:00
|
|
|
CoglPipeline *border_slices_pipeline;
|
2015-09-25 22:20:22 -04:00
|
|
|
CoglPipeline *background_texture;
|
2015-10-15 17:42:19 -04:00
|
|
|
CoglPipeline *background_pipeline;
|
|
|
|
CoglPipeline *background_shadow_pipeline;
|
2015-11-12 05:22:52 -05:00
|
|
|
CoglPipeline *color_pipeline;
|
2013-07-04 09:26:08 -04:00
|
|
|
|
|
|
|
StThemeNodePaintState cached_state;
|
2020-04-03 16:44:54 -04:00
|
|
|
|
|
|
|
int cached_scale_factor;
|
2010-02-08 13:40:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void _st_theme_node_ensure_background (StThemeNode *node);
|
|
|
|
void _st_theme_node_ensure_geometry (StThemeNode *node);
|
2014-11-11 09:04:46 -05:00
|
|
|
void _st_theme_node_apply_margins (StThemeNode *node,
|
|
|
|
ClutterActor *actor);
|
2010-02-08 13:40:25 -05:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __ST_THEME_NODE_PRIVATE_H__ */
|