forked from AuroraMiddleware/gtk
c31eadc3a1
Part of being more explicit about what we allow to be subclassed and what not.
72 lines
2.7 KiB
C
72 lines
2.7 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
|
|
*
|
|
* This library 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 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that 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 library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GTK_CSS_PROVIDER_H__
|
|
#define __GTK_CSS_PROVIDER_H__
|
|
|
|
#include <gio/gio.h>
|
|
#include <gtk/css/gtkcss.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GTK_TYPE_CSS_PROVIDER (gtk_css_provider_get_type ())
|
|
#define GTK_CSS_PROVIDER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_CSS_PROVIDER, GtkCssProvider))
|
|
#define GTK_IS_CSS_PROVIDER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_CSS_PROVIDER))
|
|
|
|
typedef struct _GtkCssProvider GtkCssProvider;
|
|
typedef struct _GtkCssProviderClass GtkCssProviderClass;
|
|
typedef struct _GtkCssProviderPrivate GtkCssProviderPrivate;
|
|
|
|
struct _GtkCssProvider
|
|
{
|
|
GObject parent_instance;
|
|
};
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
GType gtk_css_provider_get_type (void) G_GNUC_CONST;
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
GtkCssProvider * gtk_css_provider_new (void);
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
char * gtk_css_provider_to_string (GtkCssProvider *provider);
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
void gtk_css_provider_load_from_data (GtkCssProvider *css_provider,
|
|
const gchar *data,
|
|
gssize length);
|
|
GDK_AVAILABLE_IN_ALL
|
|
void gtk_css_provider_load_from_file (GtkCssProvider *css_provider,
|
|
GFile *file);
|
|
GDK_AVAILABLE_IN_ALL
|
|
void gtk_css_provider_load_from_path (GtkCssProvider *css_provider,
|
|
const gchar *path);
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
void gtk_css_provider_load_from_resource (GtkCssProvider *css_provider,
|
|
const gchar *resource_path);
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
void gtk_css_provider_load_named (GtkCssProvider *provider,
|
|
const char *name,
|
|
const char *variant);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_CSS_PROVIDER_H__ */
|