2015-12-21 22:46:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2015 Endless Mobile, Inc.
|
|
|
|
*
|
|
|
|
* 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.1 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/>.
|
|
|
|
*
|
|
|
|
* Authors: Cosimo Cecchi <cosimoc@gnome.org>
|
|
|
|
*/
|
|
|
|
|
2020-01-28 14:03:42 +00:00
|
|
|
#ifndef __GTK_BUILTIN_ICON_PRIVATE_H__
|
|
|
|
#define __GTK_BUILTIN_ICON_PRIVATE_H__
|
2015-12-21 22:46:44 +00:00
|
|
|
|
2017-05-11 05:48:00 +00:00
|
|
|
#include "gtkwidget.h"
|
|
|
|
#include "gtkcsstypesprivate.h"
|
2015-12-21 22:46:44 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2020-01-28 14:03:42 +00:00
|
|
|
#define GTK_TYPE_BUILTIN_ICON (gtk_builtin_icon_get_type ())
|
2018-02-01 14:29:01 +00:00
|
|
|
|
2020-01-28 14:03:42 +00:00
|
|
|
G_DECLARE_FINAL_TYPE (GtkBuiltinIcon, gtk_builtin_icon, GTK, BUILTIN_ICON, GtkWidget)
|
2015-12-21 22:46:44 +00:00
|
|
|
|
2020-01-30 11:27:15 +00:00
|
|
|
GtkWidget * gtk_builtin_icon_new (const char *css_name);
|
|
|
|
void gtk_builtin_icon_set_css_name (GtkBuiltinIcon *self,
|
|
|
|
const char *css_name);
|
2017-06-15 19:14:25 +00:00
|
|
|
|
2015-12-21 22:46:44 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2020-01-28 14:03:42 +00:00
|
|
|
#endif /* __GTK_BUILTIN_ICON_PRIVATE_H__ */
|