mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
dc282991c6
Keep it private for now, but it's very useful when debugging.
25 lines
989 B
C
25 lines
989 B
C
#ifndef __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
#define __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
|
|
#include "gskroundedrect.h"
|
|
|
|
#include <cairo.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gboolean gsk_rounded_rect_is_circular (const GskRoundedRect *self);
|
|
|
|
void gsk_rounded_rect_path (const GskRoundedRect *self,
|
|
cairo_t *cr);
|
|
void gsk_rounded_rect_to_float (const GskRoundedRect *self,
|
|
float rect[12]);
|
|
|
|
gboolean gsk_rounded_rect_equal (gconstpointer rect1,
|
|
gconstpointer rect2);
|
|
char * gsk_rounded_rect_to_string (const GskRoundedRect *self);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_ROUNDED_RECT_PRIVATE_H__ */
|