gtk2/gtk/gtkshadowprivate.h

61 lines
2.1 KiB
C
Raw Normal View History

/* GTK - The GIMP Toolkit
* Copyright (C) 2011 Red Hat, Inc.
*
* Author: Cosimo Cecchi <cosimoc@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/>.
*/
#ifndef __GTK_SHADOW_H__
#define __GTK_SHADOW_H__
#include <glib-object.h>
#include "gtkstylecontext.h"
#include "gtksymboliccolor.h"
#include "gtkicontheme.h"
#include "gtkcssparserprivate.h"
#include "gtkcsstypesprivate.h"
2012-03-27 23:56:57 +00:00
#include "gtkcssvalueprivate.h"
#include "gtkroundedboxprivate.h"
G_BEGIN_DECLS
2012-03-27 23:56:57 +00:00
typedef GtkCssValue GtkShadow;
2012-03-27 23:56:57 +00:00
GtkShadow *_gtk_shadow_new_none (void);
GtkShadow *_gtk_shadow_parse (GtkCssParser *parser);
GtkShadow *_gtk_shadow_resolve (GtkShadow *shadow,
GtkStyleContext *context);
void _gtk_text_shadow_paint_layout (GtkShadow *shadow,
cairo_t *cr,
PangoLayout *layout);
void _gtk_icon_shadow_paint (GtkShadow *shadow,
cairo_t *cr);
void _gtk_icon_shadow_paint_spinner (GtkShadow *shadow,
cairo_t *cr,
gdouble radius,
gdouble progress);
void _gtk_box_shadow_render (GtkShadow *shadow,
cairo_t *cr,
const GtkRoundedBox *padding_box);
G_END_DECLS
#endif /* __GTK_SHADOW_H__ */