2009-09-20 00:43:49 +00:00
|
|
|
/* -*- 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
|
|
|
|
|
2009-09-20 02:56:09 +00:00
|
|
|
GPtrArray *_st_theme_get_matched_properties (StTheme *theme,
|
|
|
|
StThemeNode *node);
|
2009-09-20 00:43:49 +00:00
|
|
|
|
|
|
|
/* Resolve an URL from the stylesheet to a filename */
|
|
|
|
char *_st_theme_resolve_url (StTheme *theme,
|
|
|
|
CRStyleSheet *base_stylesheet,
|
|
|
|
const char *url);
|
|
|
|
|
2009-10-05 14:10:23 +00:00
|
|
|
CRDeclaration *_st_theme_parse_declaration_list (const char *str);
|
|
|
|
|
2009-09-20 00:43:49 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __ST_THEME_PRIVATE_H__ */
|