cairo 1.15.3-x86-mingw32 → 1.15.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS +24 -0
  3. data/Rakefile +3 -3
  4. data/ext/cairo/rb_cairo.h +11 -1
  5. data/ext/cairo/rb_cairo_constants.c +56 -1
  6. data/ext/cairo/rb_cairo_context.c +100 -1
  7. data/ext/cairo/rb_cairo_exception.c +45 -0
  8. data/ext/cairo/rb_cairo_surface.c +126 -1
  9. data/lib/2.2/cairo.so +0 -0
  10. data/lib/2.3/cairo.so +0 -0
  11. data/lib/2.4/cairo.so +0 -0
  12. data/lib/cairo.rb +2 -0
  13. data/samples/link.rb +19 -0
  14. data/test/cairo-test-utils.rb +1 -0
  15. data/test/test_context.rb +22 -0
  16. data/test/test_pdf_surface.rb +131 -0
  17. data/vendor/local/bin/fc-cache.exe +0 -0
  18. data/vendor/local/bin/fc-cat.exe +0 -0
  19. data/vendor/local/bin/fc-list.exe +0 -0
  20. data/vendor/local/bin/fc-match.exe +0 -0
  21. data/vendor/local/bin/fc-pattern.exe +0 -0
  22. data/vendor/local/bin/fc-query.exe +0 -0
  23. data/vendor/local/bin/fc-scan.exe +0 -0
  24. data/vendor/local/bin/fc-validate.exe +0 -0
  25. data/vendor/local/bin/libcairo-2.dll +0 -0
  26. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  27. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  28. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  29. data/vendor/local/bin/libfreetype-6.dll +0 -0
  30. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  31. data/vendor/local/bin/libpng-config +1 -1
  32. data/vendor/local/bin/libpng16-16.dll +0 -0
  33. data/vendor/local/bin/libpng16-config +1 -1
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  36. data/vendor/local/bin/pngfix.exe +0 -0
  37. data/vendor/local/bin/xmlcatalog.exe +0 -0
  38. data/vendor/local/bin/xmllint.exe +0 -0
  39. data/vendor/local/bin/zlib1.dll +0 -0
  40. data/vendor/local/include/cairo/cairo-pdf.h +68 -0
  41. data/vendor/local/include/cairo/cairo-version.h +1 -1
  42. data/vendor/local/include/cairo/cairo.h +19 -0
  43. data/vendor/local/include/libpng16/png.h +13 -12
  44. data/vendor/local/include/libpng16/pngconf.h +1 -1
  45. data/vendor/local/include/libpng16/pnglibconf.h +1 -1
  46. data/vendor/local/include/png.h +13 -12
  47. data/vendor/local/include/pngconf.h +1 -1
  48. data/vendor/local/include/pnglibconf.h +1 -1
  49. data/vendor/local/lib/libcairo-gobject.a +0 -0
  50. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  51. data/vendor/local/lib/libcairo-gobject.la +2 -2
  52. data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
  53. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  54. data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
  55. data/vendor/local/lib/libcairo.a +0 -0
  56. data/vendor/local/lib/libcairo.dll.a +0 -0
  57. data/vendor/local/lib/libcairo.la +2 -2
  58. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  59. data/vendor/local/lib/libfreetype.a +0 -0
  60. data/vendor/local/lib/libfreetype.dll.a +0 -0
  61. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  62. data/vendor/local/lib/libpng.a +0 -0
  63. data/vendor/local/lib/libpng.dll.a +0 -0
  64. data/vendor/local/lib/libpng.la +2 -2
  65. data/vendor/local/lib/libpng16.a +0 -0
  66. data/vendor/local/lib/libpng16.dll.a +0 -0
  67. data/vendor/local/lib/libpng16.la +2 -2
  68. data/vendor/local/lib/libxml2.dll.a +0 -0
  69. data/vendor/local/lib/libz.dll.a +0 -0
  70. data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
  71. data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
  72. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
  73. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
  74. data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
  75. data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
  76. data/vendor/local/lib/pkgconfig/cairo-script.pc +2 -2
  77. data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
  78. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
  79. data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
  80. data/vendor/local/lib/pkgconfig/cairo.pc +2 -2
  81. data/vendor/local/lib/pkgconfig/libpng.pc +1 -1
  82. data/vendor/local/lib/pkgconfig/libpng16.pc +1 -1
  83. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +30 -2
  84. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +1 -1
  85. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +1 -1
  86. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +343 -4
  87. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +8 -4
  88. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +3 -3
  89. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +6 -6
  90. data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +2 -2
  91. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +3 -3
  92. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +10 -10
  93. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +3 -3
  94. data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +415 -0
  95. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +14 -14
  96. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +1 -1
  97. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +5 -5
  98. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +1 -1
  99. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +1 -1
  100. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +5 -5
  101. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +6 -6
  102. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +2 -2
  103. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +35 -35
  104. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +14 -14
  105. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +14 -14
  106. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +10 -10
  107. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +3 -0
  108. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +2 -2
  109. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +11 -11
  110. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +15 -0
  111. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +22 -0
  112. data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -1
  113. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +22 -0
  114. data/vendor/local/share/license/libpng/README +1 -1
  115. data/vendor/local/share/man/man3/libpng.3 +9 -9
  116. data/vendor/local/share/man/man3/libpngpf.3 +2 -2
  117. data/vendor/local/share/man/man5/png.5 +1 -1
  118. metadata +9 -3
