aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkAPIs.pl
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-07-25 15:55:27 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-07-25 15:55:27 +0000
commit3e446c629ce7d1ade09dbc884493bae145212ac5 (patch)
tree189f5c62c28797ff9fa78a0cdf812838b7b64e97 /tools/checkAPIs.pl
parent9f4431cdc502bd94c27c0b34a43ee1c09c159b34 (diff)
Update comments.
svn path=/trunk/; revision=38202
Diffstat (limited to 'tools/checkAPIs.pl')
-rwxr-xr-xtools/checkAPIs.pl10
1 files changed, 7 insertions, 3 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index bf137db618..2d07dbf84b 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -1016,13 +1016,14 @@ my %deprecatedGtkFunctions = (
'gdk_draw_layout_line', 'W', #
'gdk_draw_layout_line_with_colors', 'W', #
'gdk_draw_layout_with_colors', 'W', #
- 'gdk_draw_line', 'W', #
+ 'gdk_draw_line', 'W', # deprecated since version 2.22. Use cairo_line_to() and cairo_stroke()
'gdk_draw_lines', 'W', # deprecated since version 2.22. Use cairo_line_to() and cairo_stroke() instead.
'gdk_draw_pixbuf', 'W', # gdk_cairo_set_source_pixbuf() and cairo_paint() or cairo_rectangle() and cairo_fill() instead.
'gdk_draw_pixmap', 'W', # gdk_draw_drawable() (gdk_draw_drawable has been deprecated since version 2.22 )
'gdk_draw_point', 'W', #
'gdk_draw_points', 'W', #
- 'gdk_draw_polygon', 'W', #
+ 'gdk_draw_polygon', 'W', # deprecated since version 2.22. Use cairo_line_to() or cairo_append_path() and cairo_fill()
+ # or cairo_stroke() instead.
'gdk_draw_rectangle', 'W', # deprecated since version 2.22, Use cairo_rectangle() and cairo_fill() or cairo_stroke()
'gdk_draw_rgb_32_image', 'W', #
'gdk_draw_rgb_32_image_dithalign', 'W', #
@@ -1072,7 +1073,7 @@ my %deprecatedGtkFunctions = (
'gdk_gc_set_colormap', 'W', #
'gdk_gc_set_dashes', 'W', #
'gdk_gc_set_exposures', 'W', #
- 'gdk_gc_set_fill', 'W', #
+ 'gdk_gc_set_fill', 'W', # deprecated since version 2.22. Use cairo_pattern_set_extend() on the source.
'gdk_gc_set_font', 'W', #
'gdk_gc_set_foreground', 'W', # deprecated since version 2.22. Use gdk_cairo_set_source_color() to use a GdkColor as the source in Cairo.
'gdk_gc_set_function', 'W', # deprecated since version 2.22. Use cairo_set_operator() with Cairo.
@@ -1082,6 +1083,9 @@ my %deprecatedGtkFunctions = (
'gdk_gc_set_stipple', 'W', #
'gdk_gc_set_subwindow', 'W', #
'gdk_gc_set_tile', 'W', # deprecated since version 2.22.
+ # The following code snippet sets a tiling GdkPixmap as the source in Cairo:
+ # gdk_cairo_set_source_pixmap (cr, tile, ts_origin_x, ts_origin_y);
+ # cairo_pattern_set_extend (cairo_get_source (cr), CAIRO_EXTEND_REPEAT);
'gdk_gc_set_ts_origin', 'W', #
'gdk_gc_set_values', 'W', #
'gdk_gc_unref', 'E', # deprecated since version 2.0. Use g_object_unref()