2015-01-20 00:48:46 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2014,2015 Benjamin Otte
|
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@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_RENDER_ICON_PRIVATE_H__
|
|
|
|
#define __GTK_RENDER_ICON_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <cairo.h>
|
2016-11-15 05:19:16 +00:00
|
|
|
#include <gsk/gsk.h>
|
2015-01-20 00:48:46 +00:00
|
|
|
|
|
|
|
#include "gtkcsstypesprivate.h"
|
|
|
|
#include "gtktypes.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2016-11-16 19:51:53 +00:00
|
|
|
void gtk_css_style_snapshot_icon (GtkCssStyle *style,
|
|
|
|
GtkSnapshot *snapshot,
|
|
|
|
double width,
|
2020-01-10 18:11:59 +00:00
|
|
|
double height);
|
2015-01-20 04:21:15 +00:00
|
|
|
|
2018-02-16 08:09:35 +00:00
|
|
|
void gtk_css_style_snapshot_icon_paintable (GtkCssStyle *style,
|
2016-11-15 05:19:16 +00:00
|
|
|
GtkSnapshot *snapshot,
|
2018-02-16 08:09:35 +00:00
|
|
|
GdkPaintable *paintable,
|
|
|
|
double width,
|
2020-02-05 08:49:23 +00:00
|
|
|
double height);
|
2015-01-20 00:48:46 +00:00
|
|
|
|
2015-12-16 01:15:20 +00:00
|
|
|
void gtk_css_style_render_icon_get_extents (GtkCssStyle *style,
|
|
|
|
GdkRectangle *extents,
|
2020-07-24 13:54:49 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height);
|
2015-12-16 01:15:20 +00:00
|
|
|
|
2015-01-20 00:48:46 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_RENDER_ICON_PRIVATE_H__ */
|