@@ -279,8 +279,8 @@ cairo_scaled_font_reference (<em class="parameter"><code><a class="link" href="c
279
279
  <em class="parameter"><code>scaled_font</code></em>
280
280
  from being destroyed until a matching call to
281
281
  <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-destroy" title="cairo_scaled_font_destroy ()"><code class="function">cairo_scaled_font_destroy()</code></a> is made.</p>
282
- <p>The number of references to a <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> can be get using
283
- <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-reference-count" title="cairo_scaled_font_get_reference_count ()"><code class="function">cairo_scaled_font_get_reference_count()</code></a>.</p>
282
+ <p>Use <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-reference-count" title="cairo_scaled_font_get_reference_count ()"><code class="function">cairo_scaled_font_get_reference_count()</code></a> to get the number of
283
+ references to a <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a>.</p>
284
284
  <div class="refsect3">
285
285
  <a name="id-1.4.3.7.3.6"></a><h4>Parameters</h4>
286
286
  <div class="informaltable"><table width="100%" border="0">
@@ -291,7 +291,7 @@ cairo_scaled_font_reference (<em class="parameter"><code><a class="link" href="c
291
291
  </colgroup>
292
292
  <tbody><tr>
293
293
  <td class="parameter_name"><p>scaled_font</p></td>
294
- <td class="parameter_description"><p>a <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a>, (may be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in which case
294
+ <td class="parameter_description"><p>a <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a>, (may be <code class="literal">NULL</code> in which case
295
295
  this function does nothing)</p></td>
296
296
  <td class="parameter_annotations"> </td>
297
297
  </tr></tbody>
@@ -513,7 +513,7 @@ cairo_scaled_font_text_to_glyphs (<em class="parameter"><code><a class="link" hr
513
513
  mapping, that can be used to render later using <em class="parameter"><code>scaled_font</code></em>
514
514
  .</p>
515
515
  <p>If <em class="parameter"><code>glyphs</code></em>
516
- initially points to a non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value, that array is used
516
+ initially points to a non-<code class="literal">NULL</code> value, that array is used
517
517
  as a glyph buffer, and <em class="parameter"><code>num_glyphs</code></em>
518
518
  should point to the number of glyph
519
519
  entries available there. If the provided glyph array is too short for
@@ -527,14 +527,14 @@ after the call, the user is responsible for freeing the allocated glyph
527
527
  array using <a class="link" href="cairo-text.html#cairo-glyph-free" title="cairo_glyph_free ()"><code class="function">cairo_glyph_free()</code></a>. This may happen even if the provided
528
528
  array was large enough.</p>
529
529
  <p>If <em class="parameter"><code>clusters</code></em>
530
- is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>num_clusters</code></em>
530
+ is not <code class="literal">NULL</code>, <em class="parameter"><code>num_clusters</code></em>
531
531
  and <em class="parameter"><code>cluster_flags</code></em>
532
- should not be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>,
532
+ should not be <code class="literal">NULL</code>,
533
533
  and cluster mapping will be computed.
534
534
  The semantics of how cluster array allocation works is similar to the glyph
535
535
  array. That is,
536
536
  if <em class="parameter"><code>clusters</code></em>
537
- initially points to a non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value, that array is used
537
+ initially points to a non-<code class="literal">NULL</code> value, that array is used
538
538
  as a cluster buffer, and <em class="parameter"><code>num_clusters</code></em>
539
539
  should point to the number of cluster
540
540
  entries available there. If the provided cluster array is too short for
@@ -549,7 +549,7 @@ array using <a class="link" href="cairo-text.html#cairo-text-cluster-free" title
549
549
  array was large enough.</p>
550
550
  <p>In the simplest case, <em class="parameter"><code>glyphs</code></em>
551
551
  and <em class="parameter"><code>clusters</code></em>
552
- can point to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> initially
552
+ can point to <code class="literal">NULL</code> initially
553
553
  and a suitable array will be allocated. In code:</p>
554
554
  <div class="informalexample"><pre class="programlisting">
555
555
  cairo_status_t status;
@@ -682,19 +682,19 @@ in bytes, or -1 if it is NUL-terminated</p></td>
682
682
  </tr>
683
683
  <tr>
684
684
  <td class="parameter_name"><p>clusters</p></td>
685
- <td class="parameter_description"><p>pointer to array of cluster mapping information to fill, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
685
+ <td class="parameter_description"><p>pointer to array of cluster mapping information to fill, or <code class="literal">NULL</code></p></td>
686
686
  <td class="parameter_annotations"> </td>
687
687
  </tr>
688
688
  <tr>
689
689
  <td class="parameter_name"><p>num_clusters</p></td>
690
- <td class="parameter_description"><p>pointer to number of clusters, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
690
+ <td class="parameter_description"><p>pointer to number of clusters, or <code class="literal">NULL</code></p></td>
691
691
  <td class="parameter_annotations"> </td>
692
692
  </tr>
693
693
  <tr>
694
694
  <td class="parameter_name"><p>cluster_flags</p></td>
695
695
  <td class="parameter_description"><p>pointer to location to store cluster flags corresponding to the
696
696
  output <em class="parameter"><code>clusters</code></em>
697
- , or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
697
+ , or <code class="literal">NULL</code></p></td>
698
698
  <td class="parameter_annotations"> </td>
699
699
  </tr>
700
700
  </tbody>
@@ -956,7 +956,7 @@ cairo_scaled_font_set_user_data (<em class="parameter"><code><a class="link" hre
956
956
  <em class="parameter"><code><a class="link" href="cairo-Types.html#cairo-destroy-func-t" title="cairo_destroy_func_t ()"><span class="type">cairo_destroy_func_t</span></a> destroy</code></em>);</pre>
957
957
  <p>Attach user data to <em class="parameter"><code>scaled_font</code></em>
958
958
  . To remove user data from a surface,
959
- call this function with the key that was used to set it and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
959
+ call this function with the key that was used to set it and <code class="literal">NULL</code>
960
960
  for <em class="parameter"><code>data</code></em>
961
961
  .</p>
962
962
  <div class="refsect3">
@@ -1010,7 +1010,7 @@ cairo_scaled_font_get_user_data (<em class="parameter"><code><a class="link" hre
1010
1010
  <p>Return user data previously attached to <em class="parameter"><code>scaled_font</code></em>
1011
1011
  using the
1012
1012
  specified key. If no user data has been attached with the given
1013
- key this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1013
+ key this function returns <code class="literal">NULL</code>.</p>
1014
1014
  <div class="refsect3">
1015
1015
  <a name="id-1.4.3.7.18.5"></a><h4>Parameters</h4>
1016
1016
  <div class="informaltable"><table width="100%" border="0">
@@ -1036,7 +1036,7 @@ attached to</p></td>
1036
1036
  </div>
1037
1037
  <div class="refsect3">
1038
1038
  <a name="id-1.4.3.7.18.6"></a><h4>Returns</h4>
1039
- <p> the user data previously attached or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1039
+ <p> the user data previously attached or <code class="literal">NULL</code>.</p>
1040
1040
  <p></p>
1041
1041
  </div>
1042
1042
  <p class="since">Since 1.4</p>
@@ -599,8 +599,8 @@ cairo_surface_reference (<em class="parameter"><code><a class="link" href="cairo
599
599
  <em class="parameter"><code>surface</code></em>
600
600
  from being destroyed until a matching call to
601
601
  <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> is made.</p>
602
- <p>The number of references to a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> can be get using
603
- <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-get-reference-count" title="cairo_surface_get_reference_count ()"><code class="function">cairo_surface_get_reference_count()</code></a>.</p>
602
+ <p>Use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-get-reference-count" title="cairo_surface_get_reference_count ()"><code class="function">cairo_surface_get_reference_count()</code></a> to get the number of
603
+ references to a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>.</p>
604
604
  <div class="refsect3">
605
605
  <a name="id-1.5.3.7.5.6"></a><h4>Parameters</h4>
606
606
  <div class="informaltable"><table width="100%" border="0">
@@ -771,7 +771,7 @@ See <a class="link" href="cairo-cairo-device-t.html#cairo-device-t" title="cairo
771
771
  <div class="refsect3">
772
772
  <a name="id-1.5.3.7.10.6"></a><h4>Returns</h4>
773
773
  <p> The device for <em class="parameter"><code>surface</code></em>
774
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the surface does
774
+ or <code class="literal">NULL</code> if the surface does
775
775
  not have an associated device.</p>
776
776
  <p></p>
777
777
  </div>
@@ -1258,7 +1258,7 @@ cairo_surface_set_user_data (<em class="parameter"><code><a class="link" href="c
1258
1258
  <em class="parameter"><code><a class="link" href="cairo-Types.html#cairo-destroy-func-t" title="cairo_destroy_func_t ()"><span class="type">cairo_destroy_func_t</span></a> destroy</code></em>);</pre>
1259
1259
  <p>Attach user data to <em class="parameter"><code>surface</code></em>
1260
1260
  . To remove user data from a surface,
1261
- call this function with the key that was used to set it and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1261
+ call this function with the key that was used to set it and <code class="literal">NULL</code>
1262
1262
  for <em class="parameter"><code>data</code></em>
1263
1263
  .</p>
1264
1264
  <div class="refsect3">
@@ -1312,7 +1312,7 @@ cairo_surface_get_user_data (<em class="parameter"><code><a class="link" href="c
1312
1312
  <p>Return user data previously attached to <em class="parameter"><code>surface</code></em>
1313
1313
  using the specified
1314
1314
  key. If no user data has been attached with the given key this
1315
- function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1315
+ function returns <code class="literal">NULL</code>.</p>
1316
1316
  <div class="refsect3">
1317
1317
  <a name="id-1.5.3.7.24.5"></a><h4>Parameters</h4>
1318
1318
  <div class="informaltable"><table width="100%" border="0">
@@ -1338,7 +1338,7 @@ attached to</p></td>
1338
1338
  </div>
1339
1339
  <div class="refsect3">
1340
1340
  <a name="id-1.5.3.7.24.6"></a><h4>Returns</h4>
1341
- <p> the user data previously attached or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1341
+ <p> the user data previously attached or <code class="literal">NULL</code>.</p>
1342
1342
  <p></p>
1343
1343
  </div>
1344
1344
  <p class="since">Since 1.0</p>
@@ -1406,7 +1406,7 @@ cairo_surface_has_show_text_glyphs (<em class="parameter"><code><a class="link"
1406
1406
  sophisticated <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a> operations. That is,
1407
1407
  whether it actually uses the provided text and cluster data
1408
1408
  to a <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a> call.</p>
1409
- <p>Note: Even if this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, a
1409
+ <p>Note: Even if this function returns <code class="literal">FALSE</code>, a
1410
1410
  <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a> operation targeted at <em class="parameter"><code>surface</code></em>
1411
1411
  will
1412
1412
  still succeed. It just will
@@ -1430,9 +1430,9 @@ target surface does not use it.</p>
1430
1430
  </div>
1431
1431
  <div class="refsect3">
1432
1432
  <a name="id-1.5.3.7.27.7"></a><h4>Returns</h4>
1433
- <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>surface</code></em>
1433
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>surface</code></em>
1434
1434
  supports
1435
- <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
1435
+ <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a>, <code class="literal">FALSE</code> otherwise</p>
1436
1436
  <p></p>
1437
1437
  </div>
1438
1438
  <p class="since">Since 1.8</p>
@@ -1451,7 +1451,7 @@ cairo_surface_set_mime_data (<em class="parameter"><code><a class="link" href="c
1451
1451
  to <em class="parameter"><code>surface</code></em>
1452
1452
  . To remove
1453
1453
  the data from a surface, call this function with same mime type
1454
- and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>data</code></em>
1454
+ and <code class="literal">NULL</code> for <em class="parameter"><code>data</code></em>
1455
1455
  .</p>
1456
1456
  <p>The attached image (or filename) data can later be used by backends
1457
1457
  which support it (currently: PDF, PS, SVG and Win32 Printing
@@ -1541,7 +1541,7 @@ cairo_surface_get_mime_data (<em class="parameter"><code><a class="link" href="c
1541
1541
  using the
1542
1542
  specified mime type. If no data has been attached with the given
1543
1543
  mime type, <em class="parameter"><code>data</code></em>
1544
- is set <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1544
+ is set <code class="literal">NULL</code>.</p>
1545
1545
  <div class="refsect3">
1546
1546
  <a name="id-1.5.3.7.29.5"></a><h4>Parameters</h4>
1547
1547
  <div class="informaltable"><table width="100%" border="0">
@@ -1609,10 +1609,10 @@ cairo_surface_supports_mime_type (<em class="parameter"><code><a class="link" hr
1609
1609
  </div>
1610
1610
  <div class="refsect3">
1611
1611
  <a name="id-1.5.3.7.30.6"></a><h4>Returns</h4>
1612
- <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>surface</code></em>
1612
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>surface</code></em>
1613
1613
  supports
1614
1614
  <em class="parameter"><code>mime_type</code></em>
1615
- , <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
1615
+ , <code class="literal">FALSE</code> otherwise</p>
1616
1616
  <p></p>
1617
1617
  </div>
1618
1618
  <p class="since">Since 1.12</p>
@@ -1626,7 +1626,7 @@ cairo_surface_map_to_image (<em class="parameter"><code><a class="link" href="ca
1626
1626
  <p>Returns an image surface that is the most efficient mechanism for
1627
1627
  modifying the backing store of the target surface. The region retrieved
1628
1628
  may be limited to the <em class="parameter"><code>extents</code></em>
1629
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for the whole surface</p>
1629
+ or <code class="literal">NULL</code> for the whole surface</p>
1630
1630
  <p>Note, the use of the original surface as a target or source whilst
1631
1631
  it is mapped is undefined. The result of mapping the surface
1632
1632
  multiple times is undefined. Calling <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> or
@@ -618,7 +618,7 @@ maintain a separate reference to it.</p>
618
618
  <p> a newly allocated <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> with a reference
619
619
  count of 1. The initial reference count should be released
620
620
  with <a class="link" href="cairo-cairo-t.html#cairo-destroy" title="cairo_destroy ()"><code class="function">cairo_destroy()</code></a> when you are done using the <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a>.
621
- This function never returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. If memory cannot be
621
+ This function never returns <code class="literal">NULL</code>. If memory cannot be
622
622
  allocated, a special <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> object will be returned on
623
623
  which <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a> returns <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>. If
624
624
  you attempt to target a surface which does not support
@@ -639,8 +639,8 @@ cairo_reference (<em class="parameter"><code><a class="link" href="cairo-cairo-t
639
639
  <em class="parameter"><code>cr</code></em>
640
640
  from being destroyed until a matching call to <a class="link" href="cairo-cairo-t.html#cairo-destroy" title="cairo_destroy ()"><code class="function">cairo_destroy()</code></a>
641
641
  is made.</p>
642
- <p>The number of references to a <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> can be get using
643
- <a class="link" href="cairo-cairo-t.html#cairo-get-reference-count" title="cairo_get_reference_count ()"><code class="function">cairo_get_reference_count()</code></a>.</p>
642
+ <p>Use <a class="link" href="cairo-cairo-t.html#cairo-get-reference-count" title="cairo_get_reference_count ()"><code class="function">cairo_get_reference_count()</code></a> to get the number of references to
643
+ a <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a>.</p>
644
644
  <div class="refsect3">
645
645
  <a name="id-1.3.2.7.3.6"></a><h4>Parameters</h4>
646
646
  <div class="informaltable"><table width="100%" border="0">
@@ -1437,7 +1437,7 @@ is not currently in effect).</p>
1437
1437
  cairo_get_dash (<em class="parameter"><code><a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> *cr</code></em>,
1438
1438
  <em class="parameter"><code><span class="type">double</span> *dashes</code></em>,
1439
1439
  <em class="parameter"><code><span class="type">double</span> *offset</code></em>);</pre>
1440
- <p>Gets the current dash array. If not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>dashes</code></em>
1440
+ <p>Gets the current dash array. If not <code class="literal">NULL</code>, <em class="parameter"><code>dashes</code></em>
1441
1441
  should be big
1442
1442
  enough to hold at least the number of values returned by
1443
1443
  <a class="link" href="cairo-cairo-t.html#cairo-get-dash-count" title="cairo_get_dash_count ()"><code class="function">cairo_get_dash_count()</code></a>.</p>
@@ -1457,12 +1457,12 @@ enough to hold at least the number of values returned by
1457
1457
  </tr>
1458
1458
  <tr>
1459
1459
  <td class="parameter_name"><p>dashes</p></td>
1460
- <td class="parameter_description"><p>return value for the dash array, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
1460
+ <td class="parameter_description"><p>return value for the dash array, or <code class="literal">NULL</code></p></td>
1461
1461
  <td class="parameter_annotations"> </td>
1462
1462
  </tr>
1463
1463
  <tr>
1464
1464
  <td class="parameter_name"><p>offset</p></td>
1465
- <td class="parameter_description"><p>return value for the current dash offset, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
1465
+ <td class="parameter_description"><p>return value for the current dash offset, or <code class="literal">NULL</code></p></td>
1466
1466
  <td class="parameter_annotations"> </td>
1467
1467
  </tr>
1468
1468
  </tbody>
@@ -2185,7 +2185,7 @@ be dereferenced.</p>
2185
2185
  <pre class="programlisting"><a class="link" href="cairo-cairo-t.html#cairo-rectangle-list-t" title="cairo_rectangle_list_t"><span class="returnvalue">cairo_rectangle_list_t</span></a> *
2186
2186
  cairo_copy_clip_rectangle_list (<em class="parameter"><code><a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
2187
2187
  <p>Gets the current clip region as a list of rectangles in user coordinates.
2188
- Never returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
2188
+ Never returns <code class="literal">NULL</code>.</p>
2189
2189
  <p>The status in the list may be <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-CLIP-NOT-REPRESENTABLE:CAPS"><code class="literal">CAIRO_STATUS_CLIP_NOT_REPRESENTABLE</code></a> to
2190
2190
  indicate that the clip region cannot be represented as a list of
2191
2191
  user-space rectangles. The status may have other values to indicate
@@ -2806,7 +2806,7 @@ cairo_set_user_data (<em class="parameter"><code><a class="link" href="cairo-cai
2806
2806
  <em class="parameter"><code><a class="link" href="cairo-Types.html#cairo-destroy-func-t" title="cairo_destroy_func_t ()"><span class="type">cairo_destroy_func_t</span></a> destroy</code></em>);</pre>
2807
2807
  <p>Attach user data to <em class="parameter"><code>cr</code></em>
2808
2808
  . To remove user data from a surface,
2809
- call this function with the key that was used to set it and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
2809
+ call this function with the key that was used to set it and <code class="literal">NULL</code>
2810
2810
  for <em class="parameter"><code>data</code></em>
2811
2811
  .</p>
2812
2812
  <div class="refsect3">
@@ -2860,7 +2860,7 @@ cairo_get_user_data (<em class="parameter"><code><a class="link" href="cairo-cai
2860
2860
  <p>Return user data previously attached to <em class="parameter"><code>cr</code></em>
2861
2861
  using the specified
2862
2862
  key. If no user data has been attached with the given key this
2863
- function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
2863
+ function returns <code class="literal">NULL</code>.</p>
2864
2864
  <div class="refsect3">
2865
2865
  <a name="id-1.3.2.7.61.5"></a><h4>Parameters</h4>
2866
2866
  <div class="informaltable"><table width="100%" border="0">
@@ -2886,7 +2886,7 @@ attached to</p></td>
2886
2886
  </div>
2887
2887
  <div class="refsect3">
2888
2888
  <a name="id-1.3.2.7.61.6"></a><h4>Returns</h4>
2889
- <p> the user data previously attached or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
2889
+ <p> the user data previously attached or <code class="literal">NULL</code>.</p>
2890
2890
  <p></p>
2891
2891
  </div>
2892
2892
  <p class="since">Since 1.4</p>
@@ -44,6 +44,9 @@
44
44
  <dt>
45
45
  <span class="refentrytitle"><a href="cairo-Raster-Sources.html">Raster Sources</a></span><span class="refpurpose"> — Supplying arbitrary image data</span>
46
46
  </dt>
47
+ <dt>
48
+ <span class="refentrytitle"><a href="cairo-Tags-and-Links.html">Tags and Links</a></span><span class="refpurpose"> — Hyperlinks and document structure</span>
49
+ </dt>
47
50
  </dl></div>
48
51
  </div>
49
52
  <div class="footer">
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
7
  <link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
8
8
  <link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
9
- <link rel="prev" href="cairo-Raster-Sources.html" title="Raster Sources">
9
+ <link rel="prev" href="cairo-Tags-and-Links.html" title="Tags and Links">
10
10
  <link rel="next" href="cairo-cairo-font-face-t.html" title="cairo_font_face_t">
11
11
  <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
@@ -16,7 +16,7 @@
16
16
  <td width="100%" align="left" class="shortcuts"></td>
17
17
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
18
  <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
- <td><a accesskey="p" href="cairo-Raster-Sources.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19
+ <td><a accesskey="p" href="cairo-Tags-and-Links.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
20
  <td><a accesskey="n" href="cairo-cairo-font-face-t.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
22
22
  <div class="chapter">
@@ -582,7 +582,7 @@ destroyed if there are no other references to it.</p>
582
582
  </tr>
583
583
  <tr>
584
584
  <td class="parameter_name"><p>font_face</p></td>
585
- <td class="parameter_description"><p>a <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to restore to the default font</p></td>
585
+ <td class="parameter_description"><p>a <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>, or <code class="literal">NULL</code> to restore to the default font</p></td>
586
586
  <td class="parameter_annotations"> </td>
587
587
  </tr>
588
588
  </tbody>
@@ -616,7 +616,7 @@ cairo_get_font_face (<em class="parameter"><code><a class="link" href="cairo-cai
616
616
  <p> the current font face. This object is owned by
617
617
  cairo. To keep a reference to it, you must call
618
618
  <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-reference" title="cairo_font_face_reference ()"><code class="function">cairo_font_face_reference()</code></a>.</p>
619
- <p>This function never returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. If memory cannot be allocated, a
619
+ <p>This function never returns <code class="literal">NULL</code>. If memory cannot be allocated, a
620
620
  special "nil" <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> object will be returned on which
621
621
  <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-status" title="cairo_font_face_status ()"><code class="function">cairo_font_face_status()</code></a> returns <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>. Using
622
622
  this nil object will cause its error state to propagate to other
@@ -688,7 +688,7 @@ cairo_get_scaled_font (<em class="parameter"><code><a class="link" href="cairo-c
688
688
  <p> the current scaled font. This object is owned by
689
689
  cairo. To keep a reference to it, you must call
690
690
  <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-reference" title="cairo_scaled_font_reference ()"><code class="function">cairo_scaled_font_reference()</code></a>.</p>
691
- <p>This function never returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. If memory cannot be allocated, a
691
+ <p>This function never returns <code class="literal">NULL</code>. If memory cannot be allocated, a
692
692
  special "nil" <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> object will be returned on which
693
693
  <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-status" title="cairo_scaled_font_status ()"><code class="function">cairo_scaled_font_status()</code></a> returns <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>. Using
694
694
  this nil object will cause its error state to propagate to other
@@ -739,7 +739,7 @@ serious text-using applications. See <a class="link" href="cairo-text.html#cairo
739
739
  </tr>
740
740
  <tr>
741
741
  <td class="parameter_name"><p>utf8</p></td>
742
- <td class="parameter_description"><p>a NUL-terminated string of text encoded in UTF-8, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
742
+ <td class="parameter_description"><p>a NUL-terminated string of text encoded in UTF-8, or <code class="literal">NULL</code></p></td>
743
743
  <td class="parameter_annotations"> </td>
744
744
  </tr>
745
745
  </tbody>
@@ -948,7 +948,7 @@ affect the x_advance and y_advance values.</p>
948
948
  </tr>
949
949
  <tr>
950
950
  <td class="parameter_name"><p>utf8</p></td>
951
- <td class="parameter_description"><p>a NUL-terminated string of text encoded in UTF-8, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
951
+ <td class="parameter_description"><p>a NUL-terminated string of text encoded in UTF-8, or <code class="literal">NULL</code></p></td>
952
952
  <td class="parameter_annotations"> </td>
953
953
  </tr>
954
954
  <tr>
@@ -1161,9 +1161,9 @@ This function is only useful in implementations of
1161
1161
  needs to allocate an array of glyphs that cairo will free.
1162
1162
  For all other uses, user can use their own allocation method
1163
1163
  for glyphs.</p>
1164
- <p>This function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>num_glyphs</code></em>
1164
+ <p>This function returns <code class="literal">NULL</code> if <em class="parameter"><code>num_glyphs</code></em>
1165
1165
  is not positive,
1166
- or if out of memory. That means, the <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> return value
1166
+ or if out of memory. That means, the <code class="literal">NULL</code> return value
1167
1167
  signals out-of-memory only if <em class="parameter"><code>num_glyphs</code></em>
1168
1168
  was positive.</p>
1169
1169
  <div class="refsect3">
@@ -1210,7 +1210,7 @@ for glyphs.</p>
1210
1210
  </colgroup>
1211
1211
  <tbody><tr>
1212
1212
  <td class="parameter_name"><p>glyphs</p></td>
1213
- <td class="parameter_description"><p>array of glyphs to free, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
1213
+ <td class="parameter_description"><p>array of glyphs to free, or <code class="literal">NULL</code></p></td>
1214
1214
  <td class="parameter_annotations"> </td>
1215
1215
  </tr></tbody>
1216
1216
  </table></div>
@@ -1228,9 +1228,9 @@ This function is only useful in implementations of
1228
1228
  needs to allocate an array of text clusters that cairo will free.
1229
1229
  For all other uses, user can use their own allocation method
1230
1230
  for text clusters.</p>
1231
- <p>This function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>num_clusters</code></em>
1231
+ <p>This function returns <code class="literal">NULL</code> if <em class="parameter"><code>num_clusters</code></em>
1232
1232
  is not positive,
1233
- or if out of memory. That means, the <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> return value
1233
+ or if out of memory. That means, the <code class="literal">NULL</code> return value
1234
1234
  signals out-of-memory only if <em class="parameter"><code>num_clusters</code></em>
1235
1235
  was positive.</p>
1236
1236
  <div class="refsect3">
@@ -1277,7 +1277,7 @@ for text clusters.</p>
1277
1277
  </colgroup>
1278
1278
  <tbody><tr>
1279
1279
  <td class="parameter_name"><p>clusters</p></td>
1280
- <td class="parameter_description"><p>array of text clusters to free, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
1280
+ <td class="parameter_description"><p>array of text clusters to free, or <code class="literal">NULL</code></p></td>
1281
1281
  <td class="parameter_annotations"> </td>
1282
1282
  </tr></tbody>
1283
1283
  </table></div>
@@ -10,6 +10,7 @@
10
10
  <sub name="Transformations" link="cairo-Transformations.html"/>
11
11
  <sub name="text" link="cairo-text.html"/>
12
12
  <sub name="Raster Sources" link="cairo-Raster-Sources.html"/>
13
+ <sub name="Tags and Links" link="cairo-Tags-and-Links.html"/>
13
14
  </sub>
14
15
  <sub name="Fonts" link="cairo-fonts.html">
15
16
  <sub name="cairo_font_face_t" link="cairo-cairo-font-face-t.html"/>
@@ -280,6 +281,13 @@
280
281
  <keyword type="function" name="cairo_raster_source_snapshot_func_t ()" link="cairo-Raster-Sources.html#cairo-raster-source-snapshot-func-t" since="1.12"/>
281
282
  <keyword type="function" name="cairo_raster_source_copy_func_t ()" link="cairo-Raster-Sources.html#cairo-raster-source-copy-func-t" since="1.12"/>
282
283
  <keyword type="function" name="cairo_raster_source_finish_func_t ()" link="cairo-Raster-Sources.html#cairo-raster-source-finish-func-t" since="1.12"/>
284
+ <keyword type="" name="Link Tags" link="cairo-Tags-and-Links.html#link"/>
285
+ <keyword type="" name="Destination Tags" link="cairo-Tags-and-Links.html#dest"/>
286
+ <keyword type="" name="Document Structure (PDF)" link="cairo-Tags-and-Links.html#doc-struct"/>
287
+ <keyword type="function" name="cairo_tag_begin ()" link="cairo-Tags-and-Links.html#cairo-tag-begin" since="1.16"/>
288
+ <keyword type="function" name="cairo_tag_end ()" link="cairo-Tags-and-Links.html#cairo-tag-end" since="1.16"/>
289
+ <keyword type="macro" name="CAIRO_TAG_DEST" link="cairo-Tags-and-Links.html#CAIRO-TAG-DEST:CAPS" since="1.16"/>
290
+ <keyword type="macro" name="CAIRO_TAG_LINK" link="cairo-Tags-and-Links.html#CAIRO-TAG-LINK:CAPS" since="1.16"/>
283
291
  <keyword type="function" name="cairo_font_face_reference ()" link="cairo-cairo-font-face-t.html#cairo-font-face-reference" since="1.0"/>
284
292
  <keyword type="function" name="cairo_font_face_destroy ()" link="cairo-cairo-font-face-t.html#cairo-font-face-destroy" since="1.0"/>
285
293
  <keyword type="function" name="cairo_font_face_status ()" link="cairo-cairo-font-face-t.html#cairo-font-face-status" since="1.0"/>
@@ -444,7 +452,14 @@
444
452
  <keyword type="function" name="cairo_pdf_get_versions ()" link="cairo-PDF-Surfaces.html#cairo-pdf-get-versions" since="1.10"/>
445
453
  <keyword type="function" name="cairo_pdf_version_to_string ()" link="cairo-PDF-Surfaces.html#cairo-pdf-version-to-string" since="1.10"/>
446
454
  <keyword type="function" name="cairo_pdf_surface_set_size ()" link="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-size" since="1.2"/>
455
+ <keyword type="function" name="cairo_pdf_surface_add_outline ()" link="cairo-PDF-Surfaces.html#cairo-pdf-surface-add-outline" since="1.16"/>
456
+ <keyword type="function" name="cairo_pdf_surface_set_metadata ()" link="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-metadata" since="1.16"/>
457
+ <keyword type="function" name="cairo_pdf_surface_set_page_label ()" link="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-page-label" since="1.16"/>
458
+ <keyword type="function" name="cairo_pdf_surface_set_thumbnail_size ()" link="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-thumbnail-size" since="1.16"/>
447
459
  <keyword type="macro" name="CAIRO_HAS_PDF_SURFACE" link="cairo-PDF-Surfaces.html#CAIRO-HAS-PDF-SURFACE:CAPS" since="1.2"/>
460
+ <keyword type="macro" name="CAIRO_PDF_OUTLINE_ROOT" link="cairo-PDF-Surfaces.html#CAIRO-PDF-OUTLINE-ROOT:CAPS" since="1.16"/>
461
+ <keyword type="enum" name="enum cairo_pdf_outline_flags_t" link="cairo-PDF-Surfaces.html#cairo-pdf-outline-flags-t" since="1.16"/>
462
+ <keyword type="enum" name="enum cairo_pdf_metadata_t" link="cairo-PDF-Surfaces.html#cairo-pdf-metadata-t" since="1.16"/>
448
463
  <keyword type="enum" name="enum cairo_pdf_version_t" link="cairo-PDF-Surfaces.html#cairo-pdf-version-t" since="1.10"/>
449
464
  <keyword type="function" name="cairo_image_surface_create_from_png ()" link="cairo-PNG-Support.html#cairo-image-surface-create-from-png" since="1.0"/>
450
465
  <keyword type="function" name="cairo_read_func_t ()" link="cairo-PNG-Support.html#cairo-read-func-t" since="1.0"/>
@@ -541,14 +541,28 @@
541
541
  </dt>
542
542
  <dt>cairo_pdf_get_versions, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-get-versions">cairo_pdf_get_versions ()</a>
543
543
  </dt>
544
+ <dt>cairo_pdf_metadata_t, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-metadata-t">enum cairo_pdf_metadata_t</a>
545
+ </dt>
546
+ <dt>cairo_pdf_outline_flags_t, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-outline-flags-t">enum cairo_pdf_outline_flags_t</a>
547
+ </dt>
548
+ <dt>CAIRO_PDF_OUTLINE_ROOT, <a class="indexterm" href="cairo-PDF-Surfaces.html#CAIRO-PDF-OUTLINE-ROOT:CAPS">CAIRO_PDF_OUTLINE_ROOT</a>
549
+ </dt>
550
+ <dt>cairo_pdf_surface_add_outline, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-add-outline">cairo_pdf_surface_add_outline ()</a>
551
+ </dt>
544
552
  <dt>cairo_pdf_surface_create, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-create">cairo_pdf_surface_create ()</a>
545
553
  </dt>
546
554
  <dt>cairo_pdf_surface_create_for_stream, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-create-for-stream">cairo_pdf_surface_create_for_stream ()</a>
547
555
  </dt>
548
556
  <dt>cairo_pdf_surface_restrict_to_version, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-restrict-to-version">cairo_pdf_surface_restrict_to_version ()</a>
549
557
  </dt>
558
+ <dt>cairo_pdf_surface_set_metadata, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-metadata">cairo_pdf_surface_set_metadata ()</a>
559
+ </dt>
560
+ <dt>cairo_pdf_surface_set_page_label, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-page-label">cairo_pdf_surface_set_page_label ()</a>
561
+ </dt>
550
562
  <dt>cairo_pdf_surface_set_size, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-size">cairo_pdf_surface_set_size ()</a>
551
563
  </dt>
564
+ <dt>cairo_pdf_surface_set_thumbnail_size, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-thumbnail-size">cairo_pdf_surface_set_thumbnail_size ()</a>
565
+ </dt>
552
566
  <dt>cairo_pdf_version_t, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-version-t">enum cairo_pdf_version_t</a>
553
567
  </dt>
554
568
  <dt>cairo_pdf_version_to_string, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-version-to-string">cairo_pdf_version_to_string ()</a>
@@ -933,6 +947,14 @@
933
947
  <dl>
934
948
  <dt>cairo_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-t">cairo_t</a>
935
949
  </dt>
950
+ <dt>cairo_tag_begin, <a class="indexterm" href="cairo-Tags-and-Links.html#cairo-tag-begin">cairo_tag_begin ()</a>
951
+ </dt>
952
+ <dt>CAIRO_TAG_DEST, <a class="indexterm" href="cairo-Tags-and-Links.html#CAIRO-TAG-DEST:CAPS">CAIRO_TAG_DEST</a>
953
+ </dt>
954
+ <dt>cairo_tag_end, <a class="indexterm" href="cairo-Tags-and-Links.html#cairo-tag-end">cairo_tag_end ()</a>
955
+ </dt>
956
+ <dt>CAIRO_TAG_LINK, <a class="indexterm" href="cairo-Tags-and-Links.html#CAIRO-TAG-LINK:CAPS">CAIRO_TAG_LINK</a>
957
+ </dt>
936
958
  <dt>cairo_text_cluster_allocate, <a class="indexterm" href="cairo-text.html#cairo-text-cluster-allocate">cairo_text_cluster_allocate ()</a>
937
959
  </dt>
938
960
  <dt>cairo_text_cluster_flags_t, <a class="indexterm" href="cairo-text.html#cairo-text-cluster-flags-t">enum cairo_text_cluster_flags_t</a>