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
data/test/test_region.rb
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
class RegionTest < Test::Unit::TestCase
|
2
|
+
include CairoTestUtils
|
3
|
+
|
4
|
+
def setup
|
5
|
+
only_cairo_version(1, 10, 0)
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_new_empty
|
9
|
+
region = Cairo::Region.new
|
10
|
+
assert_predicate(region, :empty?)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_new_rectangle
|
14
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
15
|
+
assert_not_predicate(region, :empty?)
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_num_rectangles
|
19
|
+
region = Cairo::Region.new
|
20
|
+
assert_equal(0, region.num_rectangles)
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_get_rectangle
|
24
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
25
|
+
assert_equal([0, 0, 10, 10], region[0])
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_dup
|
29
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
30
|
+
region.dup.subtract!([5, 5, 5, 5])
|
31
|
+
assert_equal([0, 0, 10, 10], region.extents)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_equal
|
35
|
+
assert_equal(Cairo::Region.new([0, 0, 10, 10]),
|
36
|
+
Cairo::Region.new([0, 0, 10, 10]))
|
37
|
+
assert_not_equal(Cairo::Region.new([0, 0, 10, 10]),
|
38
|
+
Cairo::Region.new([0, 0, 100, 100]))
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_extents
|
42
|
+
region = Cairo::Region.new
|
43
|
+
assert_equal([0, 0, 0, 0], region.extents)
|
44
|
+
region.union!([0, 0, 10, 10])
|
45
|
+
assert_equal([0, 0, 10, 10], region.extents)
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_contains_rectangle
|
49
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
50
|
+
assert_equal(Cairo::RegionOverlap::IN,
|
51
|
+
region.contains_rectangle([2, 2, 2, 2]))
|
52
|
+
assert_equal(Cairo::RegionOverlap::OUT,
|
53
|
+
region.contains_rectangle([10, 10, 1, 1]))
|
54
|
+
assert_equal(Cairo::RegionOverlap::PART,
|
55
|
+
region.contains_rectangle([2, 2, 10, 10]))
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_contains_point
|
59
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
60
|
+
assert_equal(true, region.contains_point?(5, 5))
|
61
|
+
assert_equal(false, region.contains_point?(10, 10))
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_translate
|
65
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
66
|
+
assert_equal(true, region.contains_point?(5, 5))
|
67
|
+
region.translate!(6, 6)
|
68
|
+
assert_equal(false, region.contains_point?(5, 5))
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_subtract
|
72
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
73
|
+
assert_equal(true, region.contains_point?(5, 5))
|
74
|
+
region.subtract!([5, 5, 2, 2])
|
75
|
+
assert_equal(false, region.contains_point?(5, 5))
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_intersect
|
79
|
+
region = Cairo::Region.new([0, 0, 10, 10])
|
80
|
+
assert_equal(true, region.contains_point?(5, 5))
|
81
|
+
assert_equal(true, region.contains_point?(7, 7))
|
82
|
+
region.intersect!([5, 5, 2, 2])
|
83
|
+
assert_equal(true, region.contains_point?(5, 5))
|
84
|
+
assert_equal(false, region.contains_point?(7, 7))
|
85
|
+
end
|
86
|
+
|
87
|
+
def test_union
|
88
|
+
region = Cairo::Region.new([0, 0, 4, 4])
|
89
|
+
assert_equal(false, region.contains_point?(5, 5))
|
90
|
+
region.union!([5, 5, 5, 5])
|
91
|
+
assert_equal(true, region.contains_point?(5, 5))
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_xor
|
95
|
+
region = Cairo::Region.new([0, 0, 5, 5])
|
96
|
+
assert_equal(true, region.contains_point?(4, 4))
|
97
|
+
assert_equal(false, region.contains_point?(7, 7))
|
98
|
+
region.xor!([3, 3, 5, 5])
|
99
|
+
assert_equal(false, region.contains_point?(4, 4))
|
100
|
+
assert_equal(true, region.contains_point?(7, 7))
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
require 'cairo'
|
2
|
+
require 'stringio'
|
3
|
+
|
4
|
+
class ScriptDeviceTest < Test::Unit::TestCase
|
5
|
+
include CairoTestUtils
|
6
|
+
|
7
|
+
def setup
|
8
|
+
only_device("Script")
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_new
|
12
|
+
output = StringIO.new
|
13
|
+
device = Cairo::ScriptDevice.new(output)
|
14
|
+
assert_equal("%!CairoScript\n", output.string)
|
15
|
+
device.finish
|
16
|
+
assert_equal("%!CairoScript\n", output.string)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_new_with_block
|
20
|
+
output = StringIO.new
|
21
|
+
string = nil
|
22
|
+
Cairo::ScriptDevice.new(output) do |device|
|
23
|
+
string = output.string
|
24
|
+
end
|
25
|
+
assert_equal("%!CairoScript\n", string)
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_write_comment
|
29
|
+
output = StringIO.new
|
30
|
+
Cairo::ScriptDevice.new(output) do |device|
|
31
|
+
device.write_comment("Hello!")
|
32
|
+
end
|
33
|
+
assert_equal("%!CairoScript\n" +
|
34
|
+
"% Hello!\n",
|
35
|
+
output.string)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_mode
|
39
|
+
output = StringIO.new
|
40
|
+
Cairo::ScriptDevice.new(output) do |device|
|
41
|
+
assert_equal(Cairo::ScriptMode::ASCII, device.mode)
|
42
|
+
device.mode = Cairo::ScriptMode::BINARY
|
43
|
+
assert_equal(Cairo::ScriptMode::BINARY, device.mode)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class ScriptSurfaceTest < Test::Unit::TestCase
|
2
|
+
include CairoTestUtils
|
3
|
+
|
4
|
+
def setup
|
5
|
+
only_surface("Script")
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_device
|
9
|
+
device = Cairo::ScriptDevice.new(StringIO.new)
|
10
|
+
surface = Cairo::ScriptSurface.new(device, 100, 100)
|
11
|
+
assert_equal(Cairo::ScriptDevice, surface.device.class)
|
12
|
+
end
|
13
|
+
end
|
data/test/test_surface.rb
CHANGED
@@ -7,17 +7,17 @@ class SurfaceTest < Test::Unit::TestCase
|
|
7
7
|
def test_new
|
8
8
|
output = StringIO.new
|
9
9
|
surface = Cairo::PDFSurface.new(output, 10, 10)
|
10
|
-
|
10
|
+
assert_not_equal("%%EOF\n", output.string[-6..-1])
|
11
11
|
surface.finish
|
12
|
-
|
12
|
+
assert_equal("%%EOF\n", output.string[-6..-1])
|
13
13
|
end
|
14
14
|
|
15
15
|
def test_new_with_block
|
16
16
|
output = StringIO.new
|
17
17
|
Cairo::PDFSurface.new(output, 10, 10) do |surface|
|
18
|
-
|
18
|
+
assert_not_equal("%%EOF\n", output.string[-6..-1])
|
19
19
|
end
|
20
|
-
|
20
|
+
assert_equal("%%EOF\n", output.string[-6..-1])
|
21
21
|
end
|
22
22
|
|
23
23
|
def test_new_with_block_and_finish
|
@@ -38,4 +38,14 @@ class SurfaceTest < Test::Unit::TestCase
|
|
38
38
|
surface.set_fallback_resolution(95, 95)
|
39
39
|
assert_equal([95.0, 95.0], surface.fallback_resolution)
|
40
40
|
end
|
41
|
+
|
42
|
+
def test_mime_data
|
43
|
+
only_cairo_version(1, 10, 0)
|
44
|
+
|
45
|
+
output = StringIO.new
|
46
|
+
surface = Cairo::PDFSurface.new(output, 100, 100)
|
47
|
+
surface.set_mime_data(Cairo::MimeType::URI, "http://cairo.rubyforge.org/")
|
48
|
+
assert_equal("http://cairo.rubyforge.org/",
|
49
|
+
surface.get_mime_data(Cairo::MimeType::URI))
|
50
|
+
end
|
41
51
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
class TeeSurfaceTest < Test::Unit::TestCase
|
2
|
+
include CairoTestUtils
|
3
|
+
|
4
|
+
def setup
|
5
|
+
only_surface("Tee")
|
6
|
+
only_surface("Script")
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_new
|
10
|
+
output1 = StringIO.new
|
11
|
+
device1 = Cairo::ScriptDevice.new(output1)
|
12
|
+
surface1 = Cairo::ScriptSurface.new(device1, 100, 200)
|
13
|
+
output2 = StringIO.new
|
14
|
+
device2 = Cairo::ScriptDevice.new(output2)
|
15
|
+
surface2 = Cairo::ScriptSurface.new(device2, 100, 200)
|
16
|
+
|
17
|
+
surface = Cairo::TeeSurface.new(surface1)
|
18
|
+
surface << surface2
|
19
|
+
Cairo::Context.new(surface) do |context|
|
20
|
+
context.move_to(15, 30)
|
21
|
+
context.line_to(80, 100)
|
22
|
+
context.stroke
|
23
|
+
end
|
24
|
+
assert_equal(<<-EOS, output1.string)
|
25
|
+
%!CairoScript
|
26
|
+
<< /content //COLOR_ALPHA /width 100 /height 200 >> surface context
|
27
|
+
n 15 30 m 80 100 l
|
28
|
+
stroke+
|
29
|
+
EOS
|
30
|
+
assert_equal(output1.string, output2.string)
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
class XMLDeviceTest < Test::Unit::TestCase
|
2
|
+
include CairoTestUtils
|
3
|
+
|
4
|
+
def setup
|
5
|
+
only_device("XML")
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_new
|
9
|
+
output = StringIO.new
|
10
|
+
device = Cairo::XMLDevice.new(output)
|
11
|
+
assert_equal("", output.string)
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_new_with_block
|
15
|
+
output = StringIO.new
|
16
|
+
string = nil
|
17
|
+
Cairo::XMLDevice.new(output) do |device|
|
18
|
+
string = output.string
|
19
|
+
end
|
20
|
+
assert_equal("", string)
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
class XMLSurfaceTest < Test::Unit::TestCase
|
2
|
+
include CairoTestUtils
|
3
|
+
|
4
|
+
def setup
|
5
|
+
only_surface("XML")
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_new
|
9
|
+
output = StringIO.new
|
10
|
+
device = Cairo::XMLDevice.new(output)
|
11
|
+
surface = Cairo::XMLSurface.new(device, 100, 200)
|
12
|
+
Cairo::Context.new(surface) do |context|
|
13
|
+
context.move_to(15, 30)
|
14
|
+
context.line_to(80, 100)
|
15
|
+
context.stroke
|
16
|
+
end
|
17
|
+
assert_equal(<<-EOX, output.string)
|
18
|
+
<stroke>
|
19
|
+
<operator>OVER</operator>
|
20
|
+
<line-width>2</line-width>
|
21
|
+
<miter-limit>10</miter-limit>
|
22
|
+
<line-cap>LINE_CAP_BUTT</line-cap>
|
23
|
+
<line-join>LINE_JOIN_MITER</line-join>
|
24
|
+
<source-pattern>
|
25
|
+
<solid>0 0 0 1</solid>
|
26
|
+
</source-pattern>
|
27
|
+
<path> 15 30 m 80 100 l </path> <tolerance>0.1</tolerance>
|
28
|
+
<antialias>ANTIALIAS_DEFAULT</antialias>
|
29
|
+
</stroke>
|
30
|
+
EOX
|
31
|
+
end
|
32
|
+
end
|
@@ -96,7 +96,7 @@ module RbConfig
|
|
96
96
|
CONFIG["CP"] = "cp"
|
97
97
|
CONFIG["RM"] = "rm -f"
|
98
98
|
CONFIG["CAPITARGET"] = "nodoc"
|
99
|
-
CONFIG["DOXYGEN"] = ""
|
99
|
+
CONFIG["DOXYGEN"] = "doxygen"
|
100
100
|
CONFIG["DOT"] = ""
|
101
101
|
CONFIG["MAKEDIRS"] = "/bin/mkdir -p"
|
102
102
|
CONFIG["MKDIR_P"] = "/bin/mkdir -p"
|
Binary file
|
@@ -12,7 +12,7 @@
|
|
12
12
|
*
|
13
13
|
* You should have received a copy of the LGPL along with this library
|
14
14
|
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
15
|
-
* Foundation, Inc.,
|
15
|
+
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
|
16
16
|
* You should have received a copy of the MPL along with this library
|
17
17
|
* in the file COPYING-MPL-1.1
|
18
18
|
*
|
@@ -36,20 +36,6 @@
|
|
36
36
|
#ifndef CAIRO_DEPRECATED_H
|
37
37
|
#define CAIRO_DEPRECATED_H
|
38
38
|
|
39
|
-
/* The %CAIRO_FORMAT_RGB16_565 value was added in cairo 1.2.0 as part
|
40
|
-
* of fixing cairo's xlib backend to work with X servers advertising a
|
41
|
-
* 16-bit, 565 visual. But as it turned out, adding this format to
|
42
|
-
* #cairo_format_t was not necessary, and was a mistake, (cairo's xlib
|
43
|
-
* backend can work fine with 16-bit visuals in the same way it works
|
44
|
-
* with BGR visuals without any BGR formats in
|
45
|
-
* #cairo_format_t).
|
46
|
-
*
|
47
|
-
* Additionally, the support for the RGB16_565 format was never
|
48
|
-
* completely implemented. So while this format value is currently
|
49
|
-
* deprecated, it may eventually acquire complete support in the future.
|
50
|
-
*/
|
51
|
-
#define CAIRO_FORMAT_RGB16_565 4
|
52
|
-
|
53
39
|
#define CAIRO_FONT_TYPE_ATSUI CAIRO_FONT_TYPE_QUARTZ
|
54
40
|
|
55
41
|
/* Obsolete functions. These definitions exist to coerce the compiler
|
@@ -123,7 +109,6 @@
|
|
123
109
|
#define cairo_matrix_copy cairo_matrix_copy_DEPRECATED_BY_cairo_matrix_t
|
124
110
|
#define cairo_matrix_get_affine cairo_matrix_get_affine_DEPRECATED_BY_cairo_matrix_t
|
125
111
|
#define cairo_set_target_surface cairo_set_target_surface_DEPRECATED_BY_cairo_create
|
126
|
-
#define cairo_set_target_glitz cairo_set_target_glitz_DEPRECATED_BY_cairo_glitz_surface_create
|
127
112
|
#define cairo_set_target_image cairo_set_target_image_DEPRECATED_BY_cairo_image_surface_create_for_data
|
128
113
|
#define cairo_set_target_pdf cairo_set_target_pdf_DEPRECATED_BY_cairo_pdf_surface_create
|
129
114
|
#define cairo_set_target_png cairo_set_target_png_DEPRECATED_BY_cairo_surface_write_to_png
|
@@ -2,18 +2,25 @@
|
|
2
2
|
#ifndef CAIRO_FEATURES_H
|
3
3
|
#define CAIRO_FEATURES_H
|
4
4
|
|
5
|
+
#define CAIRO_HAS_FC_FONT 1
|
5
6
|
#define CAIRO_HAS_FT_FONT 1
|
7
|
+
#define CAIRO_HAS_GOBJECT_FUNCTIONS 1
|
6
8
|
#define CAIRO_HAS_IMAGE_SURFACE 1
|
7
9
|
#define CAIRO_HAS_PDF_SURFACE 1
|
8
10
|
#define CAIRO_HAS_PNG_FUNCTIONS 1
|
9
11
|
#define CAIRO_HAS_PS_SURFACE 1
|
12
|
+
#define CAIRO_HAS_RECORDING_SURFACE 1
|
10
13
|
#define CAIRO_HAS_SVG_SURFACE 1
|
11
14
|
#define CAIRO_HAS_USER_FONT 1
|
12
15
|
#define CAIRO_HAS_WIN32_FONT 1
|
13
16
|
#define CAIRO_HAS_WIN32_SURFACE 1
|
14
17
|
|
18
|
+
/*#undef CAIRO_HAS_EGL_FUNCTIONS */
|
19
|
+
/*#undef CAIRO_HAS_GLX_FUNCTIONS */
|
15
20
|
/*#undef CAIRO_HAS_QUARTZ_FONT */
|
16
21
|
/*#undef CAIRO_HAS_QUARTZ_SURFACE */
|
22
|
+
/*#undef CAIRO_HAS_WGL_FUNCTIONS */
|
23
|
+
/*#undef CAIRO_HAS_XCB_SHM_FUNCTIONS */
|
17
24
|
/*#undef CAIRO_HAS_XLIB_SURFACE */
|
18
25
|
/*#undef CAIRO_HAS_XLIB_XRENDER_SURFACE */
|
19
26
|
|
@@ -12,7 +12,7 @@
|
|
12
12
|
*
|
13
13
|
* You should have received a copy of the LGPL along with this library
|
14
14
|
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
15
|
-
* Foundation, Inc.,
|
15
|
+
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
|
16
16
|
* You should have received a copy of the MPL along with this library
|
17
17
|
* in the file COPYING-MPL-1.1
|
18
18
|
*
|
@@ -43,18 +43,14 @@
|
|
43
43
|
|
44
44
|
/* Fontconfig/Freetype platform-specific font interface */
|
45
45
|
|
46
|
-
#include <fontconfig/fontconfig.h>
|
47
46
|
#include <ft2build.h>
|
48
47
|
#include FT_FREETYPE_H
|
49
48
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
cairo_ft_font_face_create_for_pattern (FcPattern *pattern);
|
49
|
+
#if CAIRO_HAS_FC_FONT
|
50
|
+
#include <fontconfig/fontconfig.h>
|
51
|
+
#endif
|
54
52
|
|
55
|
-
|
56
|
-
cairo_ft_font_options_substitute (const cairo_font_options_t *options,
|
57
|
-
FcPattern *pattern);
|
53
|
+
CAIRO_BEGIN_DECLS
|
58
54
|
|
59
55
|
cairo_public cairo_font_face_t *
|
60
56
|
cairo_ft_font_face_create_for_ft_face (FT_Face face,
|
@@ -66,6 +62,17 @@ cairo_ft_scaled_font_lock_face (cairo_scaled_font_t *scaled_font);
|
|
66
62
|
cairo_public void
|
67
63
|
cairo_ft_scaled_font_unlock_face (cairo_scaled_font_t *scaled_font);
|
68
64
|
|
65
|
+
#if CAIRO_HAS_FC_FONT
|
66
|
+
|
67
|
+
cairo_public cairo_font_face_t *
|
68
|
+
cairo_ft_font_face_create_for_pattern (FcPattern *pattern);
|
69
|
+
|
70
|
+
cairo_public void
|
71
|
+
cairo_ft_font_options_substitute (const cairo_font_options_t *options,
|
72
|
+
FcPattern *pattern);
|
73
|
+
|
74
|
+
#endif
|
75
|
+
|
69
76
|
CAIRO_END_DECLS
|
70
77
|
|
71
78
|
#else /* CAIRO_HAS_FT_FONT */
|
@@ -0,0 +1,186 @@
|
|
1
|
+
/* cairo - a vector graphics library with display and print output
|
2
|
+
*
|
3
|
+
* Copyright © 2010 Red Hat Inc.
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it either under the terms of the GNU Lesser General Public
|
7
|
+
* License version 2.1 as published by the Free Software Foundation
|
8
|
+
* (the "LGPL") or, at your option, under the terms of the Mozilla
|
9
|
+
* Public License Version 1.1 (the "MPL"). If you do not alter this
|
10
|
+
* notice, a recipient may use your version of this file under either
|
11
|
+
* the MPL or the LGPL.
|
12
|
+
*
|
13
|
+
* You should have received a copy of the LGPL along with this library
|
14
|
+
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
15
|
+
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
|
16
|
+
* You should have received a copy of the MPL along with this library
|
17
|
+
* in the file COPYING-MPL-1.1
|
18
|
+
*
|
19
|
+
* The contents of this file are subject to the Mozilla Public License
|
20
|
+
* Version 1.1 (the "License"); you may not use this file except in
|
21
|
+
* compliance with the License. You may obtain a copy of the License at
|
22
|
+
* http://www.mozilla.org/MPL/
|
23
|
+
*
|
24
|
+
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
|
25
|
+
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
|
26
|
+
* the specific language governing rights and limitations.
|
27
|
+
*
|
28
|
+
* The Original Code is the cairo graphics library.
|
29
|
+
*
|
30
|
+
* The Initial Developer of the Original Code is University of Southern
|
31
|
+
* California.
|
32
|
+
*
|
33
|
+
* Contributor(s):
|
34
|
+
* Benjamin Otte <otte@redhat.com>
|
35
|
+
*/
|
36
|
+
|
37
|
+
#ifndef CAIRO_GOBJECT_H
|
38
|
+
#define CAIRO_GOBJECT_H
|
39
|
+
|
40
|
+
#include <cairo.h>
|
41
|
+
|
42
|
+
#if CAIRO_HAS_GOBJECT_FUNCTIONS
|
43
|
+
|
44
|
+
#include <glib-object.h>
|
45
|
+
|
46
|
+
CAIRO_BEGIN_DECLS
|
47
|
+
|
48
|
+
/* structs */
|
49
|
+
|
50
|
+
#define CAIRO_GOBJECT_TYPE_CONTEXT cairo_gobject_context_get_type ()
|
51
|
+
cairo_public GType
|
52
|
+
cairo_gobject_context_get_type (void);
|
53
|
+
|
54
|
+
#define CAIRO_GOBJECT_TYPE_DEVICE cairo_gobject_device_get_type ()
|
55
|
+
cairo_public GType
|
56
|
+
cairo_gobject_device_get_type (void);
|
57
|
+
|
58
|
+
#define CAIRO_GOBJECT_TYPE_PATTERN cairo_gobject_pattern_get_type ()
|
59
|
+
cairo_public GType
|
60
|
+
cairo_gobject_pattern_get_type (void);
|
61
|
+
|
62
|
+
#define CAIRO_GOBJECT_TYPE_SURFACE cairo_gobject_surface_get_type ()
|
63
|
+
cairo_public GType
|
64
|
+
cairo_gobject_surface_get_type (void);
|
65
|
+
|
66
|
+
#define CAIRO_GOBJECT_TYPE_RECTANGLE cairo_gobject_rectangle_get_type ()
|
67
|
+
cairo_public GType
|
68
|
+
cairo_gobject_rectangle_get_type (void);
|
69
|
+
|
70
|
+
#define CAIRO_GOBJECT_TYPE_SCALED_FONT cairo_gobject_scaled_font_get_type ()
|
71
|
+
cairo_public GType
|
72
|
+
cairo_gobject_scaled_font_get_type (void);
|
73
|
+
|
74
|
+
#define CAIRO_GOBJECT_TYPE_FONT_FACE cairo_gobject_font_face_get_type ()
|
75
|
+
cairo_public GType
|
76
|
+
cairo_gobject_font_face_get_type (void);
|
77
|
+
|
78
|
+
#define CAIRO_GOBJECT_TYPE_FONT_OPTIONS cairo_gobject_font_options_get_type ()
|
79
|
+
cairo_public GType
|
80
|
+
cairo_gobject_font_options_get_type (void);
|
81
|
+
|
82
|
+
#define CAIRO_GOBJECT_TYPE_RECTANGLE_INT cairo_gobject_rectangle_int_get_type ()
|
83
|
+
cairo_public GType
|
84
|
+
cairo_gobject_rectangle_int_get_type (void);
|
85
|
+
|
86
|
+
#define CAIRO_GOBJECT_TYPE_REGION cairo_gobject_region_get_type ()
|
87
|
+
cairo_public GType
|
88
|
+
cairo_gobject_region_get_type (void);
|
89
|
+
|
90
|
+
/* enums */
|
91
|
+
|
92
|
+
#define CAIRO_GOBJECT_TYPE_STATUS cairo_gobject_status_get_type ()
|
93
|
+
cairo_public GType
|
94
|
+
cairo_gobject_status_get_type (void);
|
95
|
+
|
96
|
+
#define CAIRO_GOBJECT_TYPE_CONTENT cairo_gobject_content_get_type ()
|
97
|
+
cairo_public GType
|
98
|
+
cairo_gobject_content_get_type (void);
|
99
|
+
|
100
|
+
#define CAIRO_GOBJECT_TYPE_OPERATOR cairo_gobject_operator_get_type ()
|
101
|
+
cairo_public GType
|
102
|
+
cairo_gobject_operator_get_type (void);
|
103
|
+
|
104
|
+
#define CAIRO_GOBJECT_TYPE_ANTIALIAS cairo_gobject_antialias_get_type ()
|
105
|
+
cairo_public GType
|
106
|
+
cairo_gobject_antialias_get_type (void);
|
107
|
+
|
108
|
+
#define CAIRO_GOBJECT_TYPE_FILL_RULE cairo_gobject_fill_rule_get_type ()
|
109
|
+
cairo_public GType
|
110
|
+
cairo_gobject_fill_rule_get_type (void);
|
111
|
+
|
112
|
+
#define CAIRO_GOBJECT_TYPE_LINE_CAP cairo_gobject_line_cap_get_type ()
|
113
|
+
cairo_public GType
|
114
|
+
cairo_gobject_line_cap_get_type (void);
|
115
|
+
|
116
|
+
#define CAIRO_GOBJECT_TYPE_LINE_JOIN cairo_gobject_line_join_get_type ()
|
117
|
+
cairo_public GType
|
118
|
+
cairo_gobject_line_join_get_type (void);
|
119
|
+
|
120
|
+
#define CAIRO_GOBJECT_TYPE_CLUSTER_FLAGS cairo_gobject_cluster_flags_get_type ()
|
121
|
+
cairo_public GType
|
122
|
+
cairo_gobject_text_cluster_flags_get_type (void);
|
123
|
+
|
124
|
+
#define CAIRO_GOBJECT_TYPE_FONT_SLANT cairo_gobject_font_slant_get_type ()
|
125
|
+
cairo_public GType
|
126
|
+
cairo_gobject_font_slant_get_type (void);
|
127
|
+
|
128
|
+
#define CAIRO_GOBJECT_TYPE_FONT_WEIGHT cairo_gobject_font_weight_get_type ()
|
129
|
+
cairo_public GType
|
130
|
+
cairo_gobject_font_weight_get_type (void);
|
131
|
+
|
132
|
+
#define CAIRO_GOBJECT_TYPE_SUBPIXEL_ORDER cairo_gobject_subpixel_order_get_type ()
|
133
|
+
cairo_public GType
|
134
|
+
cairo_gobject_subpixel_order_get_type (void);
|
135
|
+
|
136
|
+
#define CAIRO_GOBJECT_TYPE_HINT_STYLE cairo_gobject_hint_style_get_type ()
|
137
|
+
cairo_public GType
|
138
|
+
cairo_gobject_hint_style_get_type (void);
|
139
|
+
|
140
|
+
#define CAIRO_GOBJECT_TYPE_HNT_METRICS cairo_gobject_hint_metrics_get_type ()
|
141
|
+
cairo_public GType
|
142
|
+
cairo_gobject_hint_metrics_get_type (void);
|
143
|
+
|
144
|
+
#define CAIRO_GOBJECT_TYPE_FONT_TYPE cairo_gobject_font_type_get_type ()
|
145
|
+
cairo_public GType
|
146
|
+
cairo_gobject_font_type_get_type (void);
|
147
|
+
|
148
|
+
#define CAIRO_GOBJECT_TYPE_PATH_DATA_TYPE cairo_gobject_path_data_type_get_type ()
|
149
|
+
cairo_public GType
|
150
|
+
cairo_gobject_path_data_type_get_type (void);
|
151
|
+
|
152
|
+
#define CAIRO_GOBJECT_TYPE_DEVICE_TYPE cairo_gobject_device_type_get_type ()
|
153
|
+
cairo_public GType
|
154
|
+
cairo_gobject_device_type_get_type (void);
|
155
|
+
|
156
|
+
#define CAIRO_GOBJECT_TYPE_SURFACE_TYPE cairo_gobject_surface_type_get_type ()
|
157
|
+
cairo_public GType
|
158
|
+
cairo_gobject_surface_type_get_type (void);
|
159
|
+
|
160
|
+
#define CAIRO_GOBJECT_TYPE_FORMAT cairo_gobject_format_get_type ()
|
161
|
+
cairo_public GType
|
162
|
+
cairo_gobject_format_get_type (void);
|
163
|
+
|
164
|
+
#define CAIRO_GOBJECT_TYPE_PATTERN_TYPE cairo_gobject_pattern_type_get_type ()
|
165
|
+
cairo_public GType
|
166
|
+
cairo_gobject_pattern_type_get_type (void);
|
167
|
+
|
168
|
+
#define CAIRO_GOBJECT_TYPE_EXTEND cairo_gobject_extend_get_type ()
|
169
|
+
cairo_public GType
|
170
|
+
cairo_gobject_extend_get_type (void);
|
171
|
+
|
172
|
+
#define CAIRO_GOBJECT_TYPE_FILTER cairo_gobject_filter_get_type ()
|
173
|
+
cairo_public GType
|
174
|
+
cairo_gobject_filter_get_type (void);
|
175
|
+
|
176
|
+
#define CAIRO_GOBJECT_TYPE_REGION_OVERLAP cairo_gobject_region_overlap_get_type ()
|
177
|
+
cairo_public GType
|
178
|
+
cairo_gobject_region_overlap_get_type (void);
|
179
|
+
|
180
|
+
CAIRO_END_DECLS
|
181
|
+
|
182
|
+
#else /* CAIRO_HAS_GOBJECT_FUNCTIONS */
|
183
|
+
# error Cairo was not compiled with support for GObject
|
184
|
+
#endif /* CAIRO_HAS_GOBJECT_FUNCTIONS */
|
185
|
+
|
186
|
+
#endif /* CAIRO_GOBJECT_H */
|