276d9a9302
Import: HippoCanvasTheme => StTheme HippoCanvasThemeImage => StThemeImage HippoCanvasStyle => StThemeNode StThemeContext is a new class managing the theme for a stage and global properties like resolution. test-theme.c is a newly written test program to do verification of the style matching and property handling rules. Various changes are made in the import: - Comprehensive reindentation - guint32 pixels replaced with ClutterColor - General pseudo-class support added - Old-fashioned (non-bordered) background image support added, though with no support for repeat, etc. - Bug fixes for problems revealed by test program https://bugzilla.gnome.org/show_bug.cgi?id=595990
23 lines
728 B
C
23 lines
728 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#ifndef __ST_THEME_PRIVATE_H__
|
|
#define __ST_THEME_PRIVATE_H__
|
|
|
|
#include <libcroco/libcroco.h>
|
|
#include "st-theme.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void _st_theme_get_matched_properties (StTheme *theme,
|
|
StThemeNode *node,
|
|
CRDeclaration ***properties,
|
|
int *n_properties);
|
|
|
|
/* Resolve an URL from the stylesheet to a filename */
|
|
char *_st_theme_resolve_url (StTheme *theme,
|
|
CRStyleSheet *base_stylesheet,
|
|
const char *url);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __ST_THEME_PRIVATE_H__ */
|