[cairo-commit] goocanvas/src goocanvasprivate.h, 1.3,
1.4 goocanvasutils.h, 1.7, 1.8
Damon Chaplin
commit at pdx.freedesktop.org
Thu Oct 12 06:16:58 PDT 2006
Committed by: damon
Update of /cvs/cairo/goocanvas/src
In directory kemper:/tmp/cvs-serv24899/src
Modified Files:
goocanvasprivate.h goocanvasutils.h
Log Message:
2006-10-12 Damon Chaplin <damon at gnome.org>
* src/goocanvasutils.h:
* src/goocanvasprivate.h: make get_type() declarations public as
they are useful for bindings.
Index: goocanvasprivate.h
===================================================================
RCS file: /cvs/cairo/goocanvas/src/goocanvasprivate.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- goocanvasprivate.h 15 Aug 2006 10:08:25 -0000 1.3
+++ goocanvasprivate.h 12 Oct 2006 13:16:56 -0000 1.4
@@ -27,18 +27,6 @@
gpointer data);
-#define GOO_TYPE_CAIRO_FILL_RULE (goo_cairo_fill_rule_get_type ())
-#define GOO_TYPE_CAIRO_OPERATOR (goo_cairo_operator_get_type())
-#define GOO_TYPE_CAIRO_ANTIALIAS (goo_cairo_antialias_get_type())
-#define GOO_TYPE_CAIRO_LINE_CAP (goo_cairo_line_cap_get_type ())
-#define GOO_TYPE_CAIRO_LINE_JOIN (goo_cairo_line_join_get_type ())
-
-GType goo_cairo_fill_rule_get_type (void) G_GNUC_CONST;
-GType goo_cairo_operator_get_type (void) G_GNUC_CONST;
-GType goo_cairo_antialias_get_type (void) G_GNUC_CONST;
-GType goo_cairo_line_cap_get_type (void) G_GNUC_CONST;
-GType goo_cairo_line_join_get_type (void) G_GNUC_CONST;
-
cairo_pattern_t* goo_canvas_cairo_pattern_from_pixbuf (GdkPixbuf *pixbuf);
cairo_surface_t* goo_canvas_cairo_surface_from_pixbuf (GdkPixbuf *pixbuf);
Index: goocanvasutils.h
===================================================================
RCS file: /cvs/cairo/goocanvas/src/goocanvasutils.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- goocanvasutils.h 12 Oct 2006 12:53:47 -0000 1.7
+++ goocanvasutils.h 12 Oct 2006 13:16:56 -0000 1.8
@@ -116,8 +116,7 @@
double dash_offset;
};
-#define GOO_TYPE_CANVAS_LINE_DASH (goo_canvas_line_dash_get_type ())
-
+#define GOO_TYPE_CANVAS_LINE_DASH (goo_canvas_line_dash_get_type ())
GType goo_canvas_line_dash_get_type (void) G_GNUC_CONST;
GooCanvasLineDash* goo_canvas_line_dash_new (gint num_dashes,
...);
@@ -126,16 +125,28 @@
GooCanvasLineDash* goo_canvas_line_dash_ref (GooCanvasLineDash *dash);
void goo_canvas_line_dash_unref (GooCanvasLineDash *dash);
-
#define GOO_TYPE_CAIRO_MATRIX (goo_cairo_matrix_get_type())
-
GType goo_cairo_matrix_get_type (void) G_GNUC_CONST;
cairo_matrix_t* goo_cairo_matrix_copy (cairo_matrix_t *matrix);
-
#define GOO_TYPE_CAIRO_PATTERN (goo_cairo_pattern_get_type ())
GType goo_cairo_pattern_get_type (void) G_GNUC_CONST;
+#define GOO_TYPE_CAIRO_FILL_RULE (goo_cairo_fill_rule_get_type ())
+GType goo_cairo_fill_rule_get_type (void) G_GNUC_CONST;
+
+#define GOO_TYPE_CAIRO_OPERATOR (goo_cairo_operator_get_type())
+GType goo_cairo_operator_get_type (void) G_GNUC_CONST;
+
+#define GOO_TYPE_CAIRO_ANTIALIAS (goo_cairo_antialias_get_type())
+GType goo_cairo_antialias_get_type (void) G_GNUC_CONST;
+
+#define GOO_TYPE_CAIRO_LINE_CAP (goo_cairo_line_cap_get_type ())
+GType goo_cairo_line_cap_get_type (void) G_GNUC_CONST;
+
+#define GOO_TYPE_CAIRO_LINE_JOIN (goo_cairo_line_join_get_type ())
+GType goo_cairo_line_join_get_type (void) G_GNUC_CONST;
+
G_END_DECLS
More information about the cairo-commit
mailing list