2016-12-13 18:02:12 +00:00
|
|
|
#ifndef __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
|
|
#define __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
|
|
|
|
|
|
#include "gskroundedrect.h"
|
|
|
|
|
|
|
|
#include <cairo.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2016-12-23 20:36:17 +00:00
|
|
|
gboolean gsk_rounded_rect_is_circular (const GskRoundedRect *self);
|
|
|
|
|
2016-12-13 18:02:12 +00:00
|
|
|
void gsk_rounded_rect_path (const GskRoundedRect *self,
|
|
|
|
cairo_t *cr);
|
2016-12-24 03:58:51 +00:00
|
|
|
void gsk_rounded_rect_to_float (const GskRoundedRect *self,
|
|
|
|
float rect[12]);
|
2016-12-13 18:02:12 +00:00
|
|
|
|
2018-03-27 22:34:23 +00:00
|
|
|
gboolean gsk_rounded_rect_equal (gconstpointer rect1,
|
|
|
|
gconstpointer rect2);
|
2019-02-28 08:44:08 +00:00
|
|
|
char * gsk_rounded_rect_to_string (const GskRoundedRect *self);
|
|
|
|
|
2018-03-27 22:34:23 +00:00
|
|
|
|
2016-12-13 18:02:12 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GSK_ROUNDED_RECT_PRIVATE_H__ */
|