diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-13 19:02:12 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-20 18:01:10 +0100 |
commit | 59d638a09fc4f72efb47560d103b2adbc00ce30a (patch) | |
tree | a6dc0288f9e4e222da162ea89bfbbc20fa7049ee /gsk/gskroundedrectprivate.h | |
parent | 0a0cbcdcb65b710fd2cce87f923d61d282892faa (diff) | |
download | gtk+-59d638a09fc4f72efb47560d103b2adbc00ce30a.tar.gz |
gsk: Add GskRoundedRect
It's essentially a port of GtkRoundedBox to graphene.
Diffstat (limited to 'gsk/gskroundedrectprivate.h')
-rw-r--r-- | gsk/gskroundedrectprivate.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gsk/gskroundedrectprivate.h b/gsk/gskroundedrectprivate.h new file mode 100644 index 0000000000..39b968c562 --- /dev/null +++ b/gsk/gskroundedrectprivate.h @@ -0,0 +1,15 @@ +#ifndef __GSK_ROUNDED_RECT_PRIVATE_H__ +#define __GSK_ROUNDED_RECT_PRIVATE_H__ + +#include "gskroundedrect.h" + +#include <cairo.h> + +G_BEGIN_DECLS + +void gsk_rounded_rect_path (const GskRoundedRect *self, + cairo_t *cr); + +G_END_DECLS + +#endif /* __GSK_ROUNDED_RECT_PRIVATE_H__ */ |