gnome-shell/src/toolkit/shell-theme-private.h
Owen W. Taylor 0eca3efcb0 Add support for inline styles
Add support for passing an inline-style string when creating a
ShellThemeNode.

Hook this up to a new 'style' property of NbtkWidget.

Add a test case that demonstrates using this to update font sizes
on the fly.
2009-09-21 19:32:23 -04:00

21 lines
631 B
C

/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#ifndef __SHELL_THEME_PRIVATE_H__
#define __SHELL_THEME_PRIVATE_H__
#include <libcroco/libcroco.h>
#include "shell-theme.h"
G_BEGIN_DECLS
GPtrArray *_shell_theme_get_matched_properties (ShellTheme *theme,
ShellThemeNode *node);
/* Resolve an URL from the stylesheet to a filename */
char *_shell_theme_resolve_url (ShellTheme *theme,
CRStyleSheet *base_stylesheet,
const char *url);
G_END_DECLS
#endif /* __SHELL_THEME_PRIVATE_H__ */