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
@@ -1,56 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::PatternTypeMismatchErrorクラス</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::PatternTypeMismatchErrorクラス</a></h1><!-- RDLabel: "Cairo::PatternTypeMismatchErrorクラス" -->
|
20
|
-
<p>指定した操作に適していないパターンを使おうとしたときに発生し
|
21
|
-
ます。</p>
|
22
|
-
<p>rcairoでは発生しないはずです。</p>
|
23
|
-
<h2><a name="label-1" id="label-1">オブジェクト階層</a></h2><!-- RDLabel: "オブジェクト階層" -->
|
24
|
-
<ul>
|
25
|
-
<li>Object
|
26
|
-
<ul>
|
27
|
-
<li>Exception
|
28
|
-
<ul>
|
29
|
-
<li>StandardError
|
30
|
-
<ul>
|
31
|
-
<li>TypeError
|
32
|
-
<ul>
|
33
|
-
<li>Cairo::PatternTypeMismatchError</li>
|
34
|
-
</ul></li>
|
35
|
-
</ul></li>
|
36
|
-
</ul></li>
|
37
|
-
</ul></li>
|
38
|
-
</ul>
|
39
|
-
<h2><a name="label-2" id="label-2">参考</a></h2><!-- RDLabel: "参考" -->
|
40
|
-
<ul>
|
41
|
-
<li><a href="index.html#label-0">索引</a></li>
|
42
|
-
</ul>
|
43
|
-
<h2><a name="label-3" id="label-3">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
44
|
-
<ul>
|
45
|
-
<li>2007-05-21: kou: スタート。</li>
|
46
|
-
</ul>
|
47
|
-
|
48
|
-
<div class="footer">
|
49
|
-
<ul>
|
50
|
-
<li><a href="./">索引</a></li>
|
51
|
-
</ul>
|
52
|
-
|
53
|
-
</div>
|
54
|
-
</body>
|
55
|
-
|
56
|
-
</html>
|
data/doc/ja/cairo-pattern.html
DELETED
@@ -1,128 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::Patternクラス</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::Patternクラス</a></h1><!-- RDLabel: "Cairo::Patternクラス" -->
|
20
|
-
<p>サーフェス上に描画するときのソースを表します。ソースの種類に
|
21
|
-
よっていくつかサブクラスがあります。例えば、
|
22
|
-
<a href="cairo-solid-pattern.html">Cairo::SolidPattern</a>は単色のパターンを作ります。</p>
|
23
|
-
<h2><a name="label-1" id="label-1">オブジェクト階層</a></h2><!-- RDLabel: "オブジェクト階層" -->
|
24
|
-
<ul>
|
25
|
-
<li>Object
|
26
|
-
<ul>
|
27
|
-
<li>Cairo::Pattern</li>
|
28
|
-
</ul></li>
|
29
|
-
</ul>
|
30
|
-
<h2><a name="label-2" id="label-2">クラスメソッド</a></h2><!-- RDLabel: "クラスメソッド" -->
|
31
|
-
<dl>
|
32
|
-
<dt><a name="label-3" id="label-3"><code>Cairo::Pattern.new</code></a></dt><!-- RDLabel: "Cairo::Pattern.new" -->
|
33
|
-
<dd>
|
34
|
-
使えません。</dd>
|
35
|
-
</dl>
|
36
|
-
<h2><a name="label-4" id="label-4">インタンスメソッド</a></h2><!-- RDLabel: "インタンスメソッド" -->
|
37
|
-
<dl>
|
38
|
-
<dt><a name="label-5" id="label-5"><code>__extend__</code></a></dt><!-- RDLabel: "__extend__" -->
|
39
|
-
<dd>
|
40
|
-
Object#extendの別名です。</dd>
|
41
|
-
<dt><a name="label-6" id="label-6"><code>extend</code></a></dt><!-- RDLabel: "extend" -->
|
42
|
-
<dd>
|
43
|
-
現在の引き延ばしモードを返します。各引き延ばしモードの意
|
44
|
-
味の詳細は<a href="cairo-extend.html">Cairo::Extend</a>を見てください。
|
45
|
-
<ul>
|
46
|
-
<li>戻り値: <a href="cairo-extend.html">Cairo::Extend</a>に定義されている定数のどれか。</li>
|
47
|
-
</ul></dd>
|
48
|
-
<dt><a name="label-7" id="label-7"><code>extend=(<var>extend</var>)</code></a></dt><!-- RDLabel: "extend=" -->
|
49
|
-
<dt><a name="label-8" id="label-8"><code>set_extend(<var>extend</var>)</code></a></dt><!-- RDLabel: "set_extend" -->
|
50
|
-
<dd>
|
51
|
-
パターンの外側の領域を描画するときに使うモードを指定し
|
52
|
-
ます。各引き延ばしモードの意味の詳細は<a href="cairo-extend.html">Cairo::Extend</a>を見
|
53
|
-
てください。
|
54
|
-
<ul>
|
55
|
-
<li>extend: :noneや:repeatなど<a href="cairo-extend.html">Cairo::Extend</a>に定義
|
56
|
-
されている定数名と同じもの。大文字小文字は関
|
57
|
-
係ありません。また、シンボルではなくて文字列で
|
58
|
-
"none"のように指定することもできます。もちろん、
|
59
|
-
<a href="cairo-extend.html">Cairo::Extend</a>に定義されている定数を指定するこ
|
60
|
-
ともできます。</li>
|
61
|
-
</ul></dd>
|
62
|
-
<dt><a name="label-9" id="label-9"><code>filter</code></a></dt><!-- RDLabel: "filter" -->
|
63
|
-
<dd>
|
64
|
-
現在のフィルタを返します。各フィルタの詳細は
|
65
|
-
<a href="cairo-filter.html">Cairo::Filter</a>を見てください。
|
66
|
-
<ul>
|
67
|
-
<li>戻り値: パターンの大きさを変えるときに使う現在のフィ
|
68
|
-
ルタ。</li>
|
69
|
-
</ul></dd>
|
70
|
-
<dt><a name="label-10" id="label-10"><code>filter=(<var>filter</var>)</code></a></dt><!-- RDLabel: "filter=" -->
|
71
|
-
<dt><a name="label-11" id="label-11"><code>set_filter(<var>filter</var>)</code></a></dt><!-- RDLabel: "set_filter" -->
|
72
|
-
<dd>
|
73
|
-
パターンの大きさを変えるときに使う現在のフィルタを設定
|
74
|
-
します。各フィルタの詳細は<a href="cairo-filter.html">Cairo::Filter</a>を見てください。
|
75
|
-
<ul>
|
76
|
-
<li>filter: :fastや:gaussianなど<a href="cairo-filter.html">Cairo::Filter</a>に定義
|
77
|
-
されている定数名と同じもの。大文字小文字は関
|
78
|
-
係ありません。また、シンボルではなくて文字列で
|
79
|
-
"fast"のように指定することもできます。もちろん、
|
80
|
-
<a href="cairo-filter.html">Cairo::Filter</a>に定義されている定数を指定するこ
|
81
|
-
ともできます。</li>
|
82
|
-
</ul></dd>
|
83
|
-
<dt><a name="label-12" id="label-12"><code>matrix</code></a></dt><!-- RDLabel: "matrix" -->
|
84
|
-
<dd>
|
85
|
-
パターンの変換行列を返します。
|
86
|
-
<ul>
|
87
|
-
<li>戻り値: <a href="cairo-matrix.html">Cairo::Matrix</a>オブジェクト。</li>
|
88
|
-
</ul></dd>
|
89
|
-
<dt><a name="label-13" id="label-13"><code>matrix=(<var>matrix</var>)</code></a></dt><!-- RDLabel: "matrix=" -->
|
90
|
-
<dt><a name="label-14" id="label-14"><code>set_matrix(<var>matrix</var>)</code></a></dt><!-- RDLabel: "set_matrix" -->
|
91
|
-
<dd>
|
92
|
-
<p>パターンの変換行列を指定します。この行列はユーザ空間か
|
93
|
-
らパターン空間に変換するときに使います。</p>
|
94
|
-
<p>パターンを作ったときはいつも単位行列です。これは最初は
|
95
|
-
パターン空間はユーザ空間と同じであるということです。</p>
|
96
|
-
<p>重要: ユーザ空間からパターン空間への変換行列の方向に注
|
97
|
-
意してください。これは、パターンからユーザ空間(そして装
|
98
|
-
置空間)という流れの場合、座標はパターン行列の逆行列で
|
99
|
-
変換されるということです。</p>
|
100
|
-
<p>例えば、2倍の大きさのパターンを作りたいとしたら、以下が
|
101
|
-
正しいコードです。</p>
|
102
|
-
<pre>pattern.matrix = Cairo::Matrix.scale(0.5, 0.5)</pre>
|
103
|
-
<p>一方、上記のコードで0.5ではなく2.0を使うとパターンは半
|
104
|
-
分の大きさになります。</p>
|
105
|
-
<p><a href="cairo-context.html#label-104">Cairo::Context#set_source</a>のユーザ空間ロック動作の議論に
|
106
|
-
も注意してください。</p>
|
107
|
-
<ul>
|
108
|
-
<li>matrix: <a href="cairo-matrix.html">Cairo::Matrix</a>オブジェクト。</li>
|
109
|
-
</ul></dd>
|
110
|
-
</dl>
|
111
|
-
<h2><a name="label-15" id="label-15">参考</a></h2><!-- RDLabel: "参考" -->
|
112
|
-
<ul>
|
113
|
-
<li><a href="index.html#label-0">索引</a></li>
|
114
|
-
</ul>
|
115
|
-
<h2><a name="label-16" id="label-16">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
116
|
-
<ul>
|
117
|
-
<li>2007-05-22: kou: スタート。</li>
|
118
|
-
</ul>
|
119
|
-
|
120
|
-
<div class="footer">
|
121
|
-
<ul>
|
122
|
-
<li><a href="./">索引</a></li>
|
123
|
-
</ul>
|
124
|
-
|
125
|
-
</div>
|
126
|
-
</body>
|
127
|
-
|
128
|
-
</html>
|
@@ -1,86 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::PDFSurfaceクラス</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::PDFSurfaceクラス</a></h1><!-- RDLabel: "Cairo::PDFSurfaceクラス" -->
|
20
|
-
<p>PDFを生成するサーフェスです。</p>
|
21
|
-
<h2><a name="label-1" id="label-1">オブジェクト階層</a></h2><!-- RDLabel: "オブジェクト階層" -->
|
22
|
-
<ul>
|
23
|
-
<li>Object
|
24
|
-
<ul>
|
25
|
-
<li><a href="cairo-surface.html">Cairo::Surface</a>
|
26
|
-
<ul>
|
27
|
-
<li>Cairo::PDFSurface</li>
|
28
|
-
</ul></li>
|
29
|
-
</ul></li>
|
30
|
-
</ul>
|
31
|
-
<h2><a name="label-2" id="label-2">クラスメソッド</a></h2><!-- RDLabel: "クラスメソッド" -->
|
32
|
-
<dl>
|
33
|
-
<dt><a name="label-3" id="label-3"><code>Cairo::PDFSurface.new(<var>stream</var>, <var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "Cairo::PDFSurface.new" -->
|
34
|
-
<dt><a name="label-4" id="label-4"><code>Cairo::PDFSurface.new(<var>filename</var>, <var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "Cairo::PDFSurface.new" -->
|
35
|
-
<dd>
|
36
|
-
<p>ポイントで指定されたサイズのPDF用サーフェスを生成します。</p>
|
37
|
-
<p>第1引数に<code>write</code>メソッドを持ったオブジェクトを指定
|
38
|
-
した場合はPDF形式のデータが順次<code>stream.write</code>で書き
|
39
|
-
出されます。</p>
|
40
|
-
<p><code>write</code>メソッドを持っていない場合はファイル名として
|
41
|
-
扱われます。PDF形式のデータはファイル名<var>filename</var>の
|
42
|
-
ファイルに出力されます。</p>
|
43
|
-
<ul>
|
44
|
-
<li>stream: <code>write</code>メソッドを持つオブジェクト。</li>
|
45
|
-
<li>filename: 結果を出力するファイル名。</li>
|
46
|
-
<li>width_in_points: ポイントで指定した幅。(1ポイント =
|
47
|
-
1/72.0インチ)</li>
|
48
|
-
<li>height_in_points: ポイントで指定した高さ。(1ポイント =
|
49
|
-
1/72.0インチ)</li>
|
50
|
-
<li>戻り値: 生成した<a href="cairo-pdf-surface.html">Cairo::PDFSurface</a>オブジェクト。</li>
|
51
|
-
</ul></dd>
|
52
|
-
</dl>
|
53
|
-
<h2><a name="label-5" id="label-5">インタンスメソッド</a></h2><!-- RDLabel: "インタンスメソッド" -->
|
54
|
-
<dl>
|
55
|
-
<dt><a name="label-6" id="label-6"><code>set_size(<var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "set_size" -->
|
56
|
-
<dd>
|
57
|
-
<p>現在(とそれ以降の)ページのサイズを変更します。</p>
|
58
|
-
<p>現在のページに何も描画していないときにだけ呼び出せます。
|
59
|
-
単純な方法は、サーフェスを作成した直後か、
|
60
|
-
<a href="cairo-context.html#label-109">Cairo::Context#show_page</a>か<a href="cairo-context.html#label-21">Cairo::Context#copy_page</a>でペー
|
61
|
-
ジを完了した直後に呼び出すことです。</p>
|
62
|
-
<ul>
|
63
|
-
<li>width_in_points: ポイントで指定した新しい幅。(1ポイ
|
64
|
-
ント = 1/72.0インチ)</li>
|
65
|
-
<li>height_in_points: ポイントで指定した新しい高さ。(1ポ
|
66
|
-
イント = 1/72.0インチ)</li>
|
67
|
-
</ul></dd>
|
68
|
-
</dl>
|
69
|
-
<h2><a name="label-7" id="label-7">参考</a></h2><!-- RDLabel: "参考" -->
|
70
|
-
<ul>
|
71
|
-
<li><a href="index.html#label-0">索引</a></li>
|
72
|
-
</ul>
|
73
|
-
<h2><a name="label-8" id="label-8">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
74
|
-
<ul>
|
75
|
-
<li>2007-05-22: kou: スタート。</li>
|
76
|
-
</ul>
|
77
|
-
|
78
|
-
<div class="footer">
|
79
|
-
<ul>
|
80
|
-
<li><a href="./">索引</a></li>
|
81
|
-
</ul>
|
82
|
-
|
83
|
-
</div>
|
84
|
-
</body>
|
85
|
-
|
86
|
-
</html>
|
data/doc/ja/cairo-point.html
DELETED
@@ -1,90 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::Pointクラス</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::Pointクラス</a></h1><!-- RDLabel: "Cairo::Pointクラス" -->
|
20
|
-
<p>点を表します。</p>
|
21
|
-
<p>rcairoの拡張です。</p>
|
22
|
-
<h2><a name="label-1" id="label-1">オブジェクト階層</a></h2><!-- RDLabel: "オブジェクト階層" -->
|
23
|
-
<ul>
|
24
|
-
<li>Object
|
25
|
-
<ul>
|
26
|
-
<li>Cairo::Point</li>
|
27
|
-
</ul></li>
|
28
|
-
</ul>
|
29
|
-
<h2><a name="label-2" id="label-2">クラスメソッド</a></h2><!-- RDLabel: "クラスメソッド" -->
|
30
|
-
<dl>
|
31
|
-
<dt><a name="label-3" id="label-3"><code>Cairo::Point.new(<var>x</var>, <var>y</var>)</code></a></dt><!-- RDLabel: "Cairo::Point.new" -->
|
32
|
-
<dd>
|
33
|
-
点(<var>x</var>, <var>y</var>)を生成します。
|
34
|
-
<ul>
|
35
|
-
<li>x: 点のX座標</li>
|
36
|
-
<li>y: 点のY座標</li>
|
37
|
-
<li>戻り値: 点。</li>
|
38
|
-
</ul></dd>
|
39
|
-
</dl>
|
40
|
-
<h2><a name="label-4" id="label-4">インタンスメソッド</a></h2><!-- RDLabel: "インタンスメソッド" -->
|
41
|
-
<dl>
|
42
|
-
<dt><a name="label-5" id="label-5"><code>distance(<var>other</var>)</code></a></dt><!-- RDLabel: "distance" -->
|
43
|
-
<dd>
|
44
|
-
<var>self</var>と<var>other</var>との距離を計算します。
|
45
|
-
<ul>
|
46
|
-
<li>other: <a href="cairo-point.html">Cairo::Point</a>オブジェクト</li>
|
47
|
-
<li>戻り値: 距離。</li>
|
48
|
-
</ul></dd>
|
49
|
-
<dt><a name="label-6" id="label-6"><code>to_a</code></a></dt><!-- RDLabel: "to_a" -->
|
50
|
-
<dt><a name="label-7" id="label-7"><code>to_ary</code></a></dt><!-- RDLabel: "to_ary" -->
|
51
|
-
<dd>
|
52
|
-
配列貸します。
|
53
|
-
<ul>
|
54
|
-
<li>戻り値: <code>[x, y]</code>
|
55
|
-
<ul>
|
56
|
-
<li>x: 点のX座標</li>
|
57
|
-
<li>y: 点のY座標</li>
|
58
|
-
</ul></li>
|
59
|
-
</ul></dd>
|
60
|
-
<dt><a name="label-8" id="label-8"><code>x</code></a></dt><!-- RDLabel: "x" -->
|
61
|
-
<dd>
|
62
|
-
点のX座標を返します。
|
63
|
-
<ul>
|
64
|
-
<li>戻り値: X座標。</li>
|
65
|
-
</ul></dd>
|
66
|
-
<dt><a name="label-9" id="label-9"><code>y</code></a></dt><!-- RDLabel: "y" -->
|
67
|
-
<dd>
|
68
|
-
点のY座標を返します。
|
69
|
-
<ul>
|
70
|
-
<li>戻り値: Y座標。</li>
|
71
|
-
</ul></dd>
|
72
|
-
</dl>
|
73
|
-
<h2><a name="label-10" id="label-10">参考</a></h2><!-- RDLabel: "参考" -->
|
74
|
-
<ul>
|
75
|
-
<li><a href="index.html#label-0">索引</a></li>
|
76
|
-
</ul>
|
77
|
-
<h2><a name="label-11" id="label-11">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
78
|
-
<ul>
|
79
|
-
<li>2007-05-22: kou: スタート。</li>
|
80
|
-
</ul>
|
81
|
-
|
82
|
-
<div class="footer">
|
83
|
-
<ul>
|
84
|
-
<li><a href="./">索引</a></li>
|
85
|
-
</ul>
|
86
|
-
|
87
|
-
</div>
|
88
|
-
</body>
|
89
|
-
|
90
|
-
</html>
|
data/doc/ja/cairo-ps-level.html
DELETED
@@ -1,62 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::PSLevelモジュール</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::PSLevelモジュール</a></h1><!-- RDLabel: "Cairo::PSLevelモジュール" -->
|
20
|
-
<p><em>Since 1.6</em>: 生成するPostScriptファイルが従うPostScript
|
21
|
-
言語リファレンスの言語レベルを表現します。</p>
|
22
|
-
<h2><a name="label-1" id="label-1">モジュール関数</a></h2><!-- RDLabel: "モジュール関数" -->
|
23
|
-
<dl>
|
24
|
-
<dt><a name="label-2" id="label-2"><code>Cairo::PSLevel.list</code></a></dt><!-- RDLabel: "Cairo::PSLevel.list" -->
|
25
|
-
<dd>
|
26
|
-
対応しているレベルの配列を返します。
|
27
|
-
<a href="cairo-ps-surface.html#label-13">Cairo::PSSurface#restrict_to_level</a>を見てください。
|
28
|
-
<ul>
|
29
|
-
<li>戻り値: 対応しているレベルの配列</li>
|
30
|
-
</ul></dd>
|
31
|
-
<dt><a name="label-3" id="label-3"><code>Cairo::PSLevel.names</code></a></dt><!-- RDLabel: "Cairo::PSLevel.names" -->
|
32
|
-
<dd>
|
33
|
-
<a href="cairo-ps-level.html#label-2">Cairo::PSLevel.list</a>が返すレベルのそれぞれを文字列表現に
|
34
|
-
した配列を返します。
|
35
|
-
<ul>
|
36
|
-
<li>戻り値: 対応しているレベルの文字列表現の配列</li>
|
37
|
-
</ul></dd>
|
38
|
-
</dl>
|
39
|
-
<h2><a name="label-4" id="label-4">定数</a></h2><!-- RDLabel: "定数" -->
|
40
|
-
<dl>
|
41
|
-
<dt><a name="label-5" id="label-5"><code>LEVEL_2</code></a></dt><!-- RDLabel: "LEVEL_2" -->
|
42
|
-
<dt><a name="label-6" id="label-6"><code>LEVEL_3</code></a></dt><!-- RDLabel: "LEVEL_3" -->
|
43
|
-
</dl>
|
44
|
-
<h2><a name="label-7" id="label-7">参考</a></h2><!-- RDLabel: "参考" -->
|
45
|
-
<ul>
|
46
|
-
<li><a href="index.html#label-0">索引</a></li>
|
47
|
-
<li><a href="cairo-ps-surface.html">Cairo::PSSurface</a></li>
|
48
|
-
</ul>
|
49
|
-
<h2><a name="label-8" id="label-8">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
50
|
-
<ul>
|
51
|
-
<li>2008-04-11: kou: スタート。</li>
|
52
|
-
</ul>
|
53
|
-
|
54
|
-
<div class="footer">
|
55
|
-
<ul>
|
56
|
-
<li><a href="./">索引</a></li>
|
57
|
-
</ul>
|
58
|
-
|
59
|
-
</div>
|
60
|
-
</body>
|
61
|
-
|
62
|
-
</html>
|
@@ -1,214 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
-
<head>
|
7
|
-
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
8
|
-
<title>Cairo::PSSurfaceクラス</title>
|
9
|
-
<link href="../doc.css" type="text/css" rel="stylesheet" />
|
10
|
-
</head>
|
11
|
-
<div class="footer">
|
12
|
-
<ul>
|
13
|
-
<li><a href="./">索引</a></li>
|
14
|
-
</ul>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
</body>
|
18
|
-
|
19
|
-
<h1><a name="label-0" id="label-0">Cairo::PSSurfaceクラス</a></h1><!-- RDLabel: "Cairo::PSSurfaceクラス" -->
|
20
|
-
<p>PostScriptを生成するサーフェスです。</p>
|
21
|
-
<h2><a name="label-1" id="label-1">オブジェクト階層</a></h2><!-- RDLabel: "オブジェクト階層" -->
|
22
|
-
<ul>
|
23
|
-
<li>Object
|
24
|
-
<ul>
|
25
|
-
<li><a href="cairo-surface.html">Cairo::Surface</a>
|
26
|
-
<ul>
|
27
|
-
<li>Cairo::PSSurface</li>
|
28
|
-
</ul></li>
|
29
|
-
</ul></li>
|
30
|
-
</ul>
|
31
|
-
<h2><a name="label-2" id="label-2">クラスメソッド</a></h2><!-- RDLabel: "クラスメソッド" -->
|
32
|
-
<dl>
|
33
|
-
<dt><a name="label-3" id="label-3"><code>Cairo::PSSurface.new(<var>stream</var>, <var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "Cairo::PSSurface.new" -->
|
34
|
-
<dt><a name="label-4" id="label-4"><code>Cairo::PSSurface.new(<var>filename</var>, <var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "Cairo::PSSurface.new" -->
|
35
|
-
<dd>
|
36
|
-
<p>ポイントで指定されたサイズのPostScript用サーフェスを生成
|
37
|
-
します。</p>
|
38
|
-
<p>第1引数に<code>write</code>メソッドを持ったオブジェクトを指定
|
39
|
-
した場合はPostScript形式のデータが順次
|
40
|
-
<code>stream.write</code>で書き出されます。</p>
|
41
|
-
<p><code>write</code>メソッドを持っていない場合はファイル名として
|
42
|
-
扱われます。PostScript形式のデータはファイル名
|
43
|
-
<var>filename</var>のファイルに出力されます。</p>
|
44
|
-
<p>各ページのサイズは変更できます。
|
45
|
-
Cairoi::PSSurface#set_sizeを見てください。</p>
|
46
|
-
<ul>
|
47
|
-
<li>stream: <code>write</code>メソッドを持つオブジェクト。</li>
|
48
|
-
<li>filename: 結果を出力するファイル名。</li>
|
49
|
-
<li>width_in_points: ポイントで指定した幅。(1ポイント =
|
50
|
-
1/72.0インチ)</li>
|
51
|
-
<li>height_in_points: ポイントで指定した高さ。(1ポイント =
|
52
|
-
1/72.0インチ)</li>
|
53
|
-
<li>戻り値: 生成した<a href="cairo-ps-surface.html">Cairo::PSSurface</a>オブジェクト。</li>
|
54
|
-
</ul></dd>
|
55
|
-
</dl>
|
56
|
-
<h2><a name="label-5" id="label-5">インタンスメソッド</a></h2><!-- RDLabel: "インタンスメソッド" -->
|
57
|
-
<dl>
|
58
|
-
<dt><a name="label-6" id="label-6"><code>dsc_begin_page_setup</code></a></dt><!-- RDLabel: "dsc_begin_page_setup" -->
|
59
|
-
<dd>
|
60
|
-
<p>以降の<a href="cairo-ps-surface.html#label-8">Cairo::PSSurface#dsc_comment</a>呼び出しが直接
|
61
|
-
PageSetupセクションのコメントになることを示します。</p>
|
62
|
-
<p>このメソッドは最初のページにだけ必要です。
|
63
|
-
ただし、全ての<a href="cairo-ps-surface.html#label-7">Cairo::PSSurface#dsc_begin_setup</a>の後で、ま
|
64
|
-
だなにも描画されていない場合だけ呼び出してください。</p>
|
65
|
-
<p>詳細は<a href="cairo-ps-surface.html#label-8">Cairo::PSSurface#dsc_comment</a>を見てください。</p></dd>
|
66
|
-
<dt><a name="label-7" id="label-7"><code>dsc_begin_setup</code></a></dt><!-- RDLabel: "dsc_begin_setup" -->
|
67
|
-
<dd>
|
68
|
-
<p>以降の<a href="cairo-ps-surface.html#label-8">Cairo::PSSurface#dsc_comment</a>呼び出しが直接
|
69
|
-
Setupセクションのコメントになることを示します。</p>
|
70
|
-
<p>このメソッドは多くても一度だけ呼び出せます。また、全て
|
71
|
-
の<a href="cairo-ps-surface.html#label-6">Cairo::PSSurface#dsc_begin_page_setup</a>呼び出しよりも前
|
72
|
-
で、さらにまだなにも描画されていない場合でなければいけ
|
73
|
-
ません。</p>
|
74
|
-
<p>詳細は<a href="cairo-ps-surface.html#label-8">Cairo::PSSurface#dsc_comment</a>を見てください。</p></dd>
|
75
|
-
<dt><a name="label-8" id="label-8"><code>dsc_comment(<var>comment</var>)</code></a></dt><!-- RDLabel: "dsc_comment" -->
|
76
|
-
<dd>
|
77
|
-
<p>PostScriptの出力にコメントを発行します。</p>
|
78
|
-
<p>コメントはPostScript Language Document Structuring
|
79
|
-
Conventions (DSC)を従う必要があります。利用可能なコメン
|
80
|
-
トとその意味はマニュアルを見てください。特に、
|
81
|
-
%%IncludeFeatureコメントはプリンタの機能を制御する装
|
82
|
-
置に依存しない方法です。PostScript Printer Description
|
83
|
-
(PPD)ファイルの仕様書も役に立つリファレンスです。</p>
|
84
|
-
<p>コメントはパーセント(%)で始まり、最大長が(パーセントを
|
85
|
-
含めて)255を越えないようにしなくてはいけません。どちら
|
86
|
-
かの条件が破られたら<a href="cairo-invalid-dsc-comment-error.html">Cairo::InvalidDscCommentError</a>が発生
|
87
|
-
します。このメソッドはこのふたつの条件以外の詳細なコメ
|
88
|
-
ントの仕様については強制しません。</p>
|
89
|
-
<p>コメントには改行をつけないでください。</p>
|
90
|
-
<p>DSCは異なったセクションに詳細なコメントを入れることがで
|
91
|
-
きると述べています。このメソッドは3つのセクションに発行
|
92
|
-
できます。ヘッダとSetupセクションとPageSetupセクション
|
93
|
-
です。最初の2つのセクションに現れたコメントは文書全体に
|
94
|
-
適用されます。BeginPageSetupセクションに現れたコメント
|
95
|
-
はひとつのページにだけ適用されます。</p>
|
96
|
-
<p>ヘッダセクションにコメントを入れるには、サーフェスが作
|
97
|
-
られて<a href="cairo-ps-surface.html">Cairo::PSSurface#begin_setup</a>を呼ぶ前にこのメソッ
|
98
|
-
ドを使わなければいけません。</p>
|
99
|
-
<p>Setupセクションにコメントを入れるには、
|
100
|
-
<a href="cairo-ps-surface.html">Cairo::PSSurface#begin_setup</a>を呼んだあとで、
|
101
|
-
<a href="cairo-ps-surface.html">Cairo::PSSurface#begin_page_setup</a>を呼ぶ前にこのメソッ
|
102
|
-
ドを使わなければいけません。</p>
|
103
|
-
<p>PageSetupセクションにコメントを入れるには、
|
104
|
-
<a href="cairo-ps-surface.html">Cairo::PSSurface#begin_page_setup</a>を呼んだあとでこのメソッ
|
105
|
-
ドを使わなければいけません。</p>
|
106
|
-
<p><a href="cairo-ps-surface.html">Cairo::PSSurface#begin_page_setup</a>が必要なのは最初のペー
|
107
|
-
ジだけだということに注意してください。
|
108
|
-
<a href="cairo-context.html#label-109">Cairo::Context#show_page</a>と<a href="cairo-context.html#label-21">Cairo::Context#copy_page</a>の後
|
109
|
-
に呼び出すということは、明示的なコメントを現在のページ
|
110
|
-
のPageSetupに入れるということです。しかし、呼び出しコー
|
111
|
-
ドをシンプルにする一貫性のために、各ページの始めにこの
|
112
|
-
メソッドを呼び出しても害はありません。</p>
|
113
|
-
<p>最後の注意です。cairoは自動的にいくつかのコメントを生成
|
114
|
-
します。アプリケーションは手動で以下のコメントを生成し
|
115
|
-
ないでください。</p>
|
116
|
-
<p>ヘッダセクション: %!PS-Adobe-3.0, %%Creator, %%CreationDate, %%Pages,
|
117
|
-
%%BoundingBox, %%DocumentData, %%LanguageLevel, %%EndComments.</p>
|
118
|
-
<p>Setupセクション: %%BeginSetup, %%EndSetup</p>
|
119
|
-
<p>PageSetupセクション: %%BeginPageSetup, %%PageBoundingBox,
|
120
|
-
%%EndPageSetup.</p>
|
121
|
-
<p>他のセクション: %%BeginProlog, %%EndProlog, %%Page, %%Trailer, %%EOF</p>
|
122
|
-
<p>以下はこのメソッドをどのように使うかを示す例です。</p>
|
123
|
-
<pre>surface = ((<Cairo::PSSurface.new|cairo-ps-surface.rd/Cairo::PSSurface.new>))(filename, width, height)
|
124
|
-
...
|
125
|
-
surface.dsc_comment("%%Title: My excellent document")
|
126
|
-
surface.dsc_comment("%%Copyright: Copyright (C) 2006 ((<Cairo|cairo.rd/module Cairo>)) Lover")
|
127
|
-
...
|
128
|
-
surface.dsc_begin_setup
|
129
|
-
surface.dsc_comment("%%IncludeFeature: *MediaColor White")
|
130
|
-
...
|
131
|
-
surface.dsc_begin_page_setup
|
132
|
-
surface.dsc_comment("%%IncludeFeature: *PageSize A3")
|
133
|
-
surface.dsc_comment("%%IncludeFeature: *InputSlot LargeCapacity")
|
134
|
-
surface.dsc_comment("%%IncludeFeature: *MediaType Glossy")
|
135
|
-
surface.dsc_comment("%%IncludeFeature: *MediaColor Blue")
|
136
|
-
... ここで最初のページを描く ..
|
137
|
-
cr.show_page
|
138
|
-
...
|
139
|
-
surface.dsc_comment("%%IncludeFeature: *PageSize A5")
|
140
|
-
...</pre>
|
141
|
-
<ul>
|
142
|
-
<li>comment: PostScriptの出力に発行するコメント文字列。</li>
|
143
|
-
</ul></dd>
|
144
|
-
<dt><a name="label-9" id="label-9"><code>set_size(<var>width_in_points</var>, <var>height_in_points</var>)</code></a></dt><!-- RDLabel: "set_size" -->
|
145
|
-
<dd>
|
146
|
-
<p>現在(とそれ以降の)ページのサイズを変更します。</p>
|
147
|
-
<p>現在のページに何も描画していないときにだけ呼び出せます。
|
148
|
-
単純な方法は、サーフェスを作成した直後か、
|
149
|
-
<a href="cairo-context.html#label-109">Cairo::Context#show_page</a>か<a href="cairo-context.html#label-21">Cairo::Context#copy_page</a>でペー
|
150
|
-
ジを完了した直後に呼び出すことです。</p>
|
151
|
-
<ul>
|
152
|
-
<li>width_in_points: ポイントで指定した新しい幅。(1ポイ
|
153
|
-
ント = 1/72.0インチ)</li>
|
154
|
-
<li>height_in_points: ポイントで指定した新しい高さ。(1ポ
|
155
|
-
イント = 1/72.0インチ)</li>
|
156
|
-
</ul></dd>
|
157
|
-
<dt><a name="label-10" id="label-10"><code>eps?</code></a></dt><!-- RDLabel: "eps?" -->
|
158
|
-
<dd>
|
159
|
-
<em>Since 1.6</em>: このPostScriptサーフェスがEncapsulated
|
160
|
-
PostScriptを出力するかどうかを返します。
|
161
|
-
<ul>
|
162
|
-
<li>戻り値: EPSフォーマットのPostScriptを出力する場合はtrue</li>
|
163
|
-
</ul></dd>
|
164
|
-
<dt><a name="label-11" id="label-11"><code>eps=(<var>eps</var>)</code></a></dt><!-- RDLabel: "eps=" -->
|
165
|
-
<dd>
|
166
|
-
<p><em>Since 1.6</em>: <var>eps</var>がtrueならこのPostScriptサーフェ
|
167
|
-
スはEncapsulated PostScriptを出力します。</p>
|
168
|
-
<p>このメソッドは現在のページで実行するすべての描画操作よ
|
169
|
-
りも前に呼び出してください。これを行うもっとも簡単な方
|
170
|
-
法はサーフェスを作った直後にこのメソッドを呼び出すこと
|
171
|
-
です。Encapsulated PostScriptファイルは1ページしか含む
|
172
|
-
ことができません。</p>
|
173
|
-
<ul>
|
174
|
-
<li>戻り値: <var>eps</var></li>
|
175
|
-
</ul></dd>
|
176
|
-
<dt><a name="label-12" id="label-12"><code>set_eps(<var>eps</var>)</code></a></dt><!-- RDLabel: "set_eps" -->
|
177
|
-
<dd>
|
178
|
-
<em>Since 1.6</em>: <a href="cairo-ps-surface.html#label-11">Cairo::PSSurface#eps=</a>と同じです。
|
179
|
-
<ul>
|
180
|
-
<li>戻り値: self</li>
|
181
|
-
</ul></dd>
|
182
|
-
<dt><a name="label-13" id="label-13"><code>restrict_to_level(<var>level</var>)</code></a></dt><!-- RDLabel: "restrict_to_level" -->
|
183
|
-
<dd>
|
184
|
-
<p><em>Since 1.6</em>: 生成するPostScriptファイルのレベルを制
|
185
|
-
限します。ここで使用できるレベルの一覧は
|
186
|
-
<a href="cairo-ps-level.html">Cairo::PSLevel#list</a>で得られます。</p>
|
187
|
-
<p>このメソッドはこのサーフェスへ実行するすべての描画操作
|
188
|
-
よりも前にだけ呼び出してください。これを実行するもっと
|
189
|
-
も簡単な方法はサーフェスを作った直後にこのメソッドを呼
|
190
|
-
び出すことです。</p>
|
191
|
-
<ul>
|
192
|
-
<li>level: PostScriptのレベル(<a href="cairo-ps-level.html">Cairo::PSLevel</a>)</li>
|
193
|
-
</ul></dd>
|
194
|
-
</dl>
|
195
|
-
<h2><a name="label-14" id="label-14">参考</a></h2><!-- RDLabel: "参考" -->
|
196
|
-
<ul>
|
197
|
-
<li><a href="index.html#label-0">索引</a></li>
|
198
|
-
<li><a href="cairo-ps-level.html">Cairo::PSLevel</a></li>
|
199
|
-
</ul>
|
200
|
-
<h2><a name="label-15" id="label-15">変更履歴</a></h2><!-- RDLabel: "変更履歴" -->
|
201
|
-
<ul>
|
202
|
-
<li>2008-04-11: kou: 1.6対応。</li>
|
203
|
-
<li>2007-05-22: kou: スタート。</li>
|
204
|
-
</ul>
|
205
|
-
|
206
|
-
<div class="footer">
|
207
|
-
<ul>
|
208
|
-
<li><a href="./">索引</a></li>
|
209
|
-
</ul>
|
210
|
-
|
211
|
-
</div>
|
212
|
-
</body>
|
213
|
-
|
214
|
-
</html>
|