2009-09-19 20:43:49 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2010-11-10 17:00:45 -05:00
|
|
|
/*
|
|
|
|
* st-theme-private.h: Private StThemeMethods
|
|
|
|
*
|
|
|
|
* Copyright 2008, 2009 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-09-19 20:43:49 -04:00
|
|
|
#ifndef __ST_THEME_PRIVATE_H__
|
|
|
|
#define __ST_THEME_PRIVATE_H__
|
|
|
|
|
2019-11-21 15:24:02 -05:00
|
|
|
#include "croco/libcroco.h"
|
2009-09-19 20:43:49 -04:00
|
|
|
#include "st-theme.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2009-09-19 22:56:09 -04:00
|
|
|
GPtrArray *_st_theme_get_matched_properties (StTheme *theme,
|
|
|
|
StThemeNode *node);
|
2009-09-19 20:43:49 -04:00
|
|
|
|
2012-11-21 19:13:59 -05:00
|
|
|
/* Resolve an URL from the stylesheet to a file */
|
|
|
|
GFile *_st_theme_resolve_url (StTheme *theme,
|
|
|
|
CRStyleSheet *base_stylesheet,
|
|
|
|
const char *url);
|
2009-09-19 20:43:49 -04:00
|
|
|
|
2009-10-05 10:10:23 -04:00
|
|
|
CRDeclaration *_st_theme_parse_declaration_list (const char *str);
|
|
|
|
|
2009-09-19 20:43:49 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __ST_THEME_PRIVATE_H__ */
|