2010-04-11 21:03:25 +00:00
|
|
|
/* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-04-11 21:03:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_CSS_PROVIDER_H__
|
|
|
|
#define __GTK_CSS_PROVIDER_H__
|
|
|
|
|
2011-04-12 11:35:10 +00:00
|
|
|
#include <gio/gio.h>
|
2019-04-10 16:40:50 +00:00
|
|
|
#include <gtk/css/gtkcss.h>
|
2010-04-11 21:03:25 +00:00
|
|
|
|
|
|
|
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))
|
|
|
|
|
2010-10-19 08:59:46 +00:00
|
|
|
typedef struct _GtkCssProvider GtkCssProvider;
|
|
|
|
typedef struct _GtkCssProviderClass GtkCssProviderClass;
|
2011-04-06 14:10:25 +00:00
|
|
|
typedef struct _GtkCssProviderPrivate GtkCssProviderPrivate;
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2010-10-19 08:59:46 +00:00
|
|
|
struct _GtkCssProvider
|
2010-04-11 21:03:25 +00:00
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-04-11 21:03:25 +00:00
|
|
|
GType gtk_css_provider_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-04-11 21:03:25 +00:00
|
|
|
GtkCssProvider * gtk_css_provider_new (void);
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-04-06 20:03:35 +00:00
|
|
|
char * gtk_css_provider_to_string (GtkCssProvider *provider);
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-10-17 15:41:03 +00:00
|
|
|
void gtk_css_provider_load_from_data (GtkCssProvider *css_provider,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *data,
|
2016-10-17 14:09:12 +00:00
|
|
|
gssize length);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-10-17 15:41:03 +00:00
|
|
|
void gtk_css_provider_load_from_file (GtkCssProvider *css_provider,
|
2016-10-17 14:09:12 +00:00
|
|
|
GFile *file);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-10-17 15:41:03 +00:00
|
|
|
void gtk_css_provider_load_from_path (GtkCssProvider *css_provider,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *path);
|
2010-04-11 21:03:25 +00:00
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2014-10-22 04:06:53 +00:00
|
|
|
void gtk_css_provider_load_from_resource (GtkCssProvider *css_provider,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *resource_path);
|
2014-10-04 19:52:02 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2019-04-23 15:24:07 +00:00
|
|
|
void gtk_css_provider_load_named (GtkCssProvider *provider,
|
2019-04-18 00:05:58 +00:00
|
|
|
const char *name,
|
|
|
|
const char *variant);
|
2010-08-02 14:16:03 +00:00
|
|
|
|
2022-09-24 01:54:15 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkCssProvider, g_object_unref)
|
|
|
|
|
2010-04-11 21:03:25 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CSS_PROVIDER_H__ */
|