diff options
author | Benjamin Otte <otte@redhat.com> | 2011-06-13 05:04:44 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-06-13 15:01:52 +0200 |
commit | 407b3f2cde8ae0807e46a62c53976accdaa20f89 (patch) | |
tree | d795dea39707ae25d92ab6a63f46e087f0f63e3b /gtk/gtkroundedboxprivate.h | |
parent | 3aa73bebea53dd8c3d644680a663fdd4f33935ff (diff) | |
download | gtk+-407b3f2cde8ae0807e46a62c53976accdaa20f89.tar.gz |
themingengine: Implement support for multiple border colors
Also use this support to implement inset and outset border styles
without cheats.
Diffstat (limited to 'gtk/gtkroundedboxprivate.h')
-rw-r--r-- | gtk/gtkroundedboxprivate.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gtk/gtkroundedboxprivate.h b/gtk/gtkroundedboxprivate.h index bd4adb4b27..af0854ff08 100644 --- a/gtk/gtkroundedboxprivate.h +++ b/gtk/gtkroundedboxprivate.h @@ -58,6 +58,18 @@ void _gtk_rounded_box_move (GtkRoundedBox void _gtk_rounded_box_path (const GtkRoundedBox *box, cairo_t *cr); +void _gtk_rounded_box_path_top (const GtkRoundedBox *outer, + const GtkRoundedBox *inner, + cairo_t *cr); +void _gtk_rounded_box_path_right (const GtkRoundedBox *outer, + const GtkRoundedBox *inner, + cairo_t *cr); +void _gtk_rounded_box_path_bottom (const GtkRoundedBox *outer, + const GtkRoundedBox *inner, + cairo_t *cr); +void _gtk_rounded_box_path_left (const GtkRoundedBox *outer, + const GtkRoundedBox *inner, + cairo_t *cr); void _gtk_rounded_box_clip_path (const GtkRoundedBox *box, cairo_t *cr); |