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
@@ -0,0 +1,291 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Win32 Surfaces</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
|
+
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
|
+
<link rel="prev" href="cairo-PostScript-Surfaces.html" title="PostScript Surfaces">
|
10
|
+
<link rel="next" href="cairo-SVG-Surfaces.html" title="SVG Surfaces">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="cairo-PostScript-Surfaces.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
21
|
+
<td><a accesskey="n" href="cairo-SVG-Surfaces.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#cairo-Win32-Surfaces.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#cairo-Win32-Surfaces.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry" title="Win32 Surfaces">
|
30
|
+
<a name="cairo-Win32-Surfaces"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="cairo-Win32-Surfaces.top_of_page"></a>Win32 Surfaces</span></h2>
|
34
|
+
<p>Win32 Surfaces — Microsoft Windows surface support</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv" title="Synopsis">
|
39
|
+
<a name="cairo-Win32-Surfaces.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">#define <a class="link" href="cairo-Win32-Surfaces.html#CAIRO-HAS-WIN32-SURFACE:CAPS" title="CAIRO_HAS_WIN32_SURFACE">CAIRO_HAS_WIN32_SURFACE</a>
|
41
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create" title="cairo_win32_surface_create ()">cairo_win32_surface_create</a> (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);
|
42
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib" title="cairo_win32_surface_create_with_dib ()">cairo_win32_surface_create_with_dib</a> (<em class="parameter"><code><a class="link" href="cairo-Image-Surfaces.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> format</code></em>,
|
43
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
44
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
45
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-ddb" title="cairo_win32_surface_create_with_ddb ()">cairo_win32_surface_create_with_ddb</a> (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>,
|
46
|
+
<em class="parameter"><code><a class="link" href="cairo-Image-Surfaces.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> format</code></em>,
|
47
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
48
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
49
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create" title="cairo_win32_printing_surface_create ()">cairo_win32_printing_surface_create</a> (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);
|
50
|
+
<span class="returnvalue">HDC</span> <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-get-dc" title="cairo_win32_surface_get_dc ()">cairo_win32_surface_get_dc</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
51
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-get-image" title="cairo_win32_surface_get_image ()">cairo_win32_surface_get_image</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
52
|
+
</pre>
|
53
|
+
</div>
|
54
|
+
<div class="refsect1" title="Description">
|
55
|
+
<a name="cairo-Win32-Surfaces.description"></a><h2>Description</h2>
|
56
|
+
<p>
|
57
|
+
The Microsoft Windows surface is used to render cairo graphics to
|
58
|
+
Microsoft Windows windows, bitmaps, and printing device contexts.
|
59
|
+
</p>
|
60
|
+
<p>
|
61
|
+
The surface returned by <a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create" title="cairo_win32_printing_surface_create ()"><code class="function">cairo_win32_printing_surface_create()</code></a> is of surface
|
62
|
+
type <a class="link" href="cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32-PRINTING:CAPS"><code class="literal">CAIRO_SURFACE_TYPE_WIN32_PRINTING</code></a> and is a multi-page vector surface
|
63
|
+
type.
|
64
|
+
</p>
|
65
|
+
<p>
|
66
|
+
The surface returned by the other win32 constructors is of surface type
|
67
|
+
<a class="link" href="cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32:CAPS"><code class="literal">CAIRO_SURFACE_TYPE_WIN32</code></a> and is a raster surface type.
|
68
|
+
</p>
|
69
|
+
</div>
|
70
|
+
<div class="refsect1" title="Details">
|
71
|
+
<a name="cairo-Win32-Surfaces.details"></a><h2>Details</h2>
|
72
|
+
<div class="refsect2" title="CAIRO_HAS_WIN32_SURFACE">
|
73
|
+
<a name="CAIRO-HAS-WIN32-SURFACE:CAPS"></a><h3>CAIRO_HAS_WIN32_SURFACE</h3>
|
74
|
+
<pre class="programlisting">#define CAIRO_HAS_WIN32_SURFACE 1
|
75
|
+
</pre>
|
76
|
+
<p>
|
77
|
+
Defined if the Microsoft Windows surface backend is available.
|
78
|
+
This macro can be used to conditionally compile backend-specific code.
|
79
|
+
</p>
|
80
|
+
</div>
|
81
|
+
<hr>
|
82
|
+
<div class="refsect2" title="cairo_win32_surface_create ()">
|
83
|
+
<a name="cairo-win32-surface-create"></a><h3>cairo_win32_surface_create ()</h3>
|
84
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_win32_surface_create (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);</pre>
|
85
|
+
<p>
|
86
|
+
Creates a cairo surface that targets the given DC. The DC will be
|
87
|
+
queried for its initial clip extents, and this will be used as the
|
88
|
+
size of the cairo surface. The resulting surface will always be of
|
89
|
+
format <a class="link" href="cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB24:CAPS"><code class="literal">CAIRO_FORMAT_RGB24</code></a>; should you need another surface format,
|
90
|
+
you will need to create one through
|
91
|
+
<a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib" title="cairo_win32_surface_create_with_dib ()"><code class="function">cairo_win32_surface_create_with_dib()</code></a>.
|
92
|
+
</p>
|
93
|
+
<div class="variablelist"><table border="0">
|
94
|
+
<col align="left" valign="top">
|
95
|
+
<tbody>
|
96
|
+
<tr>
|
97
|
+
<td><p><span class="term"><em class="parameter"><code>hdc</code></em> :</span></p></td>
|
98
|
+
<td>the DC to create a surface for
|
99
|
+
</td>
|
100
|
+
</tr>
|
101
|
+
<tr>
|
102
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
103
|
+
<td> the newly created surface
|
104
|
+
</td>
|
105
|
+
</tr>
|
106
|
+
</tbody>
|
107
|
+
</table></div>
|
108
|
+
</div>
|
109
|
+
<hr>
|
110
|
+
<div class="refsect2" title="cairo_win32_surface_create_with_dib ()">
|
111
|
+
<a name="cairo-win32-surface-create-with-dib"></a><h3>cairo_win32_surface_create_with_dib ()</h3>
|
112
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_win32_surface_create_with_dib (<em class="parameter"><code><a class="link" href="cairo-Image-Surfaces.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> format</code></em>,
|
113
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
114
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
115
|
+
<p>
|
116
|
+
Creates a device-independent-bitmap surface not associated with
|
117
|
+
any particular existing surface or device context. The created
|
118
|
+
bitmap will be uninitialized.
|
119
|
+
</p>
|
120
|
+
<div class="variablelist"><table border="0">
|
121
|
+
<col align="left" valign="top">
|
122
|
+
<tbody>
|
123
|
+
<tr>
|
124
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
125
|
+
<td>format of pixels in the surface to create
|
126
|
+
</td>
|
127
|
+
</tr>
|
128
|
+
<tr>
|
129
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
130
|
+
<td>width of the surface, in pixels
|
131
|
+
</td>
|
132
|
+
</tr>
|
133
|
+
<tr>
|
134
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
135
|
+
<td>height of the surface, in pixels
|
136
|
+
</td>
|
137
|
+
</tr>
|
138
|
+
<tr>
|
139
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
140
|
+
<td> the newly created surface
|
141
|
+
|
142
|
+
</td>
|
143
|
+
</tr>
|
144
|
+
</tbody>
|
145
|
+
</table></div>
|
146
|
+
<p class="since">Since 1.2</p>
|
147
|
+
</div>
|
148
|
+
<hr>
|
149
|
+
<div class="refsect2" title="cairo_win32_surface_create_with_ddb ()">
|
150
|
+
<a name="cairo-win32-surface-create-with-ddb"></a><h3>cairo_win32_surface_create_with_ddb ()</h3>
|
151
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_win32_surface_create_with_ddb (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>,
|
152
|
+
<em class="parameter"><code><a class="link" href="cairo-Image-Surfaces.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> format</code></em>,
|
153
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
154
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
155
|
+
<p>
|
156
|
+
Creates a device-independent-bitmap surface not associated with
|
157
|
+
any particular existing surface or device context. The created
|
158
|
+
bitmap will be uninitialized.
|
159
|
+
</p>
|
160
|
+
<div class="variablelist"><table border="0">
|
161
|
+
<col align="left" valign="top">
|
162
|
+
<tbody>
|
163
|
+
<tr>
|
164
|
+
<td><p><span class="term"><em class="parameter"><code>hdc</code></em> :</span></p></td>
|
165
|
+
<td>the DC to create a surface for
|
166
|
+
</td>
|
167
|
+
</tr>
|
168
|
+
<tr>
|
169
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
170
|
+
<td>format of pixels in the surface to create
|
171
|
+
</td>
|
172
|
+
</tr>
|
173
|
+
<tr>
|
174
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
175
|
+
<td>width of the surface, in pixels
|
176
|
+
</td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
180
|
+
<td>height of the surface, in pixels
|
181
|
+
</td>
|
182
|
+
</tr>
|
183
|
+
<tr>
|
184
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
185
|
+
<td> the newly created surface
|
186
|
+
|
187
|
+
</td>
|
188
|
+
</tr>
|
189
|
+
</tbody>
|
190
|
+
</table></div>
|
191
|
+
<p class="since">Since 1.4</p>
|
192
|
+
</div>
|
193
|
+
<hr>
|
194
|
+
<div class="refsect2" title="cairo_win32_printing_surface_create ()">
|
195
|
+
<a name="cairo-win32-printing-surface-create"></a><h3>cairo_win32_printing_surface_create ()</h3>
|
196
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_win32_printing_surface_create (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);</pre>
|
197
|
+
<p>
|
198
|
+
Creates a cairo surface that targets the given DC. The DC will be
|
199
|
+
queried for its initial clip extents, and this will be used as the
|
200
|
+
size of the cairo surface. The DC should be a printing DC;
|
201
|
+
antialiasing will be ignored, and GDI will be used as much as
|
202
|
+
possible to draw to the surface.
|
203
|
+
</p>
|
204
|
+
<p>
|
205
|
+
The returned surface will be wrapped using the paginated surface to
|
206
|
+
provide correct complex rendering behaviour; <code class="function">show_page()</code> and
|
207
|
+
associated methods must be used for correct output.
|
208
|
+
</p>
|
209
|
+
<div class="variablelist"><table border="0">
|
210
|
+
<col align="left" valign="top">
|
211
|
+
<tbody>
|
212
|
+
<tr>
|
213
|
+
<td><p><span class="term"><em class="parameter"><code>hdc</code></em> :</span></p></td>
|
214
|
+
<td>the DC to create a surface for
|
215
|
+
</td>
|
216
|
+
</tr>
|
217
|
+
<tr>
|
218
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
219
|
+
<td> the newly created surface
|
220
|
+
|
221
|
+
</td>
|
222
|
+
</tr>
|
223
|
+
</tbody>
|
224
|
+
</table></div>
|
225
|
+
<p class="since">Since 1.6</p>
|
226
|
+
</div>
|
227
|
+
<hr>
|
228
|
+
<div class="refsect2" title="cairo_win32_surface_get_dc ()">
|
229
|
+
<a name="cairo-win32-surface-get-dc"></a><h3>cairo_win32_surface_get_dc ()</h3>
|
230
|
+
<pre class="programlisting"><span class="returnvalue">HDC</span> cairo_win32_surface_get_dc (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
231
|
+
<p>
|
232
|
+
Returns the HDC associated with this surface, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none.
|
233
|
+
Also returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the surface is not a win32 surface.
|
234
|
+
</p>
|
235
|
+
<div class="variablelist"><table border="0">
|
236
|
+
<col align="left" valign="top">
|
237
|
+
<tbody>
|
238
|
+
<tr>
|
239
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
240
|
+
<td>a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>
|
241
|
+
</td>
|
242
|
+
</tr>
|
243
|
+
<tr>
|
244
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
245
|
+
<td> HDC or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no HDC available.
|
246
|
+
|
247
|
+
</td>
|
248
|
+
</tr>
|
249
|
+
</tbody>
|
250
|
+
</table></div>
|
251
|
+
<p class="since">Since 1.2</p>
|
252
|
+
</div>
|
253
|
+
<hr>
|
254
|
+
<div class="refsect2" title="cairo_win32_surface_get_image ()">
|
255
|
+
<a name="cairo-win32-surface-get-image"></a><h3>cairo_win32_surface_get_image ()</h3>
|
256
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_win32_surface_get_image (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
257
|
+
<p>
|
258
|
+
Returns a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> image surface that refers to the same bits
|
259
|
+
as the DIB of the Win32 surface. If the passed-in win32 surface
|
260
|
+
is not a DIB surface, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned.
|
261
|
+
</p>
|
262
|
+
<div class="variablelist"><table border="0">
|
263
|
+
<col align="left" valign="top">
|
264
|
+
<tbody>
|
265
|
+
<tr>
|
266
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
267
|
+
<td>a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>
|
268
|
+
</td>
|
269
|
+
</tr>
|
270
|
+
<tr>
|
271
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
272
|
+
<td> a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> (owned by the win32 <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>),
|
273
|
+
or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the win32 surface is not a DIB.
|
274
|
+
|
275
|
+
</td>
|
276
|
+
</tr>
|
277
|
+
</tbody>
|
278
|
+
</table></div>
|
279
|
+
<p class="since">Since 1.4</p>
|
280
|
+
</div>
|
281
|
+
</div>
|
282
|
+
<div class="refsect1" title="See Also">
|
283
|
+
<a name="cairo-Win32-Surfaces.see-also"></a><h2>See Also</h2>
|
284
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>
|
285
|
+
</div>
|
286
|
+
</div>
|
287
|
+
<div class="footer">
|
288
|
+
<hr>
|
289
|
+
Generated by GTK-Doc V1.15</div>
|
290
|
+
</body>
|
291
|
+
</html>
|
@@ -0,0 +1,470 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>XLib Surfaces</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
|
+
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
|
+
<link rel="prev" href="cairo-Quartz-Surfaces.html" title="Quartz Surfaces">
|
10
|
+
<link rel="next" href="cairo-support.html" title="Utilities">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="cairo-Quartz-Surfaces.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
21
|
+
<td><a accesskey="n" href="cairo-support.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#cairo-XLib-Surfaces.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#cairo-XLib-Surfaces.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry" title="XLib Surfaces">
|
30
|
+
<a name="cairo-XLib-Surfaces"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="cairo-XLib-Surfaces.top_of_page"></a>XLib Surfaces</span></h2>
|
34
|
+
<p>XLib Surfaces — X Window System rendering using XLib</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv" title="Synopsis">
|
39
|
+
<a name="cairo-XLib-Surfaces.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">#define <a class="link" href="cairo-XLib-Surfaces.html#CAIRO-HAS-XLIB-SURFACE:CAPS" title="CAIRO_HAS_XLIB_SURFACE">CAIRO_HAS_XLIB_SURFACE</a>
|
41
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create" title="cairo_xlib_surface_create ()">cairo_xlib_surface_create</a> (<em class="parameter"><code><span class="type">Display</span> *dpy</code></em>,
|
42
|
+
<em class="parameter"><code><span class="type">Drawable</span> drawable</code></em>,
|
43
|
+
<em class="parameter"><code><span class="type">Visual</span> *visual</code></em>,
|
44
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
45
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
46
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create-for-bitmap" title="cairo_xlib_surface_create_for_bitmap ()">cairo_xlib_surface_create_for_bitmap</a>
|
47
|
+
(<em class="parameter"><code><span class="type">Display</span> *dpy</code></em>,
|
48
|
+
<em class="parameter"><code><span class="type">Pixmap</span> bitmap</code></em>,
|
49
|
+
<em class="parameter"><code><span class="type">Screen</span> *screen</code></em>,
|
50
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
51
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
52
|
+
<span class="returnvalue">void</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-set-size" title="cairo_xlib_surface_set_size ()">cairo_xlib_surface_set_size</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>,
|
53
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
54
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
55
|
+
<span class="returnvalue">Display</span> * <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-display" title="cairo_xlib_surface_get_display ()">cairo_xlib_surface_get_display</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
56
|
+
<span class="returnvalue">Screen</span> * <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-screen" title="cairo_xlib_surface_get_screen ()">cairo_xlib_surface_get_screen</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
57
|
+
<span class="returnvalue">void</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-set-drawable" title="cairo_xlib_surface_set_drawable ()">cairo_xlib_surface_set_drawable</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>,
|
58
|
+
<em class="parameter"><code><span class="type">Drawable</span> drawable</code></em>,
|
59
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
60
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);
|
61
|
+
<span class="returnvalue">Drawable</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-drawable" title="cairo_xlib_surface_get_drawable ()">cairo_xlib_surface_get_drawable</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
62
|
+
<span class="returnvalue">Visual</span> * <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-visual" title="cairo_xlib_surface_get_visual ()">cairo_xlib_surface_get_visual</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
63
|
+
<span class="returnvalue">int</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-width" title="cairo_xlib_surface_get_width ()">cairo_xlib_surface_get_width</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
64
|
+
<span class="returnvalue">int</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-height" title="cairo_xlib_surface_get_height ()">cairo_xlib_surface_get_height</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
65
|
+
<span class="returnvalue">int</span> <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-get-depth" title="cairo_xlib_surface_get_depth ()">cairo_xlib_surface_get_depth</a> (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);
|
66
|
+
</pre>
|
67
|
+
</div>
|
68
|
+
<div class="refsect1" title="Description">
|
69
|
+
<a name="cairo-XLib-Surfaces.description"></a><h2>Description</h2>
|
70
|
+
<p>
|
71
|
+
The XLib surface is used to render cairo graphics to X Window System
|
72
|
+
windows and pixmaps using the XLib library.
|
73
|
+
</p>
|
74
|
+
<p>
|
75
|
+
Note that the XLib surface automatically takes advantage of X render extension
|
76
|
+
if it is available.
|
77
|
+
</p>
|
78
|
+
</div>
|
79
|
+
<div class="refsect1" title="Details">
|
80
|
+
<a name="cairo-XLib-Surfaces.details"></a><h2>Details</h2>
|
81
|
+
<div class="refsect2" title="CAIRO_HAS_XLIB_SURFACE">
|
82
|
+
<a name="CAIRO-HAS-XLIB-SURFACE:CAPS"></a><h3>CAIRO_HAS_XLIB_SURFACE</h3>
|
83
|
+
<pre class="programlisting">#define CAIRO_HAS_XLIB_SURFACE 1
|
84
|
+
</pre>
|
85
|
+
<p>
|
86
|
+
Defined if the Xlib surface backend is available.
|
87
|
+
This macro can be used to conditionally compile backend-specific code.
|
88
|
+
</p>
|
89
|
+
</div>
|
90
|
+
<hr>
|
91
|
+
<div class="refsect2" title="cairo_xlib_surface_create ()">
|
92
|
+
<a name="cairo-xlib-surface-create"></a><h3>cairo_xlib_surface_create ()</h3>
|
93
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_xlib_surface_create (<em class="parameter"><code><span class="type">Display</span> *dpy</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">Drawable</span> drawable</code></em>,
|
95
|
+
<em class="parameter"><code><span class="type">Visual</span> *visual</code></em>,
|
96
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
97
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
98
|
+
<p>
|
99
|
+
Creates an Xlib surface that draws to the given drawable.
|
100
|
+
The way that colors are represented in the drawable is specified
|
101
|
+
by the provided visual.
|
102
|
+
</p>
|
103
|
+
<p>
|
104
|
+
Note: If <em class="parameter"><code>drawable</code></em> is a Window, then the function
|
105
|
+
<a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-set-size" title="cairo_xlib_surface_set_size ()"><code class="function">cairo_xlib_surface_set_size()</code></a> must be called whenever the size of the
|
106
|
+
window changes.
|
107
|
+
</p>
|
108
|
+
<p>
|
109
|
+
When <em class="parameter"><code>drawable</code></em> is a Window containing child windows then drawing to
|
110
|
+
the created surface will be clipped by those child windows. When
|
111
|
+
the created surface is used as a source, the contents of the
|
112
|
+
children will be included.
|
113
|
+
</p>
|
114
|
+
<div class="variablelist"><table border="0">
|
115
|
+
<col align="left" valign="top">
|
116
|
+
<tbody>
|
117
|
+
<tr>
|
118
|
+
<td><p><span class="term"><em class="parameter"><code>dpy</code></em> :</span></p></td>
|
119
|
+
<td>an X Display
|
120
|
+
</td>
|
121
|
+
</tr>
|
122
|
+
<tr>
|
123
|
+
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
124
|
+
<td>an X Drawable, (a Pixmap or a Window)
|
125
|
+
</td>
|
126
|
+
</tr>
|
127
|
+
<tr>
|
128
|
+
<td><p><span class="term"><em class="parameter"><code>visual</code></em> :</span></p></td>
|
129
|
+
<td>the visual to use for drawing to <em class="parameter"><code>drawable</code></em>. The depth
|
130
|
+
of the visual must match the depth of the drawable.
|
131
|
+
Currently, only TrueColor visuals are fully supported.
|
132
|
+
</td>
|
133
|
+
</tr>
|
134
|
+
<tr>
|
135
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
136
|
+
<td>the current width of <em class="parameter"><code>drawable</code></em>.
|
137
|
+
</td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
141
|
+
<td>the current height of <em class="parameter"><code>drawable</code></em>.
|
142
|
+
</td>
|
143
|
+
</tr>
|
144
|
+
<tr>
|
145
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
146
|
+
<td> the newly created surface
|
147
|
+
</td>
|
148
|
+
</tr>
|
149
|
+
</tbody>
|
150
|
+
</table></div>
|
151
|
+
</div>
|
152
|
+
<hr>
|
153
|
+
<div class="refsect2" title="cairo_xlib_surface_create_for_bitmap ()">
|
154
|
+
<a name="cairo-xlib-surface-create-for-bitmap"></a><h3>cairo_xlib_surface_create_for_bitmap ()</h3>
|
155
|
+
<pre class="programlisting"><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="returnvalue">cairo_surface_t</span></a> * cairo_xlib_surface_create_for_bitmap
|
156
|
+
(<em class="parameter"><code><span class="type">Display</span> *dpy</code></em>,
|
157
|
+
<em class="parameter"><code><span class="type">Pixmap</span> bitmap</code></em>,
|
158
|
+
<em class="parameter"><code><span class="type">Screen</span> *screen</code></em>,
|
159
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
160
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
161
|
+
<p>
|
162
|
+
Creates an Xlib surface that draws to the given bitmap.
|
163
|
+
This will be drawn to as a <a class="link" href="cairo-Image-Surfaces.html#CAIRO-FORMAT-A1:CAPS"><code class="literal">CAIRO_FORMAT_A1</code></a> object.
|
164
|
+
</p>
|
165
|
+
<div class="variablelist"><table border="0">
|
166
|
+
<col align="left" valign="top">
|
167
|
+
<tbody>
|
168
|
+
<tr>
|
169
|
+
<td><p><span class="term"><em class="parameter"><code>dpy</code></em> :</span></p></td>
|
170
|
+
<td>an X Display
|
171
|
+
</td>
|
172
|
+
</tr>
|
173
|
+
<tr>
|
174
|
+
<td><p><span class="term"><em class="parameter"><code>bitmap</code></em> :</span></p></td>
|
175
|
+
<td>an X Drawable, (a depth-1 Pixmap)
|
176
|
+
</td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
180
|
+
<td>the X Screen associated with <em class="parameter"><code>bitmap</code></em>
|
181
|
+
</td>
|
182
|
+
</tr>
|
183
|
+
<tr>
|
184
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
185
|
+
<td>the current width of <em class="parameter"><code>bitmap</code></em>.
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
<tr>
|
189
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
190
|
+
<td>the current height of <em class="parameter"><code>bitmap</code></em>.
|
191
|
+
</td>
|
192
|
+
</tr>
|
193
|
+
<tr>
|
194
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
195
|
+
<td> the newly created surface
|
196
|
+
</td>
|
197
|
+
</tr>
|
198
|
+
</tbody>
|
199
|
+
</table></div>
|
200
|
+
</div>
|
201
|
+
<hr>
|
202
|
+
<div class="refsect2" title="cairo_xlib_surface_set_size ()">
|
203
|
+
<a name="cairo-xlib-surface-set-size"></a><h3>cairo_xlib_surface_set_size ()</h3>
|
204
|
+
<pre class="programlisting"><span class="returnvalue">void</span> cairo_xlib_surface_set_size (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>,
|
205
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
206
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
207
|
+
<p>
|
208
|
+
Informs cairo of the new size of the X Drawable underlying the
|
209
|
+
surface. For a surface created for a Window (rather than a Pixmap),
|
210
|
+
this function must be called each time the size of the window
|
211
|
+
changes. (For a subwindow, you are normally resizing the window
|
212
|
+
yourself, but for a toplevel window, it is necessary to listen for
|
213
|
+
ConfigureNotify events.)
|
214
|
+
</p>
|
215
|
+
<p>
|
216
|
+
A Pixmap can never change size, so it is never necessary to call
|
217
|
+
this function on a surface created for a Pixmap.
|
218
|
+
</p>
|
219
|
+
<div class="variablelist"><table border="0">
|
220
|
+
<col align="left" valign="top">
|
221
|
+
<tbody>
|
222
|
+
<tr>
|
223
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
224
|
+
<td>a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> for the XLib backend
|
225
|
+
</td>
|
226
|
+
</tr>
|
227
|
+
<tr>
|
228
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
229
|
+
<td>the new width of the surface
|
230
|
+
</td>
|
231
|
+
</tr>
|
232
|
+
<tr>
|
233
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
234
|
+
<td>the new height of the surface
|
235
|
+
</td>
|
236
|
+
</tr>
|
237
|
+
</tbody>
|
238
|
+
</table></div>
|
239
|
+
</div>
|
240
|
+
<hr>
|
241
|
+
<div class="refsect2" title="cairo_xlib_surface_get_display ()">
|
242
|
+
<a name="cairo-xlib-surface-get-display"></a><h3>cairo_xlib_surface_get_display ()</h3>
|
243
|
+
<pre class="programlisting"><span class="returnvalue">Display</span> * cairo_xlib_surface_get_display (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
244
|
+
<p>
|
245
|
+
Get the X Display for the underlying X Drawable.
|
246
|
+
</p>
|
247
|
+
<div class="variablelist"><table border="0">
|
248
|
+
<col align="left" valign="top">
|
249
|
+
<tbody>
|
250
|
+
<tr>
|
251
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
252
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
253
|
+
</td>
|
254
|
+
</tr>
|
255
|
+
<tr>
|
256
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
257
|
+
<td> the display.
|
258
|
+
|
259
|
+
</td>
|
260
|
+
</tr>
|
261
|
+
</tbody>
|
262
|
+
</table></div>
|
263
|
+
<p class="since">Since 1.2</p>
|
264
|
+
</div>
|
265
|
+
<hr>
|
266
|
+
<div class="refsect2" title="cairo_xlib_surface_get_screen ()">
|
267
|
+
<a name="cairo-xlib-surface-get-screen"></a><h3>cairo_xlib_surface_get_screen ()</h3>
|
268
|
+
<pre class="programlisting"><span class="returnvalue">Screen</span> * cairo_xlib_surface_get_screen (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
269
|
+
<p>
|
270
|
+
Get the X Screen for the underlying X Drawable.
|
271
|
+
</p>
|
272
|
+
<div class="variablelist"><table border="0">
|
273
|
+
<col align="left" valign="top">
|
274
|
+
<tbody>
|
275
|
+
<tr>
|
276
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
277
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
<tr>
|
281
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
282
|
+
<td> the screen.
|
283
|
+
|
284
|
+
</td>
|
285
|
+
</tr>
|
286
|
+
</tbody>
|
287
|
+
</table></div>
|
288
|
+
<p class="since">Since 1.2</p>
|
289
|
+
</div>
|
290
|
+
<hr>
|
291
|
+
<div class="refsect2" title="cairo_xlib_surface_set_drawable ()">
|
292
|
+
<a name="cairo-xlib-surface-set-drawable"></a><h3>cairo_xlib_surface_set_drawable ()</h3>
|
293
|
+
<pre class="programlisting"><span class="returnvalue">void</span> cairo_xlib_surface_set_drawable (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>,
|
294
|
+
<em class="parameter"><code><span class="type">Drawable</span> drawable</code></em>,
|
295
|
+
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
296
|
+
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
297
|
+
<p>
|
298
|
+
Informs cairo of a new X Drawable underlying the
|
299
|
+
surface. The drawable must match the display, screen
|
300
|
+
and format of the existing drawable or the application
|
301
|
+
will get X protocol errors and will probably terminate.
|
302
|
+
No checks are done by this function to ensure this
|
303
|
+
compatibility.
|
304
|
+
</p>
|
305
|
+
<div class="variablelist"><table border="0">
|
306
|
+
<col align="left" valign="top">
|
307
|
+
<tbody>
|
308
|
+
<tr>
|
309
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
310
|
+
<td>a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> for the XLib backend
|
311
|
+
</td>
|
312
|
+
</tr>
|
313
|
+
<tr>
|
314
|
+
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
315
|
+
<td>the new drawable for the surface
|
316
|
+
</td>
|
317
|
+
</tr>
|
318
|
+
<tr>
|
319
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
320
|
+
<td>the width of the new drawable
|
321
|
+
</td>
|
322
|
+
</tr>
|
323
|
+
<tr>
|
324
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
325
|
+
<td>the height of the new drawable
|
326
|
+
</td>
|
327
|
+
</tr>
|
328
|
+
</tbody>
|
329
|
+
</table></div>
|
330
|
+
</div>
|
331
|
+
<hr>
|
332
|
+
<div class="refsect2" title="cairo_xlib_surface_get_drawable ()">
|
333
|
+
<a name="cairo-xlib-surface-get-drawable"></a><h3>cairo_xlib_surface_get_drawable ()</h3>
|
334
|
+
<pre class="programlisting"><span class="returnvalue">Drawable</span> cairo_xlib_surface_get_drawable (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
335
|
+
<p>
|
336
|
+
Get the underlying X Drawable used for the surface.
|
337
|
+
</p>
|
338
|
+
<div class="variablelist"><table border="0">
|
339
|
+
<col align="left" valign="top">
|
340
|
+
<tbody>
|
341
|
+
<tr>
|
342
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
343
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
344
|
+
</td>
|
345
|
+
</tr>
|
346
|
+
<tr>
|
347
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
348
|
+
<td> the drawable.
|
349
|
+
|
350
|
+
</td>
|
351
|
+
</tr>
|
352
|
+
</tbody>
|
353
|
+
</table></div>
|
354
|
+
<p class="since">Since 1.2</p>
|
355
|
+
</div>
|
356
|
+
<hr>
|
357
|
+
<div class="refsect2" title="cairo_xlib_surface_get_visual ()">
|
358
|
+
<a name="cairo-xlib-surface-get-visual"></a><h3>cairo_xlib_surface_get_visual ()</h3>
|
359
|
+
<pre class="programlisting"><span class="returnvalue">Visual</span> * cairo_xlib_surface_get_visual (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
360
|
+
<p>
|
361
|
+
Gets the X Visual associated with <em class="parameter"><code>surface</code></em>, suitable for use with the
|
362
|
+
underlying X Drawable. If <em class="parameter"><code>surface</code></em> was created by
|
363
|
+
<a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create" title="cairo_xlib_surface_create ()"><code class="function">cairo_xlib_surface_create()</code></a>, the return value is the Visual passed to that
|
364
|
+
constructor.
|
365
|
+
</p>
|
366
|
+
<div class="variablelist"><table border="0">
|
367
|
+
<col align="left" valign="top">
|
368
|
+
<tbody>
|
369
|
+
<tr>
|
370
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
371
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
372
|
+
</td>
|
373
|
+
</tr>
|
374
|
+
<tr>
|
375
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
376
|
+
<td> the Visual or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is no appropriate Visual for
|
377
|
+
<em class="parameter"><code>surface</code></em>.
|
378
|
+
|
379
|
+
</td>
|
380
|
+
</tr>
|
381
|
+
</tbody>
|
382
|
+
</table></div>
|
383
|
+
<p class="since">Since 1.2</p>
|
384
|
+
</div>
|
385
|
+
<hr>
|
386
|
+
<div class="refsect2" title="cairo_xlib_surface_get_width ()">
|
387
|
+
<a name="cairo-xlib-surface-get-width"></a><h3>cairo_xlib_surface_get_width ()</h3>
|
388
|
+
<pre class="programlisting"><span class="returnvalue">int</span> cairo_xlib_surface_get_width (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
389
|
+
<p>
|
390
|
+
Get the width of the X Drawable underlying the surface in pixels.
|
391
|
+
</p>
|
392
|
+
<div class="variablelist"><table border="0">
|
393
|
+
<col align="left" valign="top">
|
394
|
+
<tbody>
|
395
|
+
<tr>
|
396
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
397
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
398
|
+
</td>
|
399
|
+
</tr>
|
400
|
+
<tr>
|
401
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
402
|
+
<td> the width of the surface in pixels.
|
403
|
+
|
404
|
+
</td>
|
405
|
+
</tr>
|
406
|
+
</tbody>
|
407
|
+
</table></div>
|
408
|
+
<p class="since">Since 1.2</p>
|
409
|
+
</div>
|
410
|
+
<hr>
|
411
|
+
<div class="refsect2" title="cairo_xlib_surface_get_height ()">
|
412
|
+
<a name="cairo-xlib-surface-get-height"></a><h3>cairo_xlib_surface_get_height ()</h3>
|
413
|
+
<pre class="programlisting"><span class="returnvalue">int</span> cairo_xlib_surface_get_height (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
414
|
+
<p>
|
415
|
+
Get the height of the X Drawable underlying the surface in pixels.
|
416
|
+
</p>
|
417
|
+
<div class="variablelist"><table border="0">
|
418
|
+
<col align="left" valign="top">
|
419
|
+
<tbody>
|
420
|
+
<tr>
|
421
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
422
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
423
|
+
</td>
|
424
|
+
</tr>
|
425
|
+
<tr>
|
426
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
427
|
+
<td> the height of the surface in pixels.
|
428
|
+
|
429
|
+
</td>
|
430
|
+
</tr>
|
431
|
+
</tbody>
|
432
|
+
</table></div>
|
433
|
+
<p class="since">Since 1.2</p>
|
434
|
+
</div>
|
435
|
+
<hr>
|
436
|
+
<div class="refsect2" title="cairo_xlib_surface_get_depth ()">
|
437
|
+
<a name="cairo-xlib-surface-get-depth"></a><h3>cairo_xlib_surface_get_depth ()</h3>
|
438
|
+
<pre class="programlisting"><span class="returnvalue">int</span> cairo_xlib_surface_get_depth (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
439
|
+
<p>
|
440
|
+
Get the number of bits used to represent each pixel value.
|
441
|
+
</p>
|
442
|
+
<div class="variablelist"><table border="0">
|
443
|
+
<col align="left" valign="top">
|
444
|
+
<tbody>
|
445
|
+
<tr>
|
446
|
+
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
447
|
+
<td>a <span class="type">cairo_xlib_surface_t</span>
|
448
|
+
</td>
|
449
|
+
</tr>
|
450
|
+
<tr>
|
451
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
452
|
+
<td> the depth of the surface in bits.
|
453
|
+
|
454
|
+
</td>
|
455
|
+
</tr>
|
456
|
+
</tbody>
|
457
|
+
</table></div>
|
458
|
+
<p class="since">Since 1.2</p>
|
459
|
+
</div>
|
460
|
+
</div>
|
461
|
+
<div class="refsect1" title="See Also">
|
462
|
+
<a name="cairo-XLib-Surfaces.see-also"></a><h2>See Also</h2>
|
463
|
+
<a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>
|
464
|
+
</div>
|
465
|
+
</div>
|
466
|
+
<div class="footer">
|
467
|
+
<hr>
|
468
|
+
Generated by GTK-Doc V1.15</div>
|
469
|
+
</body>
|
470
|
+
</html>
|