summaryrefslogtreecommitdiff
path: root/gsk/gskroundedrectprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2016-12-13 19:02:12 +0100
committerBenjamin Otte <otte@redhat.com>2016-12-20 18:01:10 +0100
commit59d638a09fc4f72efb47560d103b2adbc00ce30a (patch)
treea6dc0288f9e4e222da162ea89bfbbc20fa7049ee /gsk/gskroundedrectprivate.h
parent0a0cbcdcb65b710fd2cce87f923d61d282892faa (diff)
downloadgtk+-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.h15
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__ */