cairo 1.8.5-x86-mingw32 → 1.10.0-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.
- data/NEWS +2 -2
- data/Rakefile +44 -7
- data/ext/cairo/cairo.def +28 -1
- data/ext/cairo/extconf.rb +14 -16
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +65 -1
- data/ext/cairo/rb_cairo_constants.c +150 -3
- data/ext/cairo/rb_cairo_context.c +17 -0
- data/ext/cairo/rb_cairo_device.c +406 -0
- data/ext/cairo/rb_cairo_exception.c +83 -32
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +1 -1
- data/ext/cairo/rb_cairo_private.h +3 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_surface.c +674 -199
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/samples/blur.rb +2 -3
- data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +2 -3
- data/samples/png.rb +2 -3
- data/samples/scalable.rb +2 -3
- data/samples/text-on-path.rb +2 -3
- data/samples/text2.rb +2 -3
- data/test/cairo-test-utils.rb +15 -0
- data/test/run-test.rb +5 -4
- data/test/test_context.rb +4 -4
- data/test/test_font_face.rb +34 -21
- data/test/test_recording_surface.rb +18 -0
- data/test/test_region.rb +102 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +14 -4
- data/test/test_tee_surface.rb +32 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +32 -0
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
- data/vendor/local/include/cairo/cairo-features.h +7 -0
- data/vendor/local/include/cairo/cairo-ft.h +16 -9
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +27 -1
- data/vendor/local/include/cairo/cairo-ps.h +1 -1
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +1 -1
- data/vendor/local/include/cairo/cairo-version.h +2 -2
- data/vendor/local/include/cairo/cairo-win32.h +1 -1
- data/vendor/local/include/cairo/cairo.h +382 -26
- data/vendor/local/lib/cairo.def +44 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
- data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
- data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
- data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
- metadata +137 -389
- data/doc/doc.css +0 -91
- data/doc/en/cairo-antialias.html +0 -38
- data/doc/en/cairo-clip-not-representable-error.html +0 -47
- data/doc/en/cairo-color-base.html +0 -69
- data/doc/en/cairo-color-cmyk.html +0 -157
- data/doc/en/cairo-color-hsv.html +0 -137
- data/doc/en/cairo-color-rgb.html +0 -142
- data/doc/en/cairo-color-x11.html +0 -173
- data/doc/en/cairo-color.html +0 -238
- data/doc/en/cairo-content.html +0 -37
- data/doc/en/cairo-context-blur.html +0 -39
- data/doc/en/cairo-context-circle.html +0 -39
- data/doc/en/cairo-context-color.html +0 -39
- data/doc/en/cairo-context-path.html +0 -44
- data/doc/en/cairo-context-rectangle.html +0 -39
- data/doc/en/cairo-context-triangle.html +0 -39
- data/doc/en/cairo-context.html +0 -643
- data/doc/en/cairo-error.html +0 -44
- data/doc/en/cairo-extend.html +0 -38
- data/doc/en/cairo-file-not-found.html +0 -47
- data/doc/en/cairo-fill-rule.html +0 -36
- data/doc/en/cairo-filter.html +0 -40
- data/doc/en/cairo-font-extents.html +0 -129
- data/doc/en/cairo-font-face.html +0 -38
- data/doc/en/cairo-font-options.html +0 -139
- data/doc/en/cairo-font-slant.html +0 -37
- data/doc/en/cairo-font-type-mismatch.html +0 -47
- data/doc/en/cairo-font-weight.html +0 -36
- data/doc/en/cairo-format.html +0 -46
- data/doc/en/cairo-glyph.html +0 -99
- data/doc/en/cairo-gradient-pattern.html +0 -74
- data/doc/en/cairo-hint-metrics.html +0 -37
- data/doc/en/cairo-hint-style.html +0 -39
- data/doc/en/cairo-image-surface.html +0 -82
- data/doc/en/cairo-invalid-clusters.html +0 -47
- data/doc/en/cairo-invalid-content-error.html +0 -47
- data/doc/en/cairo-invalid-dash-error.html +0 -47
- data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
- data/doc/en/cairo-invalid-format-error.html +0 -47
- data/doc/en/cairo-invalid-index-error.html +0 -47
- data/doc/en/cairo-invalid-matrix-error.html +0 -47
- data/doc/en/cairo-invalid-path-data-error.html +0 -47
- data/doc/en/cairo-invalid-pop-group-error.html +0 -47
- data/doc/en/cairo-invalid-restore-error.html +0 -47
- data/doc/en/cairo-invalid-slant.html +0 -47
- data/doc/en/cairo-invalid-status-error.html +0 -47
- data/doc/en/cairo-invalid-stride-error.html +0 -47
- data/doc/en/cairo-invalid-string-error.html +0 -47
- data/doc/en/cairo-invalid-visual-error.html +0 -47
- data/doc/en/cairo-invalid-weight.html +0 -47
- data/doc/en/cairo-line-cap.html +0 -37
- data/doc/en/cairo-line-join.html +0 -37
- data/doc/en/cairo-linear-pattern.html +0 -60
- data/doc/en/cairo-matrix.html +0 -259
- data/doc/en/cairo-negative-count.html +0 -47
- data/doc/en/cairo-no-current-point-error.html +0 -47
- data/doc/en/cairo-null-pointer-error.html +0 -47
- data/doc/en/cairo-operator.html +0 -48
- data/doc/en/cairo-paper-parse-error.html +0 -47
- data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
- data/doc/en/cairo-paper-unknown-unit.html +0 -66
- data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
- data/doc/en/cairo-paper.html +0 -184
- data/doc/en/cairo-path-close-path.html +0 -49
- data/doc/en/cairo-path-curve-to.html +0 -49
- data/doc/en/cairo-path-data-type.html +0 -38
- data/doc/en/cairo-path-data.html +0 -98
- data/doc/en/cairo-path-line-to.html +0 -49
- data/doc/en/cairo-path-move-to.html +0 -49
- data/doc/en/cairo-path.html +0 -155
- data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
- data/doc/en/cairo-pattern.html +0 -99
- data/doc/en/cairo-pdf-surface.html +0 -57
- data/doc/en/cairo-point.html +0 -74
- data/doc/en/cairo-ps-level.html +0 -49
- data/doc/en/cairo-ps-surface.html +0 -92
- data/doc/en/cairo-quartz-image-surface.html +0 -57
- data/doc/en/cairo-quartz-surface.html +0 -57
- data/doc/en/cairo-radial-pattern.html +0 -60
- data/doc/en/cairo-read-error.html +0 -47
- data/doc/en/cairo-rectangle.html +0 -89
- data/doc/en/cairo-scaled-font.html +0 -94
- data/doc/en/cairo-solid-pattern.html +0 -62
- data/doc/en/cairo-subpixel-order.html +0 -39
- data/doc/en/cairo-surface-finished-error.html +0 -47
- data/doc/en/cairo-surface-pattern.html +0 -57
- data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
- data/doc/en/cairo-surface.html +0 -121
- data/doc/en/cairo-svg-surface.html +0 -77
- data/doc/en/cairo-svg-version.html +0 -49
- data/doc/en/cairo-temp-file-error.html +0 -47
- data/doc/en/cairo-text-cluster-flag.html +0 -35
- data/doc/en/cairo-text-cluster.html +0 -84
- data/doc/en/cairo-text-extents.html +0 -144
- data/doc/en/cairo-toy-font-face.html +0 -67
- data/doc/en/cairo-user-font-error.html +0 -47
- data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
- data/doc/en/cairo-user-font-face.html +0 -72
- data/doc/en/cairo-user-font-immutable.html +0 -47
- data/doc/en/cairo-win32-printing-surface.html +0 -57
- data/doc/en/cairo-win32-surface.html +0 -62
- data/doc/en/cairo-write-error.html +0 -47
- data/doc/en/cairo.html +0 -131
- data/doc/en/index.html +0 -1154
- data/doc/index.html +0 -18
- data/doc/ja/cairo-antialias.html +0 -57
- data/doc/ja/cairo-clip-not-representable-error.html +0 -56
- data/doc/ja/cairo-color-base.html +0 -75
- data/doc/ja/cairo-color-cmyk.html +0 -152
- data/doc/ja/cairo-color-hsv.html +0 -135
- data/doc/ja/cairo-color-rgb.html +0 -145
- data/doc/ja/cairo-color-x11.html +0 -183
- data/doc/ja/cairo-color.html +0 -317
- data/doc/ja/cairo-content.html +0 -51
- data/doc/ja/cairo-context-blur.html +0 -53
- data/doc/ja/cairo-context-circle.html +0 -54
- data/doc/ja/cairo-context-color.html +0 -52
- data/doc/ja/cairo-context-path.html +0 -77
- data/doc/ja/cairo-context-rectangle.html +0 -60
- data/doc/ja/cairo-context-triangle.html +0 -47
- data/doc/ja/cairo-context.html +0 -1542
- data/doc/ja/cairo-error.html +0 -56
- data/doc/ja/cairo-extend.html +0 -56
- data/doc/ja/cairo-file-not-found.html +0 -51
- data/doc/ja/cairo-fill-rule.html +0 -58
- data/doc/ja/cairo-filter.html +0 -43
- data/doc/ja/cairo-font-extents.html +0 -164
- data/doc/ja/cairo-font-face.html +0 -55
- data/doc/ja/cairo-font-options.html +0 -189
- data/doc/ja/cairo-font-slant.html +0 -50
- data/doc/ja/cairo-font-type-mismatch.html +0 -52
- data/doc/ja/cairo-font-weight.html +0 -47
- data/doc/ja/cairo-format.html +0 -81
- data/doc/ja/cairo-glyph.html +0 -115
- data/doc/ja/cairo-gradient-pattern.html +0 -119
- data/doc/ja/cairo-hint-metrics.html +0 -57
- data/doc/ja/cairo-hint-style.html +0 -64
- data/doc/ja/cairo-image-surface.html +0 -131
- data/doc/ja/cairo-invalid-clusters.html +0 -55
- data/doc/ja/cairo-invalid-content-error.html +0 -54
- data/doc/ja/cairo-invalid-dash-error.html +0 -54
- data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
- data/doc/ja/cairo-invalid-format-error.html +0 -54
- data/doc/ja/cairo-invalid-index-error.html +0 -54
- data/doc/ja/cairo-invalid-matrix-error.html +0 -54
- data/doc/ja/cairo-invalid-path-data-error.html +0 -54
- data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
- data/doc/ja/cairo-invalid-restore-error.html +0 -55
- data/doc/ja/cairo-invalid-slant.html +0 -57
- data/doc/ja/cairo-invalid-status-error.html +0 -55
- data/doc/ja/cairo-invalid-stride-error.html +0 -55
- data/doc/ja/cairo-invalid-string-error.html +0 -54
- data/doc/ja/cairo-invalid-visual-error.html +0 -57
- data/doc/ja/cairo-invalid-weight.html +0 -57
- data/doc/ja/cairo-line-cap.html +0 -50
- data/doc/ja/cairo-line-join.html +0 -53
- data/doc/ja/cairo-linear-pattern.html +0 -87
- data/doc/ja/cairo-matrix.html +0 -354
- data/doc/ja/cairo-negative-count.html +0 -52
- data/doc/ja/cairo-no-current-point-error.html +0 -54
- data/doc/ja/cairo-null-pointer-error.html +0 -54
- data/doc/ja/cairo-operator.html +0 -51
- data/doc/ja/cairo-paper-parse-error.html +0 -55
- data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
- data/doc/ja/cairo-paper-unknown-unit.html +0 -75
- data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
- data/doc/ja/cairo-paper.html +0 -357
- data/doc/ja/cairo-path-close-path.html +0 -57
- data/doc/ja/cairo-path-curve-to.html +0 -70
- data/doc/ja/cairo-path-data-type.html +0 -53
- data/doc/ja/cairo-path-data.html +0 -127
- data/doc/ja/cairo-path-line-to.html +0 -62
- data/doc/ja/cairo-path-move-to.html +0 -62
- data/doc/ja/cairo-path.html +0 -144
- data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-pattern.html +0 -128
- data/doc/ja/cairo-pdf-surface.html +0 -86
- data/doc/ja/cairo-point.html +0 -90
- data/doc/ja/cairo-ps-level.html +0 -62
- data/doc/ja/cairo-ps-surface.html +0 -214
- data/doc/ja/cairo-quartz-image-surface.html +0 -75
- data/doc/ja/cairo-quartz-surface.html +0 -93
- data/doc/ja/cairo-radial-pattern.html +0 -93
- data/doc/ja/cairo-read-error.html +0 -55
- data/doc/ja/cairo-rectangle.html +0 -109
- data/doc/ja/cairo-scaled-font.html +0 -180
- data/doc/ja/cairo-solid-pattern.html +0 -87
- data/doc/ja/cairo-subpixel-order.html +0 -57
- data/doc/ja/cairo-surface-finished-error.html +0 -54
- data/doc/ja/cairo-surface-pattern.html +0 -68
- data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-surface.html +0 -213
- data/doc/ja/cairo-svg-surface.html +0 -114
- data/doc/ja/cairo-svg-version.html +0 -66
- data/doc/ja/cairo-temp-file-error.html +0 -50
- data/doc/ja/cairo-text-cluster-flag.html +0 -46
- data/doc/ja/cairo-text-cluster.html +0 -102
- data/doc/ja/cairo-text-extents.html +0 -163
- data/doc/ja/cairo-toy-font-face.html +0 -107
- data/doc/ja/cairo-user-font-error.html +0 -55
- data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
- data/doc/ja/cairo-user-font-face.html +0 -268
- data/doc/ja/cairo-user-font-immutable.html +0 -54
- data/doc/ja/cairo-win32-printing-surface.html +0 -80
- data/doc/ja/cairo-win32-surface.html +0 -100
- data/doc/ja/cairo-write-error.html +0 -55
- data/doc/ja/cairo.html +0 -177
- data/doc/ja/index.html +0 -1156
- data/pkg-config.rb +0 -313
- data/test-unit/Rakefile +0 -30
- data/test-unit/bin/testrb +0 -5
- data/test-unit/lib/test/unit.rb +0 -280
- data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
- data/test-unit/lib/test/unit/assertions.rb +0 -722
- data/test-unit/lib/test/unit/attribute.rb +0 -125
- data/test-unit/lib/test/unit/autorunner.rb +0 -254
- data/test-unit/lib/test/unit/collector.rb +0 -43
- data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
- data/test-unit/lib/test/unit/collector/dir.rb +0 -108
- data/test-unit/lib/test/unit/collector/load.rb +0 -135
- data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
- data/test-unit/lib/test/unit/color.rb +0 -61
- data/test-unit/lib/test/unit/diff.rb +0 -524
- data/test-unit/lib/test/unit/error.rb +0 -124
- data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
- data/test-unit/lib/test/unit/failure.rb +0 -110
- data/test-unit/lib/test/unit/fixture.rb +0 -185
- data/test-unit/lib/test/unit/notification.rb +0 -125
- data/test-unit/lib/test/unit/omission.rb +0 -143
- data/test-unit/lib/test/unit/pending.rb +0 -146
- data/test-unit/lib/test/unit/priority.rb +0 -146
- data/test-unit/lib/test/unit/runner/console.rb +0 -46
- data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
- data/test-unit/lib/test/unit/testcase.rb +0 -281
- data/test-unit/lib/test/unit/testresult.rb +0 -89
- data/test-unit/lib/test/unit/testsuite.rb +0 -110
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
- data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
- data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
- data/test-unit/lib/test/unit/util/observable.rb +0 -90
- data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
- data/test-unit/lib/test/unit/version.rb +0 -7
- data/test-unit/sample/adder.rb +0 -13
- data/test-unit/sample/subtracter.rb +0 -12
- data/test-unit/sample/tc_adder.rb +0 -18
- data/test-unit/sample/tc_subtracter.rb +0 -18
- data/test-unit/sample/ts_examples.rb +0 -7
- data/test-unit/test/collector/test_descendant.rb +0 -135
- data/test-unit/test/collector/test_dir.rb +0 -406
- data/test-unit/test/collector/test_load.rb +0 -333
- data/test-unit/test/collector/test_objectspace.rb +0 -98
- data/test-unit/test/run-test.rb +0 -13
- data/test-unit/test/test_assertions.rb +0 -693
- data/test-unit/test/test_attribute.rb +0 -86
- data/test-unit/test/test_color.rb +0 -37
- data/test-unit/test/test_diff.rb +0 -477
- data/test-unit/test/test_emacs_runner.rb +0 -60
- data/test-unit/test/test_error.rb +0 -26
- data/test-unit/test/test_failure.rb +0 -33
- data/test-unit/test/test_fixture.rb +0 -252
- data/test-unit/test/test_notification.rb +0 -33
- data/test-unit/test/test_omission.rb +0 -81
- data/test-unit/test/test_pending.rb +0 -70
- data/test-unit/test/test_priority.rb +0 -89
- data/test-unit/test/test_testcase.rb +0 -430
- data/test-unit/test/test_testresult.rb +0 -113
- data/test-unit/test/test_testsuite.rb +0 -129
- data/test-unit/test/testunit_test_util.rb +0 -14
- data/test-unit/test/ui/test_testrunmediator.rb +0 -20
- data/test-unit/test/util/test_backtracefilter.rb +0 -41
- data/test-unit/test/util/test_observable.rb +0 -102
- data/test-unit/test/util/test_procwrapper.rb +0 -36
- data/test/test_pkg_config.rb +0 -123
- data/vendor/local/include/libpng14/png.h +0 -2701
- data/vendor/local/include/libpng14/pngconf.h +0 -1525
- data/vendor/local/include/png.h +0 -2701
- data/vendor/local/include/pngconf.h +0 -1525
- data/vendor/local/include/zconf.h +0 -461
- data/vendor/local/include/zlib.h +0 -1589
- data/vendor/local/lib/libpng.def +0 -192
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +0 -67
- data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
- data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
- data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
- data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
- data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
- data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
- data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
- data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
- data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
- data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
- data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
- data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
- data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
- data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
- data/vendor/local/share/man/man3/libpng.3 +0 -4455
- data/vendor/local/share/man/man3/libpngpf.3 +0 -808
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +0 -189
@@ -8,18 +8,8 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="index-1.4.html" title="Index of new symbols in 1.4">
|
10
10
|
<link rel="next" href="index-1.8.html" title="Index of new symbols in 1.8">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
13
|
</head>
|
24
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
@@ -32,40 +22,61 @@
|
|
32
22
|
<div class="index" title="Index of new symbols in 1.6">
|
33
23
|
<div class="titlepage"><div><div><h2 class="title">
|
34
24
|
<a name="index-1.6"></a>Index of new symbols in 1.6</h2></div></div></div>
|
35
|
-
<div class="index"
|
36
|
-
<
|
25
|
+
<div class="index">
|
26
|
+
<div class="indexdiv">
|
27
|
+
<h3>F</h3>
|
28
|
+
<dl><dt>cairo_format_stride_for_width, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-format-stride-for-width">cairo_format_stride_for_width ()</a>
|
29
|
+
</dt></dl>
|
30
|
+
</div>
|
31
|
+
<div class="indexdiv">
|
32
|
+
<h3>H</h3>
|
33
|
+
<dl><dt>cairo_has_current_point, <a class="indexterm" href="cairo-Paths.html#cairo-has-current-point">cairo_has_current_point ()</a>
|
34
|
+
</dt></dl>
|
35
|
+
</div>
|
36
|
+
<div class="indexdiv">
|
37
|
+
<h3>P</h3>
|
37
38
|
<dl>
|
38
|
-
<dt>
|
39
|
-
</dt>
|
40
|
-
<dt>cairo_has_current_point, <a class="indexterm" href="cairo-paths.html#cairo-has-current-point">cairo_has_current_point ()</a>
|
41
|
-
</dt>
|
42
|
-
<dt>cairo_path_extents, <a class="indexterm" href="cairo-paths.html#cairo-path-extents">cairo_path_extents ()</a>
|
39
|
+
<dt>cairo_path_extents, <a class="indexterm" href="cairo-Paths.html#cairo-path-extents">cairo_path_extents ()</a>
|
43
40
|
</dt>
|
44
|
-
<dt>cairo_ps_get_levels, <a class="indexterm" href="cairo-
|
41
|
+
<dt>cairo_ps_get_levels, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-get-levels">cairo_ps_get_levels ()</a>
|
45
42
|
</dt>
|
46
|
-
<dt>cairo_ps_level_to_string, <a class="indexterm" href="cairo-
|
43
|
+
<dt>cairo_ps_level_to_string, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-level-to-string">cairo_ps_level_to_string ()</a>
|
47
44
|
</dt>
|
48
|
-
<dt>cairo_ps_surface_get_eps, <a class="indexterm" href="cairo-
|
45
|
+
<dt>cairo_ps_surface_get_eps, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-get-eps">cairo_ps_surface_get_eps ()</a>
|
49
46
|
</dt>
|
50
|
-
<dt>cairo_ps_surface_restrict_to_level, <a class="indexterm" href="cairo-
|
47
|
+
<dt>cairo_ps_surface_restrict_to_level, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-restrict-to-level">cairo_ps_surface_restrict_to_level ()</a>
|
51
48
|
</dt>
|
52
|
-
<dt>cairo_ps_surface_set_eps, <a class="indexterm" href="cairo-
|
49
|
+
<dt>cairo_ps_surface_set_eps, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-set-eps">cairo_ps_surface_set_eps ()</a>
|
53
50
|
</dt>
|
54
|
-
|
55
|
-
</
|
56
|
-
<
|
51
|
+
</dl>
|
52
|
+
</div>
|
53
|
+
<div class="indexdiv">
|
54
|
+
<h3>Q</h3>
|
55
|
+
<dl>
|
56
|
+
<dt>cairo_quartz_font_face_create_for_atsu_font_id, <a class="indexterm" href="cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-atsu-font-id">cairo_quartz_font_face_create_for_atsu_font_id ()</a>
|
57
57
|
</dt>
|
58
|
-
<dt>
|
58
|
+
<dt>cairo_quartz_font_face_create_for_cgfont, <a class="indexterm" href="cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-cgfont">cairo_quartz_font_face_create_for_cgfont ()</a>
|
59
59
|
</dt>
|
60
|
-
|
60
|
+
</dl>
|
61
|
+
</div>
|
62
|
+
<div class="indexdiv">
|
63
|
+
<h3>S</h3>
|
64
|
+
<dl>
|
65
|
+
<dt>cairo_surface_copy_page, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-copy-page">cairo_surface_copy_page ()</a>
|
61
66
|
</dt>
|
62
|
-
<dt>
|
67
|
+
<dt>cairo_surface_show_page, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-show-page">cairo_surface_show_page ()</a>
|
63
68
|
</dt>
|
64
69
|
</dl>
|
65
|
-
</div
|
70
|
+
</div>
|
71
|
+
<div class="indexdiv">
|
72
|
+
<h3>W</h3>
|
73
|
+
<dl><dt>cairo_win32_printing_surface_create, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create">cairo_win32_printing_surface_create ()</a>
|
74
|
+
</dt></dl>
|
75
|
+
</div>
|
76
|
+
</div>
|
66
77
|
</div>
|
67
78
|
<div class="footer">
|
68
79
|
<hr>
|
69
|
-
Generated by GTK-Doc V1.
|
80
|
+
Generated by GTK-Doc V1.15</div>
|
70
81
|
</body>
|
71
|
-
</html>
|
82
|
+
</html>
|
@@ -7,19 +7,9 @@
|
|
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
9
|
<link rel="prev" href="index-1.6.html" title="Index of new symbols in 1.6">
|
10
|
-
<link rel="next" href="
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
10
|
+
<link rel="next" href="index-1.10.html" title="Index of new symbols in 1.10">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
13
|
</head>
|
24
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
@@ -27,32 +17,39 @@
|
|
27
17
|
<td> </td>
|
28
18
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
29
19
|
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
30
|
-
<td><a accesskey="n" href="
|
20
|
+
<td><a accesskey="n" href="index-1.10.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
31
21
|
</tr></table>
|
32
22
|
<div class="index" title="Index of new symbols in 1.8">
|
33
23
|
<div class="titlepage"><div><div><h2 class="title">
|
34
24
|
<a name="index-1.8"></a>Index of new symbols in 1.8</h2></div></div></div>
|
35
|
-
<div class="index"
|
36
|
-
<
|
25
|
+
<div class="index">
|
26
|
+
<div class="indexdiv">
|
27
|
+
<h3>G</h3>
|
37
28
|
<dl>
|
38
29
|
<dt>cairo_glyph_allocate, <a class="indexterm" href="cairo-text.html#cairo-glyph-allocate">cairo_glyph_allocate ()</a>
|
39
30
|
</dt>
|
40
31
|
<dt>cairo_glyph_free, <a class="indexterm" href="cairo-text.html#cairo-glyph-free">cairo_glyph_free ()</a>
|
41
32
|
</dt>
|
42
|
-
|
43
|
-
</
|
44
|
-
<
|
45
|
-
</
|
46
|
-
<
|
33
|
+
</dl>
|
34
|
+
</div>
|
35
|
+
<div class="indexdiv">
|
36
|
+
<h3>S</h3>
|
37
|
+
<dl>
|
38
|
+
<dt>cairo_scaled_font_get_scale_matrix, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-scale-matrix">cairo_scaled_font_get_scale_matrix ()</a>
|
47
39
|
</dt>
|
48
|
-
<dt>cairo_scaled_font_text_to_glyphs, <a class="indexterm" href="cairo-scaled-font.html#cairo-scaled-font-text-to-glyphs">cairo_scaled_font_text_to_glyphs ()</a>
|
40
|
+
<dt>cairo_scaled_font_text_to_glyphs, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-to-glyphs">cairo_scaled_font_text_to_glyphs ()</a>
|
49
41
|
</dt>
|
50
42
|
<dt>cairo_show_text_glyphs, <a class="indexterm" href="cairo-text.html#cairo-show-text-glyphs">cairo_show_text_glyphs ()</a>
|
51
43
|
</dt>
|
52
|
-
<dt>cairo_surface_get_fallback_resolution, <a class="indexterm" href="cairo-surface.html#cairo-surface-get-fallback-resolution">cairo_surface_get_fallback_resolution ()</a>
|
44
|
+
<dt>cairo_surface_get_fallback_resolution, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-fallback-resolution">cairo_surface_get_fallback_resolution ()</a>
|
53
45
|
</dt>
|
54
|
-
<dt>cairo_surface_has_show_text_glyphs, <a class="indexterm" href="cairo-surface.html#cairo-surface-has-show-text-glyphs">cairo_surface_has_show_text_glyphs ()</a>
|
46
|
+
<dt>cairo_surface_has_show_text_glyphs, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-has-show-text-glyphs">cairo_surface_has_show_text_glyphs ()</a>
|
55
47
|
</dt>
|
48
|
+
</dl>
|
49
|
+
</div>
|
50
|
+
<div class="indexdiv">
|
51
|
+
<h3>T</h3>
|
52
|
+
<dl>
|
56
53
|
<dt>cairo_text_cluster_allocate, <a class="indexterm" href="cairo-text.html#cairo-text-cluster-allocate">cairo_text_cluster_allocate ()</a>
|
57
54
|
</dt>
|
58
55
|
<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>
|
@@ -69,39 +66,43 @@
|
|
69
66
|
</dt>
|
70
67
|
<dt>cairo_toy_font_face_get_weight, <a class="indexterm" href="cairo-text.html#cairo-toy-font-face-get-weight">cairo_toy_font_face_get_weight ()</a>
|
71
68
|
</dt>
|
72
|
-
|
73
|
-
</
|
74
|
-
<
|
69
|
+
</dl>
|
70
|
+
</div>
|
71
|
+
<div class="indexdiv">
|
72
|
+
<h3>U</h3>
|
73
|
+
<dl>
|
74
|
+
<dt>cairo_user_font_face_create, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-create">cairo_user_font_face_create ()</a>
|
75
75
|
</dt>
|
76
|
-
<dt>
|
76
|
+
<dt>cairo_user_font_face_get_init_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-init-func">cairo_user_font_face_get_init_func ()</a>
|
77
77
|
</dt>
|
78
|
-
<dt>
|
78
|
+
<dt>cairo_user_font_face_get_render_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-render-glyph-func">cairo_user_font_face_get_render_glyph_func ()</a>
|
79
79
|
</dt>
|
80
|
-
<dt>
|
80
|
+
<dt>cairo_user_font_face_get_text_to_glyphs_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-text-to-glyphs-func">cairo_user_font_face_get_text_to_glyphs_func ()</a>
|
81
81
|
</dt>
|
82
|
-
<dt>
|
82
|
+
<dt>cairo_user_font_face_get_unicode_to_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-unicode-to-glyph-func">cairo_user_font_face_get_unicode_to_glyph_func ()</a>
|
83
83
|
</dt>
|
84
|
-
<dt>
|
84
|
+
<dt>cairo_user_font_face_set_init_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-init-func">cairo_user_font_face_set_init_func ()</a>
|
85
85
|
</dt>
|
86
|
-
<dt>
|
86
|
+
<dt>cairo_user_font_face_set_render_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-render-glyph-func">cairo_user_font_face_set_render_glyph_func ()</a>
|
87
87
|
</dt>
|
88
|
-
<dt>
|
88
|
+
<dt>cairo_user_font_face_set_text_to_glyphs_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-text-to-glyphs-func">cairo_user_font_face_set_text_to_glyphs_func ()</a>
|
89
89
|
</dt>
|
90
|
-
<dt>
|
90
|
+
<dt>cairo_user_font_face_set_unicode_to_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-unicode-to-glyph-func">cairo_user_font_face_set_unicode_to_glyph_func ()</a>
|
91
91
|
</dt>
|
92
|
-
<dt>
|
92
|
+
<dt>cairo_user_scaled_font_init_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-init-func-t">cairo_user_scaled_font_init_func_t ()</a>
|
93
93
|
</dt>
|
94
|
-
<dt>
|
94
|
+
<dt>cairo_user_scaled_font_render_glyph_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-render-glyph-func-t">cairo_user_scaled_font_render_glyph_func_t ()</a>
|
95
95
|
</dt>
|
96
|
-
<dt>
|
96
|
+
<dt>cairo_user_scaled_font_text_to_glyphs_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-text-to-glyphs-func-t">cairo_user_scaled_font_text_to_glyphs_func_t ()</a>
|
97
97
|
</dt>
|
98
|
-
<dt>
|
98
|
+
<dt>cairo_user_scaled_font_unicode_to_glyph_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-unicode-to-glyph-func-t">cairo_user_scaled_font_unicode_to_glyph_func_t ()</a>
|
99
99
|
</dt>
|
100
100
|
</dl>
|
101
|
-
</div
|
101
|
+
</div>
|
102
|
+
</div>
|
102
103
|
</div>
|
103
104
|
<div class="footer">
|
104
105
|
<hr>
|
105
|
-
Generated by GTK-Doc V1.
|
106
|
+
Generated by GTK-Doc V1.15</div>
|
106
107
|
</body>
|
107
|
-
</html>
|
108
|
+
</html>
|
@@ -6,24 +6,14 @@
|
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
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-
|
9
|
+
<link rel="prev" href="cairo-Types.html" title="Types">
|
10
10
|
<link rel="next" href="index-1.2.html" title="Index of new symbols in 1.2">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
13
|
</head>
|
24
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
26
|
-
<td><a accesskey="p" href="cairo-
|
16
|
+
<td><a accesskey="p" href="cairo-Types.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
27
17
|
<td> </td>
|
28
18
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
29
19
|
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
@@ -32,144 +22,197 @@
|
|
32
22
|
<div class="index" title="Index">
|
33
23
|
<div class="titlepage"><div><div><h2 class="title">
|
34
24
|
<a name="index-all"></a>Index</h2></div></div></div>
|
35
|
-
<div class="index"
|
25
|
+
<div class="index">
|
26
|
+
<div class="indexdiv">
|
27
|
+
<h3>A</h3>
|
28
|
+
<dl>
|
29
|
+
<dt>cairo_antialias_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-antialias-t">enum cairo_antialias_t</a>
|
30
|
+
</dt>
|
31
|
+
<dt>cairo_append_path, <a class="indexterm" href="cairo-Paths.html#cairo-append-path">cairo_append_path ()</a>
|
32
|
+
</dt>
|
33
|
+
<dt>cairo_arc, <a class="indexterm" href="cairo-Paths.html#cairo-arc">cairo_arc ()</a>
|
34
|
+
</dt>
|
35
|
+
<dt>cairo_arc_negative, <a class="indexterm" href="cairo-Paths.html#cairo-arc-negative">cairo_arc_negative ()</a>
|
36
|
+
</dt>
|
37
|
+
</dl>
|
38
|
+
</div>
|
39
|
+
<div class="indexdiv">
|
40
|
+
<h3>B</h3>
|
41
|
+
<dl><dt>cairo_bool_t, <a class="indexterm" href="cairo-Types.html#cairo-bool-t">cairo_bool_t</a>
|
42
|
+
</dt></dl>
|
43
|
+
</div>
|
44
|
+
<div class="indexdiv">
|
36
45
|
<h3>C</h3>
|
37
46
|
<dl>
|
38
|
-
<dt>
|
47
|
+
<dt>cairo_clip, <a class="indexterm" href="cairo-cairo-t.html#cairo-clip">cairo_clip ()</a>
|
48
|
+
</dt>
|
49
|
+
<dt>cairo_clip_extents, <a class="indexterm" href="cairo-cairo-t.html#cairo-clip-extents">cairo_clip_extents ()</a>
|
50
|
+
</dt>
|
51
|
+
<dt>cairo_clip_preserve, <a class="indexterm" href="cairo-cairo-t.html#cairo-clip-preserve">cairo_clip_preserve ()</a>
|
52
|
+
</dt>
|
53
|
+
<dt>cairo_close_path, <a class="indexterm" href="cairo-Paths.html#cairo-close-path">cairo_close_path ()</a>
|
54
|
+
</dt>
|
55
|
+
<dt>cairo_content_t, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-content-t">enum cairo_content_t</a>
|
56
|
+
</dt>
|
57
|
+
<dt>cairo_copy_clip_rectangle_list, <a class="indexterm" href="cairo-cairo-t.html#cairo-copy-clip-rectangle-list">cairo_copy_clip_rectangle_list ()</a>
|
58
|
+
</dt>
|
59
|
+
<dt>cairo_copy_page, <a class="indexterm" href="cairo-cairo-t.html#cairo-copy-page">cairo_copy_page ()</a>
|
39
60
|
</dt>
|
40
|
-
<dt>
|
61
|
+
<dt>cairo_copy_path, <a class="indexterm" href="cairo-Paths.html#cairo-copy-path">cairo_copy_path ()</a>
|
41
62
|
</dt>
|
42
|
-
<dt>
|
63
|
+
<dt>cairo_copy_path_flat, <a class="indexterm" href="cairo-Paths.html#cairo-copy-path-flat">cairo_copy_path_flat ()</a>
|
43
64
|
</dt>
|
44
|
-
<dt>
|
65
|
+
<dt>cairo_create, <a class="indexterm" href="cairo-cairo-t.html#cairo-create">cairo_create ()</a>
|
45
66
|
</dt>
|
46
|
-
<dt>
|
67
|
+
<dt>cairo_curve_to, <a class="indexterm" href="cairo-Paths.html#cairo-curve-to">cairo_curve_to ()</a>
|
47
68
|
</dt>
|
48
|
-
|
69
|
+
</dl>
|
70
|
+
</div>
|
71
|
+
<div class="indexdiv">
|
72
|
+
<h3>D</h3>
|
73
|
+
<dl>
|
74
|
+
<dt>cairo_debug_reset_static_data, <a class="indexterm" href="cairo-Error-handling.html#cairo-debug-reset-static-data">cairo_debug_reset_static_data ()</a>
|
75
|
+
</dt>
|
76
|
+
<dt>cairo_destroy, <a class="indexterm" href="cairo-cairo-t.html#cairo-destroy">cairo_destroy ()</a>
|
49
77
|
</dt>
|
50
|
-
<dt>
|
78
|
+
<dt>cairo_destroy_func_t, <a class="indexterm" href="cairo-Types.html#cairo-destroy-func-t">cairo_destroy_func_t ()</a>
|
51
79
|
</dt>
|
52
|
-
<dt>
|
80
|
+
<dt>cairo_device_acquire, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-acquire">cairo_device_acquire ()</a>
|
53
81
|
</dt>
|
54
|
-
<dt>
|
82
|
+
<dt>cairo_device_destroy, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-destroy">cairo_device_destroy ()</a>
|
55
83
|
</dt>
|
56
|
-
<dt>
|
84
|
+
<dt>cairo_device_finish, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-finish">cairo_device_finish ()</a>
|
57
85
|
</dt>
|
58
|
-
<dt>
|
86
|
+
<dt>cairo_device_flush, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-flush">cairo_device_flush ()</a>
|
59
87
|
</dt>
|
60
|
-
<dt>
|
88
|
+
<dt>cairo_device_get_reference_count, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-get-reference-count">cairo_device_get_reference_count ()</a>
|
61
89
|
</dt>
|
62
|
-
<dt>
|
90
|
+
<dt>cairo_device_get_type, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-get-type">cairo_device_get_type ()</a>
|
63
91
|
</dt>
|
64
|
-
<dt>
|
92
|
+
<dt>cairo_device_get_user_data, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-get-user-data">cairo_device_get_user_data ()</a>
|
65
93
|
</dt>
|
66
|
-
<dt>
|
94
|
+
<dt>cairo_device_reference, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-reference">cairo_device_reference ()</a>
|
67
95
|
</dt>
|
68
|
-
<dt>
|
96
|
+
<dt>cairo_device_release, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-release">cairo_device_release ()</a>
|
69
97
|
</dt>
|
70
|
-
<dt>
|
98
|
+
<dt>cairo_device_set_user_data, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-set-user-data">cairo_device_set_user_data ()</a>
|
71
99
|
</dt>
|
72
|
-
<dt>
|
100
|
+
<dt>cairo_device_status, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-status">cairo_device_status ()</a>
|
73
101
|
</dt>
|
74
|
-
<dt>
|
102
|
+
<dt>cairo_device_t, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-t">cairo_device_t</a>
|
75
103
|
</dt>
|
76
|
-
<dt>cairo_device_to_user, <a class="indexterm" href="cairo-
|
104
|
+
<dt>cairo_device_to_user, <a class="indexterm" href="cairo-Transformations.html#cairo-device-to-user">cairo_device_to_user ()</a>
|
77
105
|
</dt>
|
78
|
-
<dt>cairo_device_to_user_distance, <a class="indexterm" href="cairo-
|
106
|
+
<dt>cairo_device_to_user_distance, <a class="indexterm" href="cairo-Transformations.html#cairo-device-to-user-distance">cairo_device_to_user_distance ()</a>
|
79
107
|
</dt>
|
80
|
-
<dt>
|
108
|
+
<dt>cairo_device_type_t, <a class="indexterm" href="cairo-cairo-device-t.html#cairo-device-type-t">enum cairo_device_type_t</a>
|
81
109
|
</dt>
|
82
|
-
|
110
|
+
</dl>
|
111
|
+
</div>
|
112
|
+
<div class="indexdiv">
|
113
|
+
<h3>E</h3>
|
114
|
+
<dl><dt>cairo_extend_t, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-extend-t">enum cairo_extend_t</a>
|
115
|
+
</dt></dl>
|
116
|
+
</div>
|
117
|
+
<div class="indexdiv">
|
118
|
+
<h3>F</h3>
|
119
|
+
<dl>
|
120
|
+
<dt>cairo_fill, <a class="indexterm" href="cairo-cairo-t.html#cairo-fill">cairo_fill ()</a>
|
83
121
|
</dt>
|
84
|
-
<dt>cairo_fill_extents, <a class="indexterm" href="cairo-
|
122
|
+
<dt>cairo_fill_extents, <a class="indexterm" href="cairo-cairo-t.html#cairo-fill-extents">cairo_fill_extents ()</a>
|
85
123
|
</dt>
|
86
|
-
<dt>cairo_fill_preserve, <a class="indexterm" href="cairo-
|
124
|
+
<dt>cairo_fill_preserve, <a class="indexterm" href="cairo-cairo-t.html#cairo-fill-preserve">cairo_fill_preserve ()</a>
|
87
125
|
</dt>
|
88
|
-
<dt>cairo_fill_rule_t, <a class="indexterm" href="cairo-
|
126
|
+
<dt>cairo_fill_rule_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-fill-rule-t">enum cairo_fill_rule_t</a>
|
89
127
|
</dt>
|
90
|
-
<dt>cairo_filter_t, <a class="indexterm" href="cairo-pattern.html#cairo-filter-t">enum cairo_filter_t</a>
|
128
|
+
<dt>cairo_filter_t, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-filter-t">enum cairo_filter_t</a>
|
91
129
|
</dt>
|
92
130
|
<dt>cairo_font_extents, <a class="indexterm" href="cairo-text.html#cairo-font-extents">cairo_font_extents ()</a>
|
93
131
|
</dt>
|
94
|
-
<dt>cairo_font_extents_t, <a class="indexterm" href="cairo-scaled-font.html#cairo-font-extents-t">cairo_font_extents_t</a>
|
132
|
+
<dt>cairo_font_extents_t, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-font-extents-t">cairo_font_extents_t</a>
|
95
133
|
</dt>
|
96
|
-
<dt>cairo_font_face_destroy, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-destroy">cairo_font_face_destroy ()</a>
|
134
|
+
<dt>cairo_font_face_destroy, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-destroy">cairo_font_face_destroy ()</a>
|
97
135
|
</dt>
|
98
|
-
<dt>cairo_font_face_get_reference_count, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-get-reference-count">cairo_font_face_get_reference_count ()</a>
|
136
|
+
<dt>cairo_font_face_get_reference_count, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-get-reference-count">cairo_font_face_get_reference_count ()</a>
|
99
137
|
</dt>
|
100
|
-
<dt>cairo_font_face_get_type, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-get-type">cairo_font_face_get_type ()</a>
|
138
|
+
<dt>cairo_font_face_get_type, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-get-type">cairo_font_face_get_type ()</a>
|
101
139
|
</dt>
|
102
|
-
<dt>cairo_font_face_get_user_data, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-get-user-data">cairo_font_face_get_user_data ()</a>
|
140
|
+
<dt>cairo_font_face_get_user_data, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-get-user-data">cairo_font_face_get_user_data ()</a>
|
103
141
|
</dt>
|
104
|
-
<dt>cairo_font_face_reference, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-reference">cairo_font_face_reference ()</a>
|
142
|
+
<dt>cairo_font_face_reference, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-reference">cairo_font_face_reference ()</a>
|
105
143
|
</dt>
|
106
|
-
<dt>cairo_font_face_set_user_data, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-set-user-data">cairo_font_face_set_user_data ()</a>
|
144
|
+
<dt>cairo_font_face_set_user_data, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-set-user-data">cairo_font_face_set_user_data ()</a>
|
107
145
|
</dt>
|
108
|
-
<dt>cairo_font_face_status, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-status">cairo_font_face_status ()</a>
|
146
|
+
<dt>cairo_font_face_status, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-status">cairo_font_face_status ()</a>
|
109
147
|
</dt>
|
110
|
-
<dt>cairo_font_face_t, <a class="indexterm" href="cairo-font-face.html#cairo-font-face-t">cairo_font_face_t</a>
|
148
|
+
<dt>cairo_font_face_t, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-face-t">cairo_font_face_t</a>
|
111
149
|
</dt>
|
112
|
-
<dt>cairo_font_options_copy, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-copy">cairo_font_options_copy ()</a>
|
150
|
+
<dt>cairo_font_options_copy, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-copy">cairo_font_options_copy ()</a>
|
113
151
|
</dt>
|
114
|
-
<dt>cairo_font_options_create, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-create">cairo_font_options_create ()</a>
|
152
|
+
<dt>cairo_font_options_create, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-create">cairo_font_options_create ()</a>
|
115
153
|
</dt>
|
116
|
-
<dt>cairo_font_options_destroy, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-destroy">cairo_font_options_destroy ()</a>
|
154
|
+
<dt>cairo_font_options_destroy, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-destroy">cairo_font_options_destroy ()</a>
|
117
155
|
</dt>
|
118
|
-
<dt>cairo_font_options_equal, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-equal">cairo_font_options_equal ()</a>
|
156
|
+
<dt>cairo_font_options_equal, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-equal">cairo_font_options_equal ()</a>
|
119
157
|
</dt>
|
120
|
-
<dt>cairo_font_options_get_antialias, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-get-antialias">cairo_font_options_get_antialias ()</a>
|
158
|
+
<dt>cairo_font_options_get_antialias, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-get-antialias">cairo_font_options_get_antialias ()</a>
|
121
159
|
</dt>
|
122
|
-
<dt>cairo_font_options_get_hint_metrics, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-get-hint-metrics">cairo_font_options_get_hint_metrics ()</a>
|
160
|
+
<dt>cairo_font_options_get_hint_metrics, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-get-hint-metrics">cairo_font_options_get_hint_metrics ()</a>
|
123
161
|
</dt>
|
124
|
-
<dt>cairo_font_options_get_hint_style, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-get-hint-style">cairo_font_options_get_hint_style ()</a>
|
162
|
+
<dt>cairo_font_options_get_hint_style, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-get-hint-style">cairo_font_options_get_hint_style ()</a>
|
125
163
|
</dt>
|
126
|
-
<dt>cairo_font_options_get_subpixel_order, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-get-subpixel-order">cairo_font_options_get_subpixel_order ()</a>
|
164
|
+
<dt>cairo_font_options_get_subpixel_order, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-get-subpixel-order">cairo_font_options_get_subpixel_order ()</a>
|
127
165
|
</dt>
|
128
|
-
<dt>cairo_font_options_hash, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-hash">cairo_font_options_hash ()</a>
|
166
|
+
<dt>cairo_font_options_hash, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-hash">cairo_font_options_hash ()</a>
|
129
167
|
</dt>
|
130
|
-
<dt>cairo_font_options_merge, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-merge">cairo_font_options_merge ()</a>
|
168
|
+
<dt>cairo_font_options_merge, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-merge">cairo_font_options_merge ()</a>
|
131
169
|
</dt>
|
132
|
-
<dt>cairo_font_options_set_antialias, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-set-antialias">cairo_font_options_set_antialias ()</a>
|
170
|
+
<dt>cairo_font_options_set_antialias, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-set-antialias">cairo_font_options_set_antialias ()</a>
|
133
171
|
</dt>
|
134
|
-
<dt>cairo_font_options_set_hint_metrics, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-set-hint-metrics">cairo_font_options_set_hint_metrics ()</a>
|
172
|
+
<dt>cairo_font_options_set_hint_metrics, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-set-hint-metrics">cairo_font_options_set_hint_metrics ()</a>
|
135
173
|
</dt>
|
136
|
-
<dt>cairo_font_options_set_hint_style, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-set-hint-style">cairo_font_options_set_hint_style ()</a>
|
174
|
+
<dt>cairo_font_options_set_hint_style, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-set-hint-style">cairo_font_options_set_hint_style ()</a>
|
137
175
|
</dt>
|
138
|
-
<dt>cairo_font_options_set_subpixel_order, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-set-subpixel-order">cairo_font_options_set_subpixel_order ()</a>
|
176
|
+
<dt>cairo_font_options_set_subpixel_order, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-set-subpixel-order">cairo_font_options_set_subpixel_order ()</a>
|
139
177
|
</dt>
|
140
|
-
<dt>cairo_font_options_status, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-status">cairo_font_options_status ()</a>
|
178
|
+
<dt>cairo_font_options_status, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-status">cairo_font_options_status ()</a>
|
141
179
|
</dt>
|
142
|
-
<dt>cairo_font_options_t, <a class="indexterm" href="cairo-font-options.html#cairo-font-options-t">cairo_font_options_t</a>
|
180
|
+
<dt>cairo_font_options_t, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-font-options-t">cairo_font_options_t</a>
|
143
181
|
</dt>
|
144
182
|
<dt>cairo_font_slant_t, <a class="indexterm" href="cairo-text.html#cairo-font-slant-t">enum cairo_font_slant_t</a>
|
145
183
|
</dt>
|
146
|
-
<dt>cairo_font_type_t, <a class="indexterm" href="cairo-font-face.html#cairo-font-type-t">enum cairo_font_type_t</a>
|
184
|
+
<dt>cairo_font_type_t, <a class="indexterm" href="cairo-cairo-font-face-t.html#cairo-font-type-t">enum cairo_font_type_t</a>
|
147
185
|
</dt>
|
148
186
|
<dt>cairo_font_weight_t, <a class="indexterm" href="cairo-text.html#cairo-font-weight-t">enum cairo_font_weight_t</a>
|
149
187
|
</dt>
|
150
|
-
<dt>cairo_format_stride_for_width, <a class="indexterm" href="cairo-
|
188
|
+
<dt>cairo_format_stride_for_width, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-format-stride-for-width">cairo_format_stride_for_width ()</a>
|
151
189
|
</dt>
|
152
|
-
<dt>cairo_format_t, <a class="indexterm" href="cairo-
|
190
|
+
<dt>cairo_format_t, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-format-t">enum cairo_format_t</a>
|
153
191
|
</dt>
|
154
|
-
<dt>cairo_ft_font_face_create_for_ft_face, <a class="indexterm" href="cairo-
|
192
|
+
<dt>cairo_ft_font_face_create_for_ft_face, <a class="indexterm" href="cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-ft-face">cairo_ft_font_face_create_for_ft_face ()</a>
|
155
193
|
</dt>
|
156
|
-
<dt>cairo_ft_font_face_create_for_pattern, <a class="indexterm" href="cairo-
|
194
|
+
<dt>cairo_ft_font_face_create_for_pattern, <a class="indexterm" href="cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-pattern">cairo_ft_font_face_create_for_pattern ()</a>
|
157
195
|
</dt>
|
158
|
-
<dt>cairo_ft_font_options_substitute, <a class="indexterm" href="cairo-
|
196
|
+
<dt>cairo_ft_font_options_substitute, <a class="indexterm" href="cairo-FreeType-Fonts.html#cairo-ft-font-options-substitute">cairo_ft_font_options_substitute ()</a>
|
159
197
|
</dt>
|
160
|
-
<dt>cairo_ft_scaled_font_lock_face, <a class="indexterm" href="cairo-
|
198
|
+
<dt>cairo_ft_scaled_font_lock_face, <a class="indexterm" href="cairo-FreeType-Fonts.html#cairo-ft-scaled-font-lock-face">cairo_ft_scaled_font_lock_face ()</a>
|
161
199
|
</dt>
|
162
|
-
<dt>cairo_ft_scaled_font_unlock_face, <a class="indexterm" href="cairo-
|
200
|
+
<dt>cairo_ft_scaled_font_unlock_face, <a class="indexterm" href="cairo-FreeType-Fonts.html#cairo-ft-scaled-font-unlock-face">cairo_ft_scaled_font_unlock_face ()</a>
|
163
201
|
</dt>
|
164
|
-
|
202
|
+
</dl>
|
203
|
+
</div>
|
204
|
+
<div class="indexdiv">
|
205
|
+
<h3>G</h3>
|
206
|
+
<dl>
|
207
|
+
<dt>cairo_get_antialias, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-antialias">cairo_get_antialias ()</a>
|
165
208
|
</dt>
|
166
|
-
<dt>cairo_get_current_point, <a class="indexterm" href="cairo-
|
209
|
+
<dt>cairo_get_current_point, <a class="indexterm" href="cairo-Paths.html#cairo-get-current-point">cairo_get_current_point ()</a>
|
167
210
|
</dt>
|
168
|
-
<dt>cairo_get_dash, <a class="indexterm" href="cairo-
|
211
|
+
<dt>cairo_get_dash, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-dash">cairo_get_dash ()</a>
|
169
212
|
</dt>
|
170
|
-
<dt>cairo_get_dash_count, <a class="indexterm" href="cairo-
|
213
|
+
<dt>cairo_get_dash_count, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-dash-count">cairo_get_dash_count ()</a>
|
171
214
|
</dt>
|
172
|
-
<dt>cairo_get_fill_rule, <a class="indexterm" href="cairo-
|
215
|
+
<dt>cairo_get_fill_rule, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-fill-rule">cairo_get_fill_rule ()</a>
|
173
216
|
</dt>
|
174
217
|
<dt>cairo_get_font_face, <a class="indexterm" href="cairo-text.html#cairo-get-font-face">cairo_get_font_face ()</a>
|
175
218
|
</dt>
|
@@ -177,31 +220,31 @@
|
|
177
220
|
</dt>
|
178
221
|
<dt>cairo_get_font_options, <a class="indexterm" href="cairo-text.html#cairo-get-font-options">cairo_get_font_options ()</a>
|
179
222
|
</dt>
|
180
|
-
<dt>cairo_get_group_target, <a class="indexterm" href="cairo-
|
223
|
+
<dt>cairo_get_group_target, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-group-target">cairo_get_group_target ()</a>
|
181
224
|
</dt>
|
182
|
-
<dt>cairo_get_line_cap, <a class="indexterm" href="cairo-
|
225
|
+
<dt>cairo_get_line_cap, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-line-cap">cairo_get_line_cap ()</a>
|
183
226
|
</dt>
|
184
|
-
<dt>cairo_get_line_join, <a class="indexterm" href="cairo-
|
227
|
+
<dt>cairo_get_line_join, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-line-join">cairo_get_line_join ()</a>
|
185
228
|
</dt>
|
186
|
-
<dt>cairo_get_line_width, <a class="indexterm" href="cairo-
|
229
|
+
<dt>cairo_get_line_width, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-line-width">cairo_get_line_width ()</a>
|
187
230
|
</dt>
|
188
|
-
<dt>cairo_get_matrix, <a class="indexterm" href="cairo-
|
231
|
+
<dt>cairo_get_matrix, <a class="indexterm" href="cairo-Transformations.html#cairo-get-matrix">cairo_get_matrix ()</a>
|
189
232
|
</dt>
|
190
|
-
<dt>cairo_get_miter_limit, <a class="indexterm" href="cairo-
|
233
|
+
<dt>cairo_get_miter_limit, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-miter-limit">cairo_get_miter_limit ()</a>
|
191
234
|
</dt>
|
192
|
-
<dt>cairo_get_operator, <a class="indexterm" href="cairo-
|
235
|
+
<dt>cairo_get_operator, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-operator">cairo_get_operator ()</a>
|
193
236
|
</dt>
|
194
|
-
<dt>cairo_get_reference_count, <a class="indexterm" href="cairo-
|
237
|
+
<dt>cairo_get_reference_count, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-reference-count">cairo_get_reference_count ()</a>
|
195
238
|
</dt>
|
196
239
|
<dt>cairo_get_scaled_font, <a class="indexterm" href="cairo-text.html#cairo-get-scaled-font">cairo_get_scaled_font ()</a>
|
197
240
|
</dt>
|
198
|
-
<dt>cairo_get_source, <a class="indexterm" href="cairo-
|
241
|
+
<dt>cairo_get_source, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-source">cairo_get_source ()</a>
|
199
242
|
</dt>
|
200
|
-
<dt>cairo_get_target, <a class="indexterm" href="cairo-
|
243
|
+
<dt>cairo_get_target, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-target">cairo_get_target ()</a>
|
201
244
|
</dt>
|
202
|
-
<dt>cairo_get_tolerance, <a class="indexterm" href="cairo-
|
245
|
+
<dt>cairo_get_tolerance, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-tolerance">cairo_get_tolerance ()</a>
|
203
246
|
</dt>
|
204
|
-
<dt>cairo_get_user_data, <a class="indexterm" href="cairo-
|
247
|
+
<dt>cairo_get_user_data, <a class="indexterm" href="cairo-cairo-t.html#cairo-get-user-data">cairo_get_user_data ()</a>
|
205
248
|
</dt>
|
206
249
|
<dt>cairo_glyph_allocate, <a class="indexterm" href="cairo-text.html#cairo-glyph-allocate">cairo_glyph_allocate ()</a>
|
207
250
|
</dt>
|
@@ -209,297 +252,417 @@
|
|
209
252
|
</dt>
|
210
253
|
<dt>cairo_glyph_free, <a class="indexterm" href="cairo-text.html#cairo-glyph-free">cairo_glyph_free ()</a>
|
211
254
|
</dt>
|
212
|
-
<dt>cairo_glyph_path, <a class="indexterm" href="cairo-
|
255
|
+
<dt>cairo_glyph_path, <a class="indexterm" href="cairo-Paths.html#cairo-glyph-path">cairo_glyph_path ()</a>
|
213
256
|
</dt>
|
214
257
|
<dt>cairo_glyph_t, <a class="indexterm" href="cairo-text.html#cairo-glyph-t">cairo_glyph_t</a>
|
215
258
|
</dt>
|
216
|
-
|
259
|
+
</dl>
|
260
|
+
</div>
|
261
|
+
<div class="indexdiv">
|
262
|
+
<h3>H</h3>
|
263
|
+
<dl>
|
264
|
+
<dt>cairo_has_current_point, <a class="indexterm" href="cairo-Paths.html#cairo-has-current-point">cairo_has_current_point ()</a>
|
217
265
|
</dt>
|
218
|
-
<dt>
|
266
|
+
<dt>CAIRO_HAS_FC_FONT, <a class="indexterm" href="cairo-FreeType-Fonts.html#CAIRO-HAS-FC-FONT:CAPS">CAIRO_HAS_FC_FONT</a>
|
219
267
|
</dt>
|
220
|
-
<dt>
|
268
|
+
<dt>CAIRO_HAS_FT_FONT, <a class="indexterm" href="cairo-FreeType-Fonts.html#CAIRO-HAS-FT-FONT:CAPS">CAIRO_HAS_FT_FONT</a>
|
221
269
|
</dt>
|
222
|
-
<dt>
|
270
|
+
<dt>CAIRO_HAS_IMAGE_SURFACE, <a class="indexterm" href="cairo-Image-Surfaces.html#CAIRO-HAS-IMAGE-SURFACE:CAPS">CAIRO_HAS_IMAGE_SURFACE</a>
|
223
271
|
</dt>
|
224
|
-
<dt>
|
272
|
+
<dt>CAIRO_HAS_PDF_SURFACE, <a class="indexterm" href="cairo-PDF-Surfaces.html#CAIRO-HAS-PDF-SURFACE:CAPS">CAIRO_HAS_PDF_SURFACE</a>
|
225
273
|
</dt>
|
226
|
-
<dt>
|
274
|
+
<dt>CAIRO_HAS_PNG_FUNCTIONS, <a class="indexterm" href="cairo-PNG-Support.html#CAIRO-HAS-PNG-FUNCTIONS:CAPS">CAIRO_HAS_PNG_FUNCTIONS</a>
|
227
275
|
</dt>
|
228
|
-
<dt>
|
276
|
+
<dt>CAIRO_HAS_PS_SURFACE, <a class="indexterm" href="cairo-PostScript-Surfaces.html#CAIRO-HAS-PS-SURFACE:CAPS">CAIRO_HAS_PS_SURFACE</a>
|
229
277
|
</dt>
|
230
|
-
<dt>
|
278
|
+
<dt>CAIRO_HAS_QUARTZ_FONT, <a class="indexterm" href="cairo-Quartz-(CGFont)-Fonts.html#CAIRO-HAS-QUARTZ-FONT:CAPS">CAIRO_HAS_QUARTZ_FONT</a>
|
231
279
|
</dt>
|
232
|
-
<dt>
|
280
|
+
<dt>CAIRO_HAS_QUARTZ_SURFACE, <a class="indexterm" href="cairo-Quartz-Surfaces.html#CAIRO-HAS-QUARTZ-SURFACE:CAPS">CAIRO_HAS_QUARTZ_SURFACE</a>
|
233
281
|
</dt>
|
234
|
-
<dt>
|
282
|
+
<dt>CAIRO_HAS_SVG_SURFACE, <a class="indexterm" href="cairo-SVG-Surfaces.html#CAIRO-HAS-SVG-SURFACE:CAPS">CAIRO_HAS_SVG_SURFACE</a>
|
235
283
|
</dt>
|
236
|
-
<dt>
|
284
|
+
<dt>CAIRO_HAS_USER_FONT, <a class="indexterm" href="cairo-User-Fonts.html#CAIRO-HAS-USER-FONT:CAPS">CAIRO_HAS_USER_FONT</a>
|
237
285
|
</dt>
|
238
|
-
<dt>
|
286
|
+
<dt>CAIRO_HAS_WIN32_FONT, <a class="indexterm" href="cairo-Win32-Fonts.html#CAIRO-HAS-WIN32-FONT:CAPS">CAIRO_HAS_WIN32_FONT</a>
|
239
287
|
</dt>
|
240
|
-
<dt>
|
288
|
+
<dt>CAIRO_HAS_WIN32_SURFACE, <a class="indexterm" href="cairo-Win32-Surfaces.html#CAIRO-HAS-WIN32-SURFACE:CAPS">CAIRO_HAS_WIN32_SURFACE</a>
|
241
289
|
</dt>
|
242
|
-
<dt>
|
290
|
+
<dt>CAIRO_HAS_XLIB_SURFACE, <a class="indexterm" href="cairo-XLib-Surfaces.html#CAIRO-HAS-XLIB-SURFACE:CAPS">CAIRO_HAS_XLIB_SURFACE</a>
|
243
291
|
</dt>
|
244
|
-
<dt>
|
292
|
+
<dt>cairo_hint_metrics_t, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-hint-metrics-t">enum cairo_hint_metrics_t</a>
|
245
293
|
</dt>
|
246
|
-
<dt>
|
294
|
+
<dt>cairo_hint_style_t, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-hint-style-t">enum cairo_hint_style_t</a>
|
247
295
|
</dt>
|
248
|
-
|
296
|
+
</dl>
|
297
|
+
</div>
|
298
|
+
<div class="indexdiv">
|
299
|
+
<h3>I</h3>
|
300
|
+
<dl>
|
301
|
+
<dt>cairo_identity_matrix, <a class="indexterm" href="cairo-Transformations.html#cairo-identity-matrix">cairo_identity_matrix ()</a>
|
249
302
|
</dt>
|
250
|
-
<dt>
|
303
|
+
<dt>cairo_image_surface_create, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-create">cairo_image_surface_create ()</a>
|
251
304
|
</dt>
|
252
|
-
<dt>
|
305
|
+
<dt>cairo_image_surface_create_for_data, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-create-for-data">cairo_image_surface_create_for_data ()</a>
|
253
306
|
</dt>
|
254
|
-
<dt>
|
307
|
+
<dt>cairo_image_surface_create_from_png, <a class="indexterm" href="cairo-PNG-Support.html#cairo-image-surface-create-from-png">cairo_image_surface_create_from_png ()</a>
|
255
308
|
</dt>
|
256
|
-
<dt>
|
309
|
+
<dt>cairo_image_surface_create_from_png_stream, <a class="indexterm" href="cairo-PNG-Support.html#cairo-image-surface-create-from-png-stream">cairo_image_surface_create_from_png_stream ()</a>
|
257
310
|
</dt>
|
258
|
-
<dt>
|
311
|
+
<dt>cairo_image_surface_get_data, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-get-data">cairo_image_surface_get_data ()</a>
|
259
312
|
</dt>
|
260
|
-
<dt>
|
313
|
+
<dt>cairo_image_surface_get_format, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-get-format">cairo_image_surface_get_format ()</a>
|
261
314
|
</dt>
|
262
|
-
<dt>
|
315
|
+
<dt>cairo_image_surface_get_height, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-get-height">cairo_image_surface_get_height ()</a>
|
263
316
|
</dt>
|
264
|
-
<dt>
|
317
|
+
<dt>cairo_image_surface_get_stride, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-get-stride">cairo_image_surface_get_stride ()</a>
|
265
318
|
</dt>
|
266
|
-
<dt>
|
319
|
+
<dt>cairo_image_surface_get_width, <a class="indexterm" href="cairo-Image-Surfaces.html#cairo-image-surface-get-width">cairo_image_surface_get_width ()</a>
|
267
320
|
</dt>
|
268
|
-
<dt>
|
321
|
+
<dt>cairo_in_clip, <a class="indexterm" href="cairo-cairo-t.html#cairo-in-clip">cairo_in_clip ()</a>
|
269
322
|
</dt>
|
270
|
-
<dt>
|
323
|
+
<dt>cairo_in_fill, <a class="indexterm" href="cairo-cairo-t.html#cairo-in-fill">cairo_in_fill ()</a>
|
271
324
|
</dt>
|
272
|
-
<dt>
|
325
|
+
<dt>cairo_in_stroke, <a class="indexterm" href="cairo-cairo-t.html#cairo-in-stroke">cairo_in_stroke ()</a>
|
273
326
|
</dt>
|
274
|
-
|
327
|
+
</dl>
|
328
|
+
</div>
|
329
|
+
<div class="indexdiv">
|
330
|
+
<h3>L</h3>
|
331
|
+
<dl>
|
332
|
+
<dt>cairo_line_cap_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-line-cap-t">enum cairo_line_cap_t</a>
|
275
333
|
</dt>
|
276
|
-
<dt>
|
334
|
+
<dt>cairo_line_join_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-line-join-t">enum cairo_line_join_t</a>
|
277
335
|
</dt>
|
278
|
-
<dt>
|
336
|
+
<dt>cairo_line_to, <a class="indexterm" href="cairo-Paths.html#cairo-line-to">cairo_line_to ()</a>
|
279
337
|
</dt>
|
280
|
-
|
338
|
+
</dl>
|
339
|
+
</div>
|
340
|
+
<div class="indexdiv">
|
341
|
+
<h3>M</h3>
|
342
|
+
<dl>
|
343
|
+
<dt>cairo_mask, <a class="indexterm" href="cairo-cairo-t.html#cairo-mask">cairo_mask ()</a>
|
281
344
|
</dt>
|
282
|
-
<dt>
|
345
|
+
<dt>cairo_mask_surface, <a class="indexterm" href="cairo-cairo-t.html#cairo-mask-surface">cairo_mask_surface ()</a>
|
283
346
|
</dt>
|
284
|
-
<dt>
|
347
|
+
<dt>cairo_matrix_init, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-init">cairo_matrix_init ()</a>
|
285
348
|
</dt>
|
286
|
-
<dt>
|
349
|
+
<dt>cairo_matrix_init_identity, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-init-identity">cairo_matrix_init_identity ()</a>
|
287
350
|
</dt>
|
288
|
-
<dt>
|
351
|
+
<dt>cairo_matrix_init_rotate, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-init-rotate">cairo_matrix_init_rotate ()</a>
|
289
352
|
</dt>
|
290
|
-
<dt>
|
353
|
+
<dt>cairo_matrix_init_scale, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-init-scale">cairo_matrix_init_scale ()</a>
|
291
354
|
</dt>
|
292
|
-
<dt>
|
355
|
+
<dt>cairo_matrix_init_translate, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-init-translate">cairo_matrix_init_translate ()</a>
|
293
356
|
</dt>
|
294
|
-
<dt>
|
357
|
+
<dt>cairo_matrix_invert, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-invert">cairo_matrix_invert ()</a>
|
295
358
|
</dt>
|
296
|
-
<dt>
|
359
|
+
<dt>cairo_matrix_multiply, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-multiply">cairo_matrix_multiply ()</a>
|
297
360
|
</dt>
|
298
|
-
<dt>
|
361
|
+
<dt>cairo_matrix_rotate, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-rotate">cairo_matrix_rotate ()</a>
|
299
362
|
</dt>
|
300
|
-
<dt>
|
363
|
+
<dt>cairo_matrix_scale, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-scale">cairo_matrix_scale ()</a>
|
301
364
|
</dt>
|
302
|
-
<dt>
|
365
|
+
<dt>cairo_matrix_t, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-t">cairo_matrix_t</a>
|
303
366
|
</dt>
|
304
|
-
<dt>
|
367
|
+
<dt>cairo_matrix_transform_distance, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-transform-distance">cairo_matrix_transform_distance ()</a>
|
305
368
|
</dt>
|
306
|
-
<dt>
|
369
|
+
<dt>cairo_matrix_transform_point, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-transform-point">cairo_matrix_transform_point ()</a>
|
307
370
|
</dt>
|
308
|
-
<dt>
|
371
|
+
<dt>cairo_matrix_translate, <a class="indexterm" href="cairo-cairo-matrix-t.html#cairo-matrix-translate">cairo_matrix_translate ()</a>
|
309
372
|
</dt>
|
310
|
-
<dt>
|
373
|
+
<dt>CAIRO_MIME_TYPE_JP2, <a class="indexterm" href="cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JP2:CAPS">CAIRO_MIME_TYPE_JP2</a>
|
311
374
|
</dt>
|
312
|
-
<dt>
|
375
|
+
<dt>CAIRO_MIME_TYPE_JPEG, <a class="indexterm" href="cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JPEG:CAPS">CAIRO_MIME_TYPE_JPEG</a>
|
313
376
|
</dt>
|
314
|
-
<dt>
|
377
|
+
<dt>CAIRO_MIME_TYPE_PNG, <a class="indexterm" href="cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-PNG:CAPS">CAIRO_MIME_TYPE_PNG</a>
|
315
378
|
</dt>
|
316
|
-
<dt>
|
379
|
+
<dt>CAIRO_MIME_TYPE_URI, <a class="indexterm" href="cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-URI:CAPS">CAIRO_MIME_TYPE_URI</a>
|
317
380
|
</dt>
|
318
|
-
<dt>
|
381
|
+
<dt>cairo_move_to, <a class="indexterm" href="cairo-Paths.html#cairo-move-to">cairo_move_to ()</a>
|
319
382
|
</dt>
|
320
|
-
|
383
|
+
</dl>
|
384
|
+
</div>
|
385
|
+
<div class="indexdiv">
|
386
|
+
<h3>N</h3>
|
387
|
+
<dl>
|
388
|
+
<dt>cairo_new_path, <a class="indexterm" href="cairo-Paths.html#cairo-new-path">cairo_new_path ()</a>
|
321
389
|
</dt>
|
322
|
-
<dt>
|
390
|
+
<dt>cairo_new_sub_path, <a class="indexterm" href="cairo-Paths.html#cairo-new-sub-path">cairo_new_sub_path ()</a>
|
323
391
|
</dt>
|
324
|
-
|
392
|
+
</dl>
|
393
|
+
</div>
|
394
|
+
<div class="indexdiv">
|
395
|
+
<h3>O</h3>
|
396
|
+
<dl><dt>cairo_operator_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-operator-t">enum cairo_operator_t</a>
|
397
|
+
</dt></dl>
|
398
|
+
</div>
|
399
|
+
<div class="indexdiv">
|
400
|
+
<h3>P</h3>
|
401
|
+
<dl>
|
402
|
+
<dt>cairo_paint, <a class="indexterm" href="cairo-cairo-t.html#cairo-paint">cairo_paint ()</a>
|
403
|
+
</dt>
|
404
|
+
<dt>cairo_paint_with_alpha, <a class="indexterm" href="cairo-cairo-t.html#cairo-paint-with-alpha">cairo_paint_with_alpha ()</a>
|
405
|
+
</dt>
|
406
|
+
<dt>cairo_path_data_t, <a class="indexterm" href="cairo-Paths.html#cairo-path-data-t">union cairo_path_data_t</a>
|
325
407
|
</dt>
|
326
|
-
<dt>
|
408
|
+
<dt>cairo_path_data_type_t, <a class="indexterm" href="cairo-Paths.html#cairo-path-data-type-t">enum cairo_path_data_type_t</a>
|
327
409
|
</dt>
|
328
|
-
<dt>
|
410
|
+
<dt>cairo_path_destroy, <a class="indexterm" href="cairo-Paths.html#cairo-path-destroy">cairo_path_destroy ()</a>
|
329
411
|
</dt>
|
330
|
-
<dt>
|
412
|
+
<dt>cairo_path_extents, <a class="indexterm" href="cairo-Paths.html#cairo-path-extents">cairo_path_extents ()</a>
|
331
413
|
</dt>
|
332
|
-
<dt>
|
414
|
+
<dt>cairo_path_t, <a class="indexterm" href="cairo-Paths.html#cairo-path-t">cairo_path_t</a>
|
333
415
|
</dt>
|
334
|
-
<dt>
|
416
|
+
<dt>cairo_pattern_add_color_stop_rgb, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgb">cairo_pattern_add_color_stop_rgb ()</a>
|
335
417
|
</dt>
|
336
|
-
<dt>
|
418
|
+
<dt>cairo_pattern_add_color_stop_rgba, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgba">cairo_pattern_add_color_stop_rgba ()</a>
|
337
419
|
</dt>
|
338
|
-
<dt>
|
420
|
+
<dt>cairo_pattern_create_for_surface, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-create-for-surface">cairo_pattern_create_for_surface ()</a>
|
339
421
|
</dt>
|
340
|
-
<dt>
|
422
|
+
<dt>cairo_pattern_create_linear, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-create-linear">cairo_pattern_create_linear ()</a>
|
341
423
|
</dt>
|
342
|
-
<dt>
|
424
|
+
<dt>cairo_pattern_create_radial, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-create-radial">cairo_pattern_create_radial ()</a>
|
343
425
|
</dt>
|
344
|
-
<dt>
|
426
|
+
<dt>cairo_pattern_create_rgb, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-create-rgb">cairo_pattern_create_rgb ()</a>
|
345
427
|
</dt>
|
346
|
-
<dt>
|
428
|
+
<dt>cairo_pattern_create_rgba, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-create-rgba">cairo_pattern_create_rgba ()</a>
|
347
429
|
</dt>
|
348
|
-
<dt>
|
430
|
+
<dt>cairo_pattern_destroy, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy">cairo_pattern_destroy ()</a>
|
349
431
|
</dt>
|
350
|
-
<dt>
|
432
|
+
<dt>cairo_pattern_get_color_stop_count, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-count">cairo_pattern_get_color_stop_count ()</a>
|
351
433
|
</dt>
|
352
|
-
<dt>
|
434
|
+
<dt>cairo_pattern_get_color_stop_rgba, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-rgba">cairo_pattern_get_color_stop_rgba ()</a>
|
353
435
|
</dt>
|
354
|
-
<dt>
|
436
|
+
<dt>cairo_pattern_get_extend, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-extend">cairo_pattern_get_extend ()</a>
|
355
437
|
</dt>
|
356
|
-
<dt>
|
438
|
+
<dt>cairo_pattern_get_filter, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-filter">cairo_pattern_get_filter ()</a>
|
357
439
|
</dt>
|
358
|
-
<dt>
|
440
|
+
<dt>cairo_pattern_get_linear_points, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-linear-points">cairo_pattern_get_linear_points ()</a>
|
359
441
|
</dt>
|
360
|
-
<dt>
|
442
|
+
<dt>cairo_pattern_get_matrix, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-matrix">cairo_pattern_get_matrix ()</a>
|
361
443
|
</dt>
|
362
|
-
<dt>
|
444
|
+
<dt>cairo_pattern_get_radial_circles, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-radial-circles">cairo_pattern_get_radial_circles ()</a>
|
363
445
|
</dt>
|
364
|
-
<dt>
|
446
|
+
<dt>cairo_pattern_get_reference_count, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-reference-count">cairo_pattern_get_reference_count ()</a>
|
365
447
|
</dt>
|
366
|
-
<dt>
|
448
|
+
<dt>cairo_pattern_get_rgba, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-rgba">cairo_pattern_get_rgba ()</a>
|
367
449
|
</dt>
|
368
|
-
<dt>
|
450
|
+
<dt>cairo_pattern_get_surface, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-surface">cairo_pattern_get_surface ()</a>
|
369
451
|
</dt>
|
370
|
-
<dt>
|
452
|
+
<dt>cairo_pattern_get_type, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-type">cairo_pattern_get_type ()</a>
|
371
453
|
</dt>
|
372
|
-
<dt>
|
454
|
+
<dt>cairo_pattern_get_user_data, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-get-user-data">cairo_pattern_get_user_data ()</a>
|
373
455
|
</dt>
|
374
|
-
<dt>
|
456
|
+
<dt>cairo_pattern_reference, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-reference">cairo_pattern_reference ()</a>
|
375
457
|
</dt>
|
376
|
-
<dt>
|
458
|
+
<dt>cairo_pattern_set_extend, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-set-extend">cairo_pattern_set_extend ()</a>
|
377
459
|
</dt>
|
378
|
-
<dt>
|
460
|
+
<dt>cairo_pattern_set_filter, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-set-filter">cairo_pattern_set_filter ()</a>
|
379
461
|
</dt>
|
380
|
-
<dt>
|
462
|
+
<dt>cairo_pattern_set_matrix, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-set-matrix">cairo_pattern_set_matrix ()</a>
|
381
463
|
</dt>
|
382
|
-
<dt>
|
464
|
+
<dt>cairo_pattern_set_user_data, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-set-user-data">cairo_pattern_set_user_data ()</a>
|
383
465
|
</dt>
|
384
|
-
<dt>
|
466
|
+
<dt>cairo_pattern_status, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-status">cairo_pattern_status ()</a>
|
385
467
|
</dt>
|
386
|
-
<dt>
|
468
|
+
<dt>cairo_pattern_t, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-t">cairo_pattern_t</a>
|
387
469
|
</dt>
|
388
|
-
<dt>
|
470
|
+
<dt>cairo_pattern_type_t, <a class="indexterm" href="cairo-cairo-pattern-t.html#cairo-pattern-type-t">enum cairo_pattern_type_t</a>
|
389
471
|
</dt>
|
390
|
-
<dt>
|
472
|
+
<dt>cairo_pdf_get_versions, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-get-versions">cairo_pdf_get_versions ()</a>
|
391
473
|
</dt>
|
392
|
-
<dt>
|
474
|
+
<dt>cairo_pdf_surface_create, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-create">cairo_pdf_surface_create ()</a>
|
393
475
|
</dt>
|
394
|
-
<dt>
|
476
|
+
<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>
|
395
477
|
</dt>
|
396
|
-
<dt>
|
478
|
+
<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>
|
397
479
|
</dt>
|
398
|
-
<dt>
|
480
|
+
<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>
|
399
481
|
</dt>
|
400
|
-
<dt>
|
482
|
+
<dt>cairo_pdf_version_t, <a class="indexterm" href="cairo-PDF-Surfaces.html#cairo-pdf-version-t">enum cairo_pdf_version_t</a>
|
401
483
|
</dt>
|
402
|
-
<dt>
|
484
|
+
<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>
|
403
485
|
</dt>
|
404
|
-
<dt>
|
486
|
+
<dt>cairo_pop_group, <a class="indexterm" href="cairo-cairo-t.html#cairo-pop-group">cairo_pop_group ()</a>
|
405
487
|
</dt>
|
406
|
-
<dt>
|
488
|
+
<dt>cairo_pop_group_to_source, <a class="indexterm" href="cairo-cairo-t.html#cairo-pop-group-to-source">cairo_pop_group_to_source ()</a>
|
407
489
|
</dt>
|
408
|
-
<dt>
|
490
|
+
<dt>cairo_ps_get_levels, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-get-levels">cairo_ps_get_levels ()</a>
|
409
491
|
</dt>
|
410
|
-
<dt>
|
492
|
+
<dt>cairo_ps_level_t, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-level-t">enum cairo_ps_level_t</a>
|
411
493
|
</dt>
|
412
|
-
<dt>
|
494
|
+
<dt>cairo_ps_level_to_string, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-level-to-string">cairo_ps_level_to_string ()</a>
|
413
495
|
</dt>
|
414
|
-
<dt>
|
496
|
+
<dt>cairo_ps_surface_create, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-create">cairo_ps_surface_create ()</a>
|
415
497
|
</dt>
|
416
|
-
<dt>
|
498
|
+
<dt>cairo_ps_surface_create_for_stream, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-create-for-stream">cairo_ps_surface_create_for_stream ()</a>
|
417
499
|
</dt>
|
418
|
-
<dt>
|
500
|
+
<dt>cairo_ps_surface_dsc_begin_page_setup, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-page-setup">cairo_ps_surface_dsc_begin_page_setup ()</a>
|
419
501
|
</dt>
|
420
|
-
<dt>
|
502
|
+
<dt>cairo_ps_surface_dsc_begin_setup, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-setup">cairo_ps_surface_dsc_begin_setup ()</a>
|
421
503
|
</dt>
|
422
|
-
<dt>
|
504
|
+
<dt>cairo_ps_surface_dsc_comment, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-comment">cairo_ps_surface_dsc_comment ()</a>
|
423
505
|
</dt>
|
424
|
-
<dt>
|
506
|
+
<dt>cairo_ps_surface_get_eps, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-get-eps">cairo_ps_surface_get_eps ()</a>
|
425
507
|
</dt>
|
426
|
-
<dt>
|
508
|
+
<dt>cairo_ps_surface_restrict_to_level, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-restrict-to-level">cairo_ps_surface_restrict_to_level ()</a>
|
427
509
|
</dt>
|
428
|
-
<dt>
|
510
|
+
<dt>cairo_ps_surface_set_eps, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-set-eps">cairo_ps_surface_set_eps ()</a>
|
429
511
|
</dt>
|
430
|
-
<dt>
|
512
|
+
<dt>cairo_ps_surface_set_size, <a class="indexterm" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-set-size">cairo_ps_surface_set_size ()</a>
|
431
513
|
</dt>
|
432
|
-
<dt>
|
514
|
+
<dt>cairo_push_group, <a class="indexterm" href="cairo-cairo-t.html#cairo-push-group">cairo_push_group ()</a>
|
433
515
|
</dt>
|
434
|
-
<dt>
|
516
|
+
<dt>cairo_push_group_with_content, <a class="indexterm" href="cairo-cairo-t.html#cairo-push-group-with-content">cairo_push_group_with_content ()</a>
|
435
517
|
</dt>
|
436
|
-
|
518
|
+
</dl>
|
519
|
+
</div>
|
520
|
+
<div class="indexdiv">
|
521
|
+
<h3>Q</h3>
|
522
|
+
<dl>
|
523
|
+
<dt>cairo_quartz_font_face_create_for_atsu_font_id, <a class="indexterm" href="cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-atsu-font-id">cairo_quartz_font_face_create_for_atsu_font_id ()</a>
|
437
524
|
</dt>
|
438
|
-
<dt>
|
525
|
+
<dt>cairo_quartz_font_face_create_for_cgfont, <a class="indexterm" href="cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-cgfont">cairo_quartz_font_face_create_for_cgfont ()</a>
|
439
526
|
</dt>
|
440
|
-
<dt>
|
527
|
+
<dt>cairo_quartz_surface_create, <a class="indexterm" href="cairo-Quartz-Surfaces.html#cairo-quartz-surface-create">cairo_quartz_surface_create ()</a>
|
528
|
+
</dt>
|
529
|
+
<dt>cairo_quartz_surface_create_for_cg_context, <a class="indexterm" href="cairo-Quartz-Surfaces.html#cairo-quartz-surface-create-for-cg-context">cairo_quartz_surface_create_for_cg_context ()</a>
|
530
|
+
</dt>
|
531
|
+
<dt>cairo_quartz_surface_get_cg_context, <a class="indexterm" href="cairo-Quartz-Surfaces.html#cairo-quartz-surface-get-cg-context">cairo_quartz_surface_get_cg_context ()</a>
|
532
|
+
</dt>
|
533
|
+
</dl>
|
534
|
+
</div>
|
535
|
+
<div class="indexdiv">
|
536
|
+
<h3>R</h3>
|
537
|
+
<dl>
|
538
|
+
<dt>cairo_read_func_t, <a class="indexterm" href="cairo-PNG-Support.html#cairo-read-func-t">cairo_read_func_t ()</a>
|
441
539
|
</dt>
|
442
|
-
<dt>
|
540
|
+
<dt>cairo_rectangle, <a class="indexterm" href="cairo-Paths.html#cairo-rectangle">cairo_rectangle ()</a>
|
443
541
|
</dt>
|
444
|
-
<dt>
|
542
|
+
<dt>cairo_rectangle_int_t, <a class="indexterm" href="cairo-Types.html#cairo-rectangle-int-t">cairo_rectangle_int_t</a>
|
445
543
|
</dt>
|
446
|
-
<dt>
|
544
|
+
<dt>cairo_rectangle_list_destroy, <a class="indexterm" href="cairo-cairo-t.html#cairo-rectangle-list-destroy">cairo_rectangle_list_destroy ()</a>
|
447
545
|
</dt>
|
448
|
-
<dt>
|
546
|
+
<dt>cairo_rectangle_list_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-rectangle-list-t">cairo_rectangle_list_t</a>
|
449
547
|
</dt>
|
450
|
-
<dt>
|
548
|
+
<dt>cairo_rectangle_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-rectangle-t">cairo_rectangle_t</a>
|
451
549
|
</dt>
|
452
|
-
<dt>
|
550
|
+
<dt>cairo_reference, <a class="indexterm" href="cairo-cairo-t.html#cairo-reference">cairo_reference ()</a>
|
453
551
|
</dt>
|
454
|
-
<dt>
|
552
|
+
<dt>cairo_region_contains_point, <a class="indexterm" href="cairo-Regions.html#cairo-region-contains-point">cairo_region_contains_point ()</a>
|
455
553
|
</dt>
|
456
|
-
<dt>
|
554
|
+
<dt>cairo_region_contains_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-contains-rectangle">cairo_region_contains_rectangle ()</a>
|
457
555
|
</dt>
|
458
|
-
<dt>
|
556
|
+
<dt>cairo_region_copy, <a class="indexterm" href="cairo-Regions.html#cairo-region-copy">cairo_region_copy ()</a>
|
459
557
|
</dt>
|
460
|
-
<dt>
|
558
|
+
<dt>cairo_region_create, <a class="indexterm" href="cairo-Regions.html#cairo-region-create">cairo_region_create ()</a>
|
461
559
|
</dt>
|
462
|
-
<dt>
|
560
|
+
<dt>cairo_region_create_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-create-rectangle">cairo_region_create_rectangle ()</a>
|
463
561
|
</dt>
|
464
|
-
<dt>
|
562
|
+
<dt>cairo_region_create_rectangles, <a class="indexterm" href="cairo-Regions.html#cairo-region-create-rectangles">cairo_region_create_rectangles ()</a>
|
465
563
|
</dt>
|
466
|
-
<dt>
|
564
|
+
<dt>cairo_region_destroy, <a class="indexterm" href="cairo-Regions.html#cairo-region-destroy">cairo_region_destroy ()</a>
|
467
565
|
</dt>
|
468
|
-
<dt>
|
566
|
+
<dt>cairo_region_equal, <a class="indexterm" href="cairo-Regions.html#cairo-region-equal">cairo_region_equal ()</a>
|
469
567
|
</dt>
|
470
|
-
<dt>
|
568
|
+
<dt>cairo_region_get_extents, <a class="indexterm" href="cairo-Regions.html#cairo-region-get-extents">cairo_region_get_extents ()</a>
|
471
569
|
</dt>
|
472
|
-
<dt>
|
570
|
+
<dt>cairo_region_get_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-get-rectangle">cairo_region_get_rectangle ()</a>
|
473
571
|
</dt>
|
474
|
-
<dt>
|
572
|
+
<dt>cairo_region_intersect, <a class="indexterm" href="cairo-Regions.html#cairo-region-intersect">cairo_region_intersect ()</a>
|
475
573
|
</dt>
|
476
|
-
<dt>
|
574
|
+
<dt>cairo_region_intersect_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-intersect-rectangle">cairo_region_intersect_rectangle ()</a>
|
477
575
|
</dt>
|
478
|
-
<dt>
|
576
|
+
<dt>cairo_region_is_empty, <a class="indexterm" href="cairo-Regions.html#cairo-region-is-empty">cairo_region_is_empty ()</a>
|
479
577
|
</dt>
|
480
|
-
<dt>
|
578
|
+
<dt>cairo_region_num_rectangles, <a class="indexterm" href="cairo-Regions.html#cairo-region-num-rectangles">cairo_region_num_rectangles ()</a>
|
481
579
|
</dt>
|
482
|
-
<dt>
|
580
|
+
<dt>cairo_region_overlap_t, <a class="indexterm" href="cairo-Regions.html#cairo-region-overlap-t">enum cairo_region_overlap_t</a>
|
483
581
|
</dt>
|
484
|
-
<dt>
|
582
|
+
<dt>cairo_region_reference, <a class="indexterm" href="cairo-Regions.html#cairo-region-reference">cairo_region_reference ()</a>
|
485
583
|
</dt>
|
486
|
-
<dt>
|
584
|
+
<dt>cairo_region_status, <a class="indexterm" href="cairo-Regions.html#cairo-region-status">cairo_region_status ()</a>
|
487
585
|
</dt>
|
488
|
-
<dt>
|
586
|
+
<dt>cairo_region_subtract, <a class="indexterm" href="cairo-Regions.html#cairo-region-subtract">cairo_region_subtract ()</a>
|
489
587
|
</dt>
|
490
|
-
<dt>
|
588
|
+
<dt>cairo_region_subtract_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-subtract-rectangle">cairo_region_subtract_rectangle ()</a>
|
491
589
|
</dt>
|
492
|
-
<dt>
|
590
|
+
<dt>cairo_region_t, <a class="indexterm" href="cairo-Regions.html#cairo-region-t">cairo_region_t</a>
|
493
591
|
</dt>
|
494
|
-
<dt>
|
592
|
+
<dt>cairo_region_translate, <a class="indexterm" href="cairo-Regions.html#cairo-region-translate">cairo_region_translate ()</a>
|
593
|
+
</dt>
|
594
|
+
<dt>cairo_region_union, <a class="indexterm" href="cairo-Regions.html#cairo-region-union">cairo_region_union ()</a>
|
595
|
+
</dt>
|
596
|
+
<dt>cairo_region_union_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-union-rectangle">cairo_region_union_rectangle ()</a>
|
597
|
+
</dt>
|
598
|
+
<dt>cairo_region_xor, <a class="indexterm" href="cairo-Regions.html#cairo-region-xor">cairo_region_xor ()</a>
|
599
|
+
</dt>
|
600
|
+
<dt>cairo_region_xor_rectangle, <a class="indexterm" href="cairo-Regions.html#cairo-region-xor-rectangle">cairo_region_xor_rectangle ()</a>
|
601
|
+
</dt>
|
602
|
+
<dt>cairo_rel_curve_to, <a class="indexterm" href="cairo-Paths.html#cairo-rel-curve-to">cairo_rel_curve_to ()</a>
|
603
|
+
</dt>
|
604
|
+
<dt>cairo_rel_line_to, <a class="indexterm" href="cairo-Paths.html#cairo-rel-line-to">cairo_rel_line_to ()</a>
|
605
|
+
</dt>
|
606
|
+
<dt>cairo_rel_move_to, <a class="indexterm" href="cairo-Paths.html#cairo-rel-move-to">cairo_rel_move_to ()</a>
|
607
|
+
</dt>
|
608
|
+
<dt>cairo_reset_clip, <a class="indexterm" href="cairo-cairo-t.html#cairo-reset-clip">cairo_reset_clip ()</a>
|
609
|
+
</dt>
|
610
|
+
<dt>cairo_restore, <a class="indexterm" href="cairo-cairo-t.html#cairo-restore">cairo_restore ()</a>
|
611
|
+
</dt>
|
612
|
+
<dt>cairo_rotate, <a class="indexterm" href="cairo-Transformations.html#cairo-rotate">cairo_rotate ()</a>
|
613
|
+
</dt>
|
614
|
+
</dl>
|
615
|
+
</div>
|
616
|
+
<div class="indexdiv">
|
617
|
+
<h3>S</h3>
|
618
|
+
<dl>
|
619
|
+
<dt>cairo_save, <a class="indexterm" href="cairo-cairo-t.html#cairo-save">cairo_save ()</a>
|
620
|
+
</dt>
|
621
|
+
<dt>cairo_scale, <a class="indexterm" href="cairo-Transformations.html#cairo-scale">cairo_scale ()</a>
|
622
|
+
</dt>
|
623
|
+
<dt>cairo_scaled_font_create, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create">cairo_scaled_font_create ()</a>
|
624
|
+
</dt>
|
625
|
+
<dt>cairo_scaled_font_destroy, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-destroy">cairo_scaled_font_destroy ()</a>
|
626
|
+
</dt>
|
627
|
+
<dt>cairo_scaled_font_extents, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-extents">cairo_scaled_font_extents ()</a>
|
628
|
+
</dt>
|
629
|
+
<dt>cairo_scaled_font_get_ctm, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-ctm">cairo_scaled_font_get_ctm ()</a>
|
630
|
+
</dt>
|
631
|
+
<dt>cairo_scaled_font_get_font_face, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-face">cairo_scaled_font_get_font_face ()</a>
|
632
|
+
</dt>
|
633
|
+
<dt>cairo_scaled_font_get_font_matrix, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-matrix">cairo_scaled_font_get_font_matrix ()</a>
|
634
|
+
</dt>
|
635
|
+
<dt>cairo_scaled_font_get_font_options, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-options">cairo_scaled_font_get_font_options ()</a>
|
636
|
+
</dt>
|
637
|
+
<dt>cairo_scaled_font_get_reference_count, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-reference-count">cairo_scaled_font_get_reference_count ()</a>
|
638
|
+
</dt>
|
639
|
+
<dt>cairo_scaled_font_get_scale_matrix, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-scale-matrix">cairo_scaled_font_get_scale_matrix ()</a>
|
640
|
+
</dt>
|
641
|
+
<dt>cairo_scaled_font_get_type, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-type">cairo_scaled_font_get_type ()</a>
|
642
|
+
</dt>
|
643
|
+
<dt>cairo_scaled_font_get_user_data, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-user-data">cairo_scaled_font_get_user_data ()</a>
|
644
|
+
</dt>
|
645
|
+
<dt>cairo_scaled_font_glyph_extents, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-glyph-extents">cairo_scaled_font_glyph_extents ()</a>
|
646
|
+
</dt>
|
647
|
+
<dt>cairo_scaled_font_reference, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-reference">cairo_scaled_font_reference ()</a>
|
648
|
+
</dt>
|
649
|
+
<dt>cairo_scaled_font_set_user_data, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-set-user-data">cairo_scaled_font_set_user_data ()</a>
|
650
|
+
</dt>
|
651
|
+
<dt>cairo_scaled_font_status, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-status">cairo_scaled_font_status ()</a>
|
652
|
+
</dt>
|
653
|
+
<dt>cairo_scaled_font_t, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t">cairo_scaled_font_t</a>
|
654
|
+
</dt>
|
655
|
+
<dt>cairo_scaled_font_text_extents, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-extents">cairo_scaled_font_text_extents ()</a>
|
656
|
+
</dt>
|
657
|
+
<dt>cairo_scaled_font_text_to_glyphs, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-to-glyphs">cairo_scaled_font_text_to_glyphs ()</a>
|
495
658
|
</dt>
|
496
659
|
<dt>cairo_select_font_face, <a class="indexterm" href="cairo-text.html#cairo-select-font-face">cairo_select_font_face ()</a>
|
497
660
|
</dt>
|
498
|
-
<dt>cairo_set_antialias, <a class="indexterm" href="cairo-
|
661
|
+
<dt>cairo_set_antialias, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-antialias">cairo_set_antialias ()</a>
|
499
662
|
</dt>
|
500
|
-
<dt>cairo_set_dash, <a class="indexterm" href="cairo-
|
663
|
+
<dt>cairo_set_dash, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-dash">cairo_set_dash ()</a>
|
501
664
|
</dt>
|
502
|
-
<dt>cairo_set_fill_rule, <a class="indexterm" href="cairo-
|
665
|
+
<dt>cairo_set_fill_rule, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-fill-rule">cairo_set_fill_rule ()</a>
|
503
666
|
</dt>
|
504
667
|
<dt>cairo_set_font_face, <a class="indexterm" href="cairo-text.html#cairo-set-font-face">cairo_set_font_face ()</a>
|
505
668
|
</dt>
|
@@ -509,117 +672,130 @@
|
|
509
672
|
</dt>
|
510
673
|
<dt>cairo_set_font_size, <a class="indexterm" href="cairo-text.html#cairo-set-font-size">cairo_set_font_size ()</a>
|
511
674
|
</dt>
|
512
|
-
<dt>cairo_set_line_cap, <a class="indexterm" href="cairo-
|
675
|
+
<dt>cairo_set_line_cap, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-line-cap">cairo_set_line_cap ()</a>
|
513
676
|
</dt>
|
514
|
-
<dt>cairo_set_line_join, <a class="indexterm" href="cairo-
|
677
|
+
<dt>cairo_set_line_join, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-line-join">cairo_set_line_join ()</a>
|
515
678
|
</dt>
|
516
|
-
<dt>cairo_set_line_width, <a class="indexterm" href="cairo-
|
679
|
+
<dt>cairo_set_line_width, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-line-width">cairo_set_line_width ()</a>
|
517
680
|
</dt>
|
518
|
-
<dt>cairo_set_matrix, <a class="indexterm" href="cairo-
|
681
|
+
<dt>cairo_set_matrix, <a class="indexterm" href="cairo-Transformations.html#cairo-set-matrix">cairo_set_matrix ()</a>
|
519
682
|
</dt>
|
520
|
-
<dt>cairo_set_miter_limit, <a class="indexterm" href="cairo-
|
683
|
+
<dt>cairo_set_miter_limit, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-miter-limit">cairo_set_miter_limit ()</a>
|
521
684
|
</dt>
|
522
|
-
<dt>cairo_set_operator, <a class="indexterm" href="cairo-
|
685
|
+
<dt>cairo_set_operator, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-operator">cairo_set_operator ()</a>
|
523
686
|
</dt>
|
524
687
|
<dt>cairo_set_scaled_font, <a class="indexterm" href="cairo-text.html#cairo-set-scaled-font">cairo_set_scaled_font ()</a>
|
525
688
|
</dt>
|
526
|
-
<dt>cairo_set_source, <a class="indexterm" href="cairo-
|
689
|
+
<dt>cairo_set_source, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-source">cairo_set_source ()</a>
|
527
690
|
</dt>
|
528
|
-
<dt>cairo_set_source_rgb, <a class="indexterm" href="cairo-
|
691
|
+
<dt>cairo_set_source_rgb, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-source-rgb">cairo_set_source_rgb ()</a>
|
529
692
|
</dt>
|
530
|
-
<dt>cairo_set_source_rgba, <a class="indexterm" href="cairo-
|
693
|
+
<dt>cairo_set_source_rgba, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-source-rgba">cairo_set_source_rgba ()</a>
|
531
694
|
</dt>
|
532
|
-
<dt>cairo_set_source_surface, <a class="indexterm" href="cairo-
|
695
|
+
<dt>cairo_set_source_surface, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-source-surface">cairo_set_source_surface ()</a>
|
533
696
|
</dt>
|
534
|
-
<dt>cairo_set_tolerance, <a class="indexterm" href="cairo-
|
697
|
+
<dt>cairo_set_tolerance, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-tolerance">cairo_set_tolerance ()</a>
|
535
698
|
</dt>
|
536
|
-
<dt>cairo_set_user_data, <a class="indexterm" href="cairo-
|
699
|
+
<dt>cairo_set_user_data, <a class="indexterm" href="cairo-cairo-t.html#cairo-set-user-data">cairo_set_user_data ()</a>
|
537
700
|
</dt>
|
538
701
|
<dt>cairo_show_glyphs, <a class="indexterm" href="cairo-text.html#cairo-show-glyphs">cairo_show_glyphs ()</a>
|
539
702
|
</dt>
|
540
|
-
<dt>cairo_show_page, <a class="indexterm" href="cairo-
|
703
|
+
<dt>cairo_show_page, <a class="indexterm" href="cairo-cairo-t.html#cairo-show-page">cairo_show_page ()</a>
|
541
704
|
</dt>
|
542
705
|
<dt>cairo_show_text, <a class="indexterm" href="cairo-text.html#cairo-show-text">cairo_show_text ()</a>
|
543
706
|
</dt>
|
544
707
|
<dt>cairo_show_text_glyphs, <a class="indexterm" href="cairo-text.html#cairo-show-text-glyphs">cairo_show_text_glyphs ()</a>
|
545
708
|
</dt>
|
546
|
-
<dt>cairo_status, <a class="indexterm" href="cairo-
|
709
|
+
<dt>cairo_status, <a class="indexterm" href="cairo-cairo-t.html#cairo-status">cairo_status ()</a>
|
710
|
+
</dt>
|
711
|
+
<dt>cairo_status_t, <a class="indexterm" href="cairo-Error-handling.html#cairo-status-t">enum cairo_status_t</a>
|
547
712
|
</dt>
|
548
|
-
<dt>
|
713
|
+
<dt>cairo_status_to_string, <a class="indexterm" href="cairo-Error-handling.html#cairo-status-to-string">cairo_status_to_string ()</a>
|
549
714
|
</dt>
|
550
|
-
<dt>
|
715
|
+
<dt>cairo_stroke, <a class="indexterm" href="cairo-cairo-t.html#cairo-stroke">cairo_stroke ()</a>
|
551
716
|
</dt>
|
552
|
-
<dt>
|
717
|
+
<dt>cairo_stroke_extents, <a class="indexterm" href="cairo-cairo-t.html#cairo-stroke-extents">cairo_stroke_extents ()</a>
|
553
718
|
</dt>
|
554
|
-
<dt>
|
719
|
+
<dt>cairo_stroke_preserve, <a class="indexterm" href="cairo-cairo-t.html#cairo-stroke-preserve">cairo_stroke_preserve ()</a>
|
555
720
|
</dt>
|
556
|
-
<dt>
|
721
|
+
<dt>cairo_subpixel_order_t, <a class="indexterm" href="cairo-cairo-font-options-t.html#cairo-subpixel-order-t">enum cairo_subpixel_order_t</a>
|
557
722
|
</dt>
|
558
|
-
<dt>
|
723
|
+
<dt>cairo_surface_copy_page, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-copy-page">cairo_surface_copy_page ()</a>
|
559
724
|
</dt>
|
560
|
-
<dt>
|
725
|
+
<dt>cairo_surface_create_for_rectangle, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-create-for-rectangle">cairo_surface_create_for_rectangle ()</a>
|
561
726
|
</dt>
|
562
|
-
<dt>cairo_surface_create_similar, <a class="indexterm" href="cairo-surface.html#cairo-surface-create-similar">cairo_surface_create_similar ()</a>
|
727
|
+
<dt>cairo_surface_create_similar, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-create-similar">cairo_surface_create_similar ()</a>
|
563
728
|
</dt>
|
564
|
-
<dt>cairo_surface_destroy, <a class="indexterm" href="cairo-surface.html#cairo-surface-destroy">cairo_surface_destroy ()</a>
|
729
|
+
<dt>cairo_surface_destroy, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-destroy">cairo_surface_destroy ()</a>
|
565
730
|
</dt>
|
566
|
-
<dt>cairo_surface_finish, <a class="indexterm" href="cairo-surface.html#cairo-surface-finish">cairo_surface_finish ()</a>
|
731
|
+
<dt>cairo_surface_finish, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-finish">cairo_surface_finish ()</a>
|
567
732
|
</dt>
|
568
|
-
<dt>cairo_surface_flush, <a class="indexterm" href="cairo-surface.html#cairo-surface-flush">cairo_surface_flush ()</a>
|
733
|
+
<dt>cairo_surface_flush, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-flush">cairo_surface_flush ()</a>
|
569
734
|
</dt>
|
570
|
-
<dt>cairo_surface_get_content, <a class="indexterm" href="cairo-surface.html#cairo-surface-get-content">cairo_surface_get_content ()</a>
|
735
|
+
<dt>cairo_surface_get_content, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-content">cairo_surface_get_content ()</a>
|
571
736
|
</dt>
|
572
|
-
<dt>
|
737
|
+
<dt>cairo_surface_get_device, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-device">cairo_surface_get_device ()</a>
|
573
738
|
</dt>
|
574
|
-
<dt>
|
739
|
+
<dt>cairo_surface_get_device_offset, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-device-offset">cairo_surface_get_device_offset ()</a>
|
575
740
|
</dt>
|
576
|
-
<dt>
|
741
|
+
<dt>cairo_surface_get_fallback_resolution, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-fallback-resolution">cairo_surface_get_fallback_resolution ()</a>
|
577
742
|
</dt>
|
578
|
-
<dt>
|
743
|
+
<dt>cairo_surface_get_font_options, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-font-options">cairo_surface_get_font_options ()</a>
|
579
744
|
</dt>
|
580
|
-
<dt>
|
745
|
+
<dt>cairo_surface_get_mime_data, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-mime-data">cairo_surface_get_mime_data ()</a>
|
581
746
|
</dt>
|
582
|
-
<dt>
|
747
|
+
<dt>cairo_surface_get_reference_count, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-reference-count">cairo_surface_get_reference_count ()</a>
|
583
748
|
</dt>
|
584
|
-
<dt>
|
749
|
+
<dt>cairo_surface_get_type, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-type">cairo_surface_get_type ()</a>
|
585
750
|
</dt>
|
586
|
-
<dt>
|
751
|
+
<dt>cairo_surface_get_user_data, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-get-user-data">cairo_surface_get_user_data ()</a>
|
587
752
|
</dt>
|
588
|
-
<dt>
|
753
|
+
<dt>cairo_surface_has_show_text_glyphs, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-has-show-text-glyphs">cairo_surface_has_show_text_glyphs ()</a>
|
589
754
|
</dt>
|
590
|
-
<dt>
|
755
|
+
<dt>cairo_surface_mark_dirty, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-mark-dirty">cairo_surface_mark_dirty ()</a>
|
591
756
|
</dt>
|
592
|
-
<dt>
|
757
|
+
<dt>cairo_surface_mark_dirty_rectangle, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-mark-dirty-rectangle">cairo_surface_mark_dirty_rectangle ()</a>
|
593
758
|
</dt>
|
594
|
-
<dt>
|
759
|
+
<dt>cairo_surface_reference, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-reference">cairo_surface_reference ()</a>
|
595
760
|
</dt>
|
596
|
-
<dt>
|
761
|
+
<dt>cairo_surface_set_device_offset, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-set-device-offset">cairo_surface_set_device_offset ()</a>
|
597
762
|
</dt>
|
598
|
-
<dt>
|
763
|
+
<dt>cairo_surface_set_fallback_resolution, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-set-fallback-resolution">cairo_surface_set_fallback_resolution ()</a>
|
599
764
|
</dt>
|
600
|
-
<dt>
|
765
|
+
<dt>cairo_surface_set_mime_data, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-set-mime-data">cairo_surface_set_mime_data ()</a>
|
601
766
|
</dt>
|
602
|
-
<dt>
|
767
|
+
<dt>cairo_surface_set_user_data, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-set-user-data">cairo_surface_set_user_data ()</a>
|
603
768
|
</dt>
|
604
|
-
<dt>
|
769
|
+
<dt>cairo_surface_show_page, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-show-page">cairo_surface_show_page ()</a>
|
605
770
|
</dt>
|
606
|
-
<dt>
|
771
|
+
<dt>cairo_surface_status, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-status">cairo_surface_status ()</a>
|
607
772
|
</dt>
|
608
|
-
<dt>
|
773
|
+
<dt>cairo_surface_t, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-t">cairo_surface_t</a>
|
609
774
|
</dt>
|
610
|
-
<dt>
|
775
|
+
<dt>cairo_surface_type_t, <a class="indexterm" href="cairo-cairo-surface-t.html#cairo-surface-type-t">enum cairo_surface_type_t</a>
|
611
776
|
</dt>
|
612
|
-
<dt>
|
777
|
+
<dt>cairo_surface_write_to_png, <a class="indexterm" href="cairo-PNG-Support.html#cairo-surface-write-to-png">cairo_surface_write_to_png ()</a>
|
613
778
|
</dt>
|
614
|
-
<dt>
|
779
|
+
<dt>cairo_surface_write_to_png_stream, <a class="indexterm" href="cairo-PNG-Support.html#cairo-surface-write-to-png-stream">cairo_surface_write_to_png_stream ()</a>
|
615
780
|
</dt>
|
616
|
-
<dt>
|
781
|
+
<dt>cairo_svg_get_versions, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-get-versions">cairo_svg_get_versions ()</a>
|
617
782
|
</dt>
|
618
|
-
<dt>
|
783
|
+
<dt>cairo_svg_surface_create, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-surface-create">cairo_svg_surface_create ()</a>
|
619
784
|
</dt>
|
620
|
-
<dt>
|
785
|
+
<dt>cairo_svg_surface_create_for_stream, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-surface-create-for-stream">cairo_svg_surface_create_for_stream ()</a>
|
621
786
|
</dt>
|
622
|
-
<dt>
|
787
|
+
<dt>cairo_svg_surface_restrict_to_version, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-surface-restrict-to-version">cairo_svg_surface_restrict_to_version ()</a>
|
788
|
+
</dt>
|
789
|
+
<dt>cairo_svg_version_t, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-version-t">enum cairo_svg_version_t</a>
|
790
|
+
</dt>
|
791
|
+
<dt>cairo_svg_version_to_string, <a class="indexterm" href="cairo-SVG-Surfaces.html#cairo-svg-version-to-string">cairo_svg_version_to_string ()</a>
|
792
|
+
</dt>
|
793
|
+
</dl>
|
794
|
+
</div>
|
795
|
+
<div class="indexdiv">
|
796
|
+
<h3>T</h3>
|
797
|
+
<dl>
|
798
|
+
<dt>cairo_t, <a class="indexterm" href="cairo-cairo-t.html#cairo-t">cairo_t</a>
|
623
799
|
</dt>
|
624
800
|
<dt>cairo_text_cluster_allocate, <a class="indexterm" href="cairo-text.html#cairo-text-cluster-allocate">cairo_text_cluster_allocate ()</a>
|
625
801
|
</dt>
|
@@ -631,9 +807,9 @@
|
|
631
807
|
</dt>
|
632
808
|
<dt>cairo_text_extents, <a class="indexterm" href="cairo-text.html#cairo-text-extents">cairo_text_extents ()</a>
|
633
809
|
</dt>
|
634
|
-
<dt>cairo_text_extents_t, <a class="indexterm" href="cairo-scaled-font.html#cairo-text-extents-t">cairo_text_extents_t</a>
|
810
|
+
<dt>cairo_text_extents_t, <a class="indexterm" href="cairo-cairo-scaled-font-t.html#cairo-text-extents-t">cairo_text_extents_t</a>
|
635
811
|
</dt>
|
636
|
-
<dt>cairo_text_path, <a class="indexterm" href="cairo-
|
812
|
+
<dt>cairo_text_path, <a class="indexterm" href="cairo-Paths.html#cairo-text-path">cairo_text_path ()</a>
|
637
813
|
</dt>
|
638
814
|
<dt>cairo_toy_font_face_create, <a class="indexterm" href="cairo-text.html#cairo-toy-font-face-create">cairo_toy_font_face_create ()</a>
|
639
815
|
</dt>
|
@@ -643,117 +819,138 @@
|
|
643
819
|
</dt>
|
644
820
|
<dt>cairo_toy_font_face_get_weight, <a class="indexterm" href="cairo-text.html#cairo-toy-font-face-get-weight">cairo_toy_font_face_get_weight ()</a>
|
645
821
|
</dt>
|
646
|
-
<dt>cairo_transform, <a class="indexterm" href="cairo-
|
822
|
+
<dt>cairo_transform, <a class="indexterm" href="cairo-Transformations.html#cairo-transform">cairo_transform ()</a>
|
647
823
|
</dt>
|
648
|
-
<dt>cairo_translate, <a class="indexterm" href="cairo-
|
824
|
+
<dt>cairo_translate, <a class="indexterm" href="cairo-Transformations.html#cairo-translate">cairo_translate ()</a>
|
649
825
|
</dt>
|
650
|
-
|
826
|
+
</dl>
|
827
|
+
</div>
|
828
|
+
<div class="indexdiv">
|
829
|
+
<h3>U</h3>
|
830
|
+
<dl>
|
831
|
+
<dt>cairo_user_data_key_t, <a class="indexterm" href="cairo-Types.html#cairo-user-data-key-t">cairo_user_data_key_t</a>
|
651
832
|
</dt>
|
652
|
-
<dt>cairo_user_font_face_create, <a class="indexterm" href="cairo-
|
833
|
+
<dt>cairo_user_font_face_create, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-create">cairo_user_font_face_create ()</a>
|
653
834
|
</dt>
|
654
|
-
<dt>cairo_user_font_face_get_init_func, <a class="indexterm" href="cairo-
|
835
|
+
<dt>cairo_user_font_face_get_init_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-init-func">cairo_user_font_face_get_init_func ()</a>
|
655
836
|
</dt>
|
656
|
-
<dt>cairo_user_font_face_get_render_glyph_func, <a class="indexterm" href="cairo-
|
837
|
+
<dt>cairo_user_font_face_get_render_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-render-glyph-func">cairo_user_font_face_get_render_glyph_func ()</a>
|
657
838
|
</dt>
|
658
|
-
<dt>cairo_user_font_face_get_text_to_glyphs_func, <a class="indexterm" href="cairo-
|
839
|
+
<dt>cairo_user_font_face_get_text_to_glyphs_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-text-to-glyphs-func">cairo_user_font_face_get_text_to_glyphs_func ()</a>
|
659
840
|
</dt>
|
660
|
-
<dt>cairo_user_font_face_get_unicode_to_glyph_func, <a class="indexterm" href="cairo-
|
841
|
+
<dt>cairo_user_font_face_get_unicode_to_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-get-unicode-to-glyph-func">cairo_user_font_face_get_unicode_to_glyph_func ()</a>
|
661
842
|
</dt>
|
662
|
-
<dt>cairo_user_font_face_set_init_func, <a class="indexterm" href="cairo-
|
843
|
+
<dt>cairo_user_font_face_set_init_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-init-func">cairo_user_font_face_set_init_func ()</a>
|
663
844
|
</dt>
|
664
|
-
<dt>cairo_user_font_face_set_render_glyph_func, <a class="indexterm" href="cairo-
|
845
|
+
<dt>cairo_user_font_face_set_render_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-render-glyph-func">cairo_user_font_face_set_render_glyph_func ()</a>
|
665
846
|
</dt>
|
666
|
-
<dt>cairo_user_font_face_set_text_to_glyphs_func, <a class="indexterm" href="cairo-
|
847
|
+
<dt>cairo_user_font_face_set_text_to_glyphs_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-text-to-glyphs-func">cairo_user_font_face_set_text_to_glyphs_func ()</a>
|
667
848
|
</dt>
|
668
|
-
<dt>cairo_user_font_face_set_unicode_to_glyph_func, <a class="indexterm" href="cairo-
|
849
|
+
<dt>cairo_user_font_face_set_unicode_to_glyph_func, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-font-face-set-unicode-to-glyph-func">cairo_user_font_face_set_unicode_to_glyph_func ()</a>
|
669
850
|
</dt>
|
670
|
-
<dt>cairo_user_scaled_font_init_func_t, <a class="indexterm" href="cairo-
|
851
|
+
<dt>cairo_user_scaled_font_init_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-init-func-t">cairo_user_scaled_font_init_func_t ()</a>
|
671
852
|
</dt>
|
672
|
-
<dt>cairo_user_scaled_font_render_glyph_func_t, <a class="indexterm" href="cairo-
|
853
|
+
<dt>cairo_user_scaled_font_render_glyph_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-render-glyph-func-t">cairo_user_scaled_font_render_glyph_func_t ()</a>
|
673
854
|
</dt>
|
674
|
-
<dt>cairo_user_scaled_font_text_to_glyphs_func_t, <a class="indexterm" href="cairo-
|
855
|
+
<dt>cairo_user_scaled_font_text_to_glyphs_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-text-to-glyphs-func-t">cairo_user_scaled_font_text_to_glyphs_func_t ()</a>
|
675
856
|
</dt>
|
676
|
-
<dt>cairo_user_scaled_font_unicode_to_glyph_func_t, <a class="indexterm" href="cairo-
|
857
|
+
<dt>cairo_user_scaled_font_unicode_to_glyph_func_t, <a class="indexterm" href="cairo-User-Fonts.html#cairo-user-scaled-font-unicode-to-glyph-func-t">cairo_user_scaled_font_unicode_to_glyph_func_t ()</a>
|
677
858
|
</dt>
|
678
|
-
<dt>cairo_user_to_device, <a class="indexterm" href="cairo-
|
859
|
+
<dt>cairo_user_to_device, <a class="indexterm" href="cairo-Transformations.html#cairo-user-to-device">cairo_user_to_device ()</a>
|
679
860
|
</dt>
|
680
|
-
<dt>cairo_user_to_device_distance, <a class="indexterm" href="cairo-
|
861
|
+
<dt>cairo_user_to_device_distance, <a class="indexterm" href="cairo-Transformations.html#cairo-user-to-device-distance">cairo_user_to_device_distance ()</a>
|
681
862
|
</dt>
|
682
|
-
|
863
|
+
</dl>
|
864
|
+
</div>
|
865
|
+
<div class="indexdiv">
|
866
|
+
<h3>V</h3>
|
867
|
+
<dl>
|
868
|
+
<dt>CAIRO_VERSION, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION:CAPS">CAIRO_VERSION</a>
|
683
869
|
</dt>
|
684
|
-
<dt>cairo_version, <a class="indexterm" href="cairo-
|
870
|
+
<dt>cairo_version, <a class="indexterm" href="cairo-Version-Information.html#cairo-version">cairo_version ()</a>
|
685
871
|
</dt>
|
686
|
-
<dt>CAIRO_VERSION_ENCODE, <a class="indexterm" href="cairo-
|
872
|
+
<dt>CAIRO_VERSION_ENCODE, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-ENCODE:CAPS">CAIRO_VERSION_ENCODE()</a>
|
687
873
|
</dt>
|
688
|
-
<dt>CAIRO_VERSION_MAJOR, <a class="indexterm" href="cairo-
|
874
|
+
<dt>CAIRO_VERSION_MAJOR, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-MAJOR:CAPS">CAIRO_VERSION_MAJOR</a>
|
689
875
|
</dt>
|
690
|
-
<dt>CAIRO_VERSION_MICRO, <a class="indexterm" href="cairo-
|
876
|
+
<dt>CAIRO_VERSION_MICRO, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-MICRO:CAPS">CAIRO_VERSION_MICRO</a>
|
691
877
|
</dt>
|
692
|
-
<dt>CAIRO_VERSION_MINOR, <a class="indexterm" href="cairo-
|
878
|
+
<dt>CAIRO_VERSION_MINOR, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-MINOR:CAPS">CAIRO_VERSION_MINOR</a>
|
693
879
|
</dt>
|
694
|
-
<dt>CAIRO_VERSION_STRING, <a class="indexterm" href="cairo-
|
880
|
+
<dt>CAIRO_VERSION_STRING, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS">CAIRO_VERSION_STRING</a>
|
695
881
|
</dt>
|
696
|
-
<dt>cairo_version_string, <a class="indexterm" href="cairo-
|
882
|
+
<dt>cairo_version_string, <a class="indexterm" href="cairo-Version-Information.html#cairo-version-string">cairo_version_string ()</a>
|
697
883
|
</dt>
|
698
|
-
<dt>CAIRO_VERSION_STRINGIZE, <a class="indexterm" href="cairo-
|
884
|
+
<dt>CAIRO_VERSION_STRINGIZE, <a class="indexterm" href="cairo-Version-Information.html#CAIRO-VERSION-STRINGIZE:CAPS">CAIRO_VERSION_STRINGIZE()</a>
|
699
885
|
</dt>
|
700
|
-
|
886
|
+
</dl>
|
887
|
+
</div>
|
888
|
+
<div class="indexdiv">
|
889
|
+
<h3>W</h3>
|
890
|
+
<dl>
|
891
|
+
<dt>cairo_win32_font_face_create_for_hfont, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-hfont">cairo_win32_font_face_create_for_hfont ()</a>
|
701
892
|
</dt>
|
702
|
-
<dt>cairo_win32_font_face_create_for_logfontw, <a class="indexterm" href="cairo-
|
893
|
+
<dt>cairo_win32_font_face_create_for_logfontw, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw">cairo_win32_font_face_create_for_logfontw ()</a>
|
703
894
|
</dt>
|
704
|
-
<dt>cairo_win32_font_face_create_for_logfontw_hfont, <a class="indexterm" href="cairo-
|
895
|
+
<dt>cairo_win32_font_face_create_for_logfontw_hfont, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw-hfont">cairo_win32_font_face_create_for_logfontw_hfont ()</a>
|
705
896
|
</dt>
|
706
|
-
<dt>cairo_win32_printing_surface_create, <a class="indexterm" href="cairo-
|
897
|
+
<dt>cairo_win32_printing_surface_create, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create">cairo_win32_printing_surface_create ()</a>
|
707
898
|
</dt>
|
708
|
-
<dt>cairo_win32_scaled_font_done_font, <a class="indexterm" href="cairo-
|
899
|
+
<dt>cairo_win32_scaled_font_done_font, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-done-font">cairo_win32_scaled_font_done_font ()</a>
|
709
900
|
</dt>
|
710
|
-
<dt>cairo_win32_scaled_font_get_device_to_logical, <a class="indexterm" href="cairo-
|
901
|
+
<dt>cairo_win32_scaled_font_get_device_to_logical, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-device-to-logical">cairo_win32_scaled_font_get_device_to_logical ()</a>
|
711
902
|
</dt>
|
712
|
-
<dt>cairo_win32_scaled_font_get_logical_to_device, <a class="indexterm" href="cairo-
|
903
|
+
<dt>cairo_win32_scaled_font_get_logical_to_device, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-logical-to-device">cairo_win32_scaled_font_get_logical_to_device ()</a>
|
713
904
|
</dt>
|
714
|
-
<dt>cairo_win32_scaled_font_get_metrics_factor, <a class="indexterm" href="cairo-
|
905
|
+
<dt>cairo_win32_scaled_font_get_metrics_factor, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-metrics-factor">cairo_win32_scaled_font_get_metrics_factor ()</a>
|
715
906
|
</dt>
|
716
|
-
<dt>cairo_win32_scaled_font_select_font, <a class="indexterm" href="cairo-
|
907
|
+
<dt>cairo_win32_scaled_font_select_font, <a class="indexterm" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font">cairo_win32_scaled_font_select_font ()</a>
|
717
908
|
</dt>
|
718
|
-
<dt>cairo_win32_surface_create, <a class="indexterm" href="cairo-
|
909
|
+
<dt>cairo_win32_surface_create, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create">cairo_win32_surface_create ()</a>
|
719
910
|
</dt>
|
720
|
-
<dt>cairo_win32_surface_create_with_ddb, <a class="indexterm" href="cairo-
|
911
|
+
<dt>cairo_win32_surface_create_with_ddb, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-ddb">cairo_win32_surface_create_with_ddb ()</a>
|
721
912
|
</dt>
|
722
|
-
<dt>cairo_win32_surface_create_with_dib, <a class="indexterm" href="cairo-
|
913
|
+
<dt>cairo_win32_surface_create_with_dib, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib">cairo_win32_surface_create_with_dib ()</a>
|
723
914
|
</dt>
|
724
|
-
<dt>cairo_win32_surface_get_dc, <a class="indexterm" href="cairo-
|
915
|
+
<dt>cairo_win32_surface_get_dc, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-surface-get-dc">cairo_win32_surface_get_dc ()</a>
|
725
916
|
</dt>
|
726
|
-
<dt>cairo_win32_surface_get_image, <a class="indexterm" href="cairo-
|
917
|
+
<dt>cairo_win32_surface_get_image, <a class="indexterm" href="cairo-Win32-Surfaces.html#cairo-win32-surface-get-image">cairo_win32_surface_get_image ()</a>
|
727
918
|
</dt>
|
728
|
-
<dt>cairo_write_func_t, <a class="indexterm" href="cairo-
|
919
|
+
<dt>cairo_write_func_t, <a class="indexterm" href="cairo-PNG-Support.html#cairo-write-func-t">cairo_write_func_t ()</a>
|
729
920
|
</dt>
|
730
|
-
|
921
|
+
</dl>
|
922
|
+
</div>
|
923
|
+
<div class="indexdiv">
|
924
|
+
<h3>X</h3>
|
925
|
+
<dl>
|
926
|
+
<dt>cairo_xlib_surface_create, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create">cairo_xlib_surface_create ()</a>
|
731
927
|
</dt>
|
732
|
-
<dt>cairo_xlib_surface_create_for_bitmap, <a class="indexterm" href="cairo-
|
928
|
+
<dt>cairo_xlib_surface_create_for_bitmap, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create-for-bitmap">cairo_xlib_surface_create_for_bitmap ()</a>
|
733
929
|
</dt>
|
734
|
-
<dt>cairo_xlib_surface_get_depth, <a class="indexterm" href="cairo-
|
930
|
+
<dt>cairo_xlib_surface_get_depth, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-depth">cairo_xlib_surface_get_depth ()</a>
|
735
931
|
</dt>
|
736
|
-
<dt>cairo_xlib_surface_get_display, <a class="indexterm" href="cairo-
|
932
|
+
<dt>cairo_xlib_surface_get_display, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-display">cairo_xlib_surface_get_display ()</a>
|
737
933
|
</dt>
|
738
|
-
<dt>cairo_xlib_surface_get_drawable, <a class="indexterm" href="cairo-
|
934
|
+
<dt>cairo_xlib_surface_get_drawable, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-drawable">cairo_xlib_surface_get_drawable ()</a>
|
739
935
|
</dt>
|
740
|
-
<dt>cairo_xlib_surface_get_height, <a class="indexterm" href="cairo-
|
936
|
+
<dt>cairo_xlib_surface_get_height, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-height">cairo_xlib_surface_get_height ()</a>
|
741
937
|
</dt>
|
742
|
-
<dt>cairo_xlib_surface_get_screen, <a class="indexterm" href="cairo-
|
938
|
+
<dt>cairo_xlib_surface_get_screen, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-screen">cairo_xlib_surface_get_screen ()</a>
|
743
939
|
</dt>
|
744
|
-
<dt>cairo_xlib_surface_get_visual, <a class="indexterm" href="cairo-
|
940
|
+
<dt>cairo_xlib_surface_get_visual, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-visual">cairo_xlib_surface_get_visual ()</a>
|
745
941
|
</dt>
|
746
|
-
<dt>cairo_xlib_surface_get_width, <a class="indexterm" href="cairo-
|
942
|
+
<dt>cairo_xlib_surface_get_width, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-width">cairo_xlib_surface_get_width ()</a>
|
747
943
|
</dt>
|
748
|
-
<dt>cairo_xlib_surface_set_drawable, <a class="indexterm" href="cairo-
|
944
|
+
<dt>cairo_xlib_surface_set_drawable, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-set-drawable">cairo_xlib_surface_set_drawable ()</a>
|
749
945
|
</dt>
|
750
|
-
<dt>cairo_xlib_surface_set_size, <a class="indexterm" href="cairo-
|
946
|
+
<dt>cairo_xlib_surface_set_size, <a class="indexterm" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-set-size">cairo_xlib_surface_set_size ()</a>
|
751
947
|
</dt>
|
752
948
|
</dl>
|
753
|
-
</div
|
949
|
+
</div>
|
950
|
+
</div>
|
754
951
|
</div>
|
755
952
|
<div class="footer">
|
756
953
|
<hr>
|
757
|
-
Generated by GTK-Doc V1.
|
954
|
+
Generated by GTK-Doc V1.15</div>
|
758
955
|
</body>
|
759
|
-
</html>
|
956
|
+
</html>
|