clutter 2.0.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +129 -0
- data/lib/clutter.rb +145 -0
- data/lib/clutter/actor-iter.rb +33 -0
- data/lib/clutter/actor.rb +34 -0
- data/lib/clutter/animatable.rb +26 -0
- data/lib/clutter/cairo.rb +24 -0
- data/lib/clutter/color.rb +55 -0
- data/lib/clutter/event.rb +21 -0
- data/lib/clutter/point.rb +25 -0
- data/lib/clutter/text.rb +23 -0
- data/lib/clutter/threads.rb +38 -0
- data/sample/basic-actor.rb +125 -0
- data/sample/bin-layout.rb +215 -0
- data/sample/box-layout.rb +196 -0
- data/sample/canvas.rb +117 -0
- data/sample/constraints.rb +81 -0
- data/sample/drag-action.rb +177 -0
- data/sample/drop-action.rb +198 -0
- data/sample/easing-modes.rb +145 -0
- data/sample/flow-layout.rb +121 -0
- data/sample/grid-layout.rb +239 -0
- data/sample/image-content.rb +88 -0
- data/sample/pan-action.rb +100 -0
- data/sample/redhand.png +0 -0
- data/sample/rounded-rectangle.rb +90 -0
- data/sample/scroll-actor.rb +105 -0
- data/test/clutter-test-utils.rb +21 -0
- data/test/run-test.rb +50 -0
- data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
- data/vendor/local/bin/libcogl-12.dll +0 -0
- data/vendor/local/bin/libcogl-pango-12.dll +0 -0
- data/vendor/local/bin/libglut-0.dll +0 -0
- data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
- data/vendor/local/include/GL/freeglut.h +22 -0
- data/vendor/local/include/GL/freeglut_ext.h +239 -0
- data/vendor/local/include/GL/freeglut_std.h +636 -0
- data/vendor/local/include/GL/glut.h +21 -0
- data/vendor/local/include/clutter-1.0/cally/cally-actor.h +155 -0
- data/vendor/local/include/clutter-1.0/cally/cally-clone.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-factory.h +117 -0
- data/vendor/local/include/clutter-1.0/cally/cally-group.h +85 -0
- data/vendor/local/include/clutter-1.0/cally/cally-main.h +39 -0
- data/vendor/local/include/clutter-1.0/cally/cally-rectangle.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-root.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-stage.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-text.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-texture.h +82 -0
- data/vendor/local/include/clutter-1.0/cally/cally-util.h +80 -0
- data/vendor/local/include/clutter-1.0/cally/cally.h +40 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-action.h +103 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-actor-meta.h +113 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +735 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-align-constraint.h +69 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-animatable.h +116 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +74 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-bin-layout.h +84 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-bind-constraint.h +69 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-binding-pool.h +122 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-blur-effect.h +57 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-box-layout.h +159 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-brightness-contrast-effect.h +80 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-cairo.h +59 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +100 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-child-meta.h +120 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-click-action.h +114 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-clone.h +90 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-cogl-compat.h +52 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-color-static.h +79 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-color.h +175 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-colorize-effect.h +63 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-config.h +19 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-constraint.h +108 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-container.h +184 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-content.h +103 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-deform-effect.h +111 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-deprecated.h +43 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-desaturate-effect.h +61 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +104 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-drag-action.h +142 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-drop-action.h +113 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-effect.h +120 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-enum-types.h +183 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-enums.h +1362 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +509 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-feature.h +40 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-fixed-layout.h +80 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +110 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-gesture-action.h +154 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-grid-layout.h +161 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-group.h +95 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-image.h +141 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +118 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-interval.h +141 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-keyframe-transition.h +120 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-keysyms.h +2304 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +215 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-layout-meta.h +101 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-list-model.h +88 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +279 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-main.h +148 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-marshal.h +273 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-model.h +381 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +112 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-page-turn-effect.h +72 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-paint-node.h +102 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-paint-nodes.h +150 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-pan-action.h +147 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-path-constraint.h +66 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-path.h +155 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-property-transition.h +91 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-rotate-action.h +100 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-script.h +204 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-scriptable.h +107 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-scroll-actor.h +97 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-settings.h +25 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-shader-effect.h +114 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-shader-types.h +95 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-snap-constraint.h +73 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-stage-manager.h +81 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-stage.h +215 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-swipe-action.h +107 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-table-layout.h +157 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-tap-action.h +102 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-text-buffer.h +172 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +237 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-texture.h +128 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-timeline.h +201 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-transition-group.h +91 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-transition.h +132 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +715 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-units.h +166 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +302 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-zoom-action.h +114 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter.h +118 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-actor.h +161 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-alpha.h +144 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animatable.h +47 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animation.h +206 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animator.h +186 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-backend.h +64 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-depth.h +101 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-ellipse.h +159 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-opacity.h +115 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-path.h +135 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-rotate.h +119 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-scale.h +107 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour.h +170 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-bin-layout.h +56 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-box.h +143 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-cairo-texture.h +139 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-container.h +93 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-fixed.h +97 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-frame-source.h +49 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-group.h +62 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-input-device.h +41 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-keysyms.h +2306 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-main.h +96 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-media.h +121 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-rectangle.h +117 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-score.h +144 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-shader.h +182 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage-manager.h +42 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage.h +102 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-state.h +187 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-texture.h +138 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeline.h +41 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeout-pool.h +69 -0
- data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-util.h +40 -0
- data/vendor/local/include/clutter-1.0/clutter/win32/clutter-win32.h +58 -0
- data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +245 -0
- data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +131 -0
- data/vendor/local/include/cogl/cogl/cogl-attribute.h +532 -0
- data/vendor/local/include/cogl/cogl/cogl-bitmap.h +314 -0
- data/vendor/local/include/cogl/cogl/cogl-buffer.h +309 -0
- data/vendor/local/include/cogl/cogl/cogl-clip-state.h +50 -0
- data/vendor/local/include/cogl/cogl/cogl-clutter.h +47 -0
- data/vendor/local/include/cogl/cogl/cogl-color.h +543 -0
- data/vendor/local/include/cogl/cogl/cogl-context.h +350 -0
- data/vendor/local/include/cogl/cogl/cogl-defines.h +50 -0
- data/vendor/local/include/cogl/cogl/cogl-deprecated.h +36 -0
- data/vendor/local/include/cogl/cogl/cogl-depth-state.h +264 -0
- data/vendor/local/include/cogl/cogl/cogl-display.h +192 -0
- data/vendor/local/include/cogl/cogl/cogl-enum-types.h +100 -0
- data/vendor/local/include/cogl/cogl/cogl-error.h +176 -0
- data/vendor/local/include/cogl/cogl/cogl-euler.h +251 -0
- data/vendor/local/include/cogl/cogl/cogl-fixed.h +804 -0
- data/vendor/local/include/cogl/cogl/cogl-frame-info.h +129 -0
- data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +1829 -0
- data/vendor/local/include/cogl/cogl/cogl-gles2-types.h +474 -0
- data/vendor/local/include/cogl/cogl/cogl-gles2.h +374 -0
- data/vendor/local/include/cogl/cogl/cogl-glib-source.h +59 -0
- data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +85 -0
- data/vendor/local/include/cogl/cogl/cogl-indices.h +145 -0
- data/vendor/local/include/cogl/cogl/cogl-material-compat.h +1276 -0
- data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +620 -0
- data/vendor/local/include/cogl/cogl/cogl-matrix.h +798 -0
- data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +181 -0
- data/vendor/local/include/cogl/cogl/cogl-object.h +219 -0
- data/vendor/local/include/cogl/cogl/cogl-offscreen.h +117 -0
- data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +106 -0
- data/vendor/local/include/cogl/cogl/cogl-onscreen.h +741 -0
- data/vendor/local/include/cogl/cogl/cogl-output.h +242 -0
- data/vendor/local/include/cogl/cogl/cogl-pango.h +33 -0
- data/vendor/local/include/cogl/cogl/cogl-path-functions.h +430 -0
- data/vendor/local/include/cogl/cogl/cogl-path.h +102 -0
- data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +613 -0
- data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +924 -0
- data/vendor/local/include/cogl/cogl/cogl-pipeline.h +173 -0
- data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +114 -0
- data/vendor/local/include/cogl/cogl/cogl-poll.h +174 -0
- data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +98 -0
- data/vendor/local/include/cogl/cogl/cogl-primitive.h +866 -0
- data/vendor/local/include/cogl/cogl/cogl-primitives.h +190 -0
- data/vendor/local/include/cogl/cogl/cogl-quaternion.h +545 -0
- data/vendor/local/include/cogl/cogl/cogl-renderer.h +423 -0
- data/vendor/local/include/cogl/cogl/cogl-shader.h +654 -0
- data/vendor/local/include/cogl/cogl/cogl-snippet.h +786 -0
- data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +122 -0
- data/vendor/local/include/cogl/cogl/cogl-swap-chain.h +51 -0
- data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +73 -0
- data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +130 -0
- data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +191 -0
- data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +187 -0
- data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +204 -0
- data/vendor/local/include/cogl/cogl/cogl-texture.h +611 -0
- data/vendor/local/include/cogl/cogl/cogl-types.h +912 -0
- data/vendor/local/include/cogl/cogl/cogl-vector.h +351 -0
- data/vendor/local/include/cogl/cogl/cogl-version.h +185 -0
- data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +409 -0
- data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +99 -0
- data/vendor/local/include/cogl/cogl/cogl.h +151 -0
- data/vendor/local/include/cogl/cogl/cogl1-context.h +1169 -0
- data/vendor/local/include/cogl/cogl/cogl2-compatibility.h +55 -0
- data/vendor/local/include/cogl/cogl/cogl2-experimental.h +31 -0
- data/vendor/local/include/cogl/cogl/cogl2-path.h +506 -0
- data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-core-functions.h +191 -0
- data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-gles2-functions.h +36 -0
- data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-glsl-functions.h +279 -0
- data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h +141 -0
- data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h +179 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-builder.h +106 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-enum-types.h +36 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-generator.h +107 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-glib.h +46 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-gobject.h +182 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-gvariant.h +46 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-parser.h +173 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-path.h +97 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-reader.h +150 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-types.h +334 -0
- data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +100 -0
- data/vendor/local/lib/girepository-1.0/Cally-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
- data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-1.0.la +41 -0
- data/vendor/local/lib/libcogl-pango.dll.a +0 -0
- data/vendor/local/lib/libcogl-pango.la +41 -0
- data/vendor/local/lib/libcogl.dll.a +0 -0
- data/vendor/local/lib/libcogl.la +41 -0
- data/vendor/local/lib/libglut.a +0 -0
- data/vendor/local/lib/libglut.dll.a +0 -0
- data/vendor/local/lib/libglut.la +41 -0
- data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
- data/vendor/local/lib/libjson-glib-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/cally-1.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/clutter-1.0.pc +24 -0
- data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +24 -0
- data/vendor/local/lib/pkgconfig/cogl-1.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/cogl-2.0-experimental.pc +13 -0
- data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +13 -0
- data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +11 -0
- data/vendor/local/share/cogl/examples-data/crate.jpg +0 -0
- data/vendor/local/share/gir-1.0/Cally-1.0.gir +679 -0
- data/vendor/local/share/gir-1.0/Clutter-1.0.gir +67473 -0
- data/vendor/local/share/gir-1.0/Cogl-1.0.gir +8383 -0
- data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +306 -0
- data/vendor/local/share/gir-1.0/Json-1.0.gir +4333 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +415 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +136 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +139 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +135 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +123 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +140 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyText.html +133 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +135 -0
- data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +100 -0
- data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +167 -0
- data/vendor/local/share/gtk-doc/html/cally/cally.devhelp2 +73 -0
- data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +43 -0
- data/vendor/local/share/gtk-doc/html/cally/callybase.html +71 -0
- data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +45 -0
- data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +64 -0
- data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +39 -0
- data/vendor/local/share/gtk-doc/html/cally/ch01.html +53 -0
- data/vendor/local/share/gtk-doc/html/cally/ch02.html +41 -0
- data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +96 -0
- data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/index.html +103 -0
- data/vendor/local/share/gtk-doc/html/cally/index.sgml +103 -0
- data/vendor/local/share/gtk-doc/html/cally/ix01.html +198 -0
- data/vendor/local/share/gtk-doc/html/cally/ix02.html +31 -0
- data/vendor/local/share/gtk-doc/html/cally/ix03.html +190 -0
- data/vendor/local/share/gtk-doc/html/cally/ix04.html +42 -0
- data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/license.html +58 -0
- data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +110 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +13714 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +322 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +404 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +747 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +432 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +1218 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +684 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +697 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +278 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +844 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +283 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +450 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +608 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +432 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +1056 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +780 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +109 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +657 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +1232 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +410 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +1018 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +469 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +253 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +587 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +219 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +193 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +336 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +1346 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +309 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +353 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +200 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +408 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +1224 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +965 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +386 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +115 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +1016 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +867 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +808 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +231 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +674 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +1488 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +525 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +1376 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +161 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +211 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +900 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +1715 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +644 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +350 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +333 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +534 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +785 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +1327 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +321 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +216 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +369 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +183 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +881 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +1365 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +311 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +731 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +301 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +595 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +421 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +2252 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +1558 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +280 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +1146 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +192 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +3058 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +736 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +1829 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +2441 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +574 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +227 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +400 -0
- data/vendor/local/share/gtk-doc/html/clutter/actor-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/actor-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/animator-key-frames.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +111 -0
- data/vendor/local/share/gtk-doc/html/clutter/bin-layout.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/box-layout.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +275 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch01.html +65 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch02.html +47 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch03.html +51 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch04.html +59 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch05.html +44 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch06.html +57 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch07.html +38 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch08.html +38 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch09.html +53 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch10.html +78 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch11.html +38 -0
- data/vendor/local/share/gtk-doc/html/clutter/ch12.html +41 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +3471 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +225 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +314 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +361 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +1363 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +129 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +2653 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +200 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +249 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +2550 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +2571 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +181 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +890 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +351 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +1004 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +341 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +843 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +549 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +1023 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +525 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +83 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +201 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +806 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +77 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +65 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +71 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +202 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +37 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +118 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +184 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +37 -0
- data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +105 -0
- data/vendor/local/share/gtk-doc/html/clutter/constraints-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +86 -0
- data/vendor/local/share/gtk-doc/html/clutter/easing-modes.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/event-flow.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/flow-layout.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/go01.html +114 -0
- data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/index.html +451 -0
- data/vendor/local/share/gtk-doc/html/clutter/index.sgml +3272 -0
- data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +56 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix01.html +8815 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix02.html +1961 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix03.html +454 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix04.html +583 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix05.html +957 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix06.html +642 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix07.html +1530 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix08.html +820 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix09.html +1005 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix10.html +369 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix11.html +366 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix12.html +1078 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix13.html +984 -0
- data/vendor/local/share/gtk-doc/html/clutter/ix14.html +99 -0
- data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/license.html +58 -0
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +223 -0
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +197 -0
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +154 -0
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +156 -0
- data/vendor/local/share/gtk-doc/html/clutter/migration.html +49 -0
- data/vendor/local/share/gtk-doc/html/clutter/offscreen-redirect.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/path-alpha-func.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/pt09.html +31 -0
- data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +373 -0
- data/vendor/local/share/gtk-doc/html/clutter/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/clutter/table-layout.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +36 -0
- data/vendor/local/share/gtk-doc/html/json-glib/JsonBuilder.html +513 -0
- data/vendor/local/share/gtk-doc/html/json-glib/JsonGenerator.html +492 -0
- data/vendor/local/share/gtk-doc/html/json-glib/JsonParser.html +871 -0
- data/vendor/local/share/gtk-doc/html/json-glib/JsonPath.html +464 -0
- data/vendor/local/share/gtk-doc/html/json-glib/JsonReader.html +898 -0
- data/vendor/local/share/gtk-doc/html/json-glib/annotation-glossary.html +87 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ch01.html +41 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ch02.html +41 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ch03.html +38 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ch04.html +38 -0
- data/vendor/local/share/gtk-doc/html/json-glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/json-glib/index.html +125 -0
- data/vendor/local/share/gtk-doc/html/json-glib/index.sgml +308 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix01.html +926 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix02.html +54 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix03.html +61 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix04.html +54 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix05.html +186 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix06.html +121 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix07.html +161 -0
- data/vendor/local/share/gtk-doc/html/json-glib/ix08.html +137 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-advanced.html +47 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-base.html +61 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html +382 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html +310 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html +850 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html +272 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html +942 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html +993 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html +476 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +148 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib.devhelp2 +281 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib.html +38 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-streams.html +63 -0
- data/vendor/local/share/gtk-doc/html/json-glib/json-tools.html +39 -0
- data/vendor/local/share/gtk-doc/html/json-glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/json-glib/license.html +58 -0
- data/vendor/local/share/gtk-doc/html/json-glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/json-glib/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/json-glib/up.png +0 -0
- data/vendor/local/share/license/clutter/COPYING +502 -0
- data/vendor/local/share/license/cogl/COPYING +502 -0
- data/vendor/local/share/license/freeglut/AUTHORS +39 -0
- data/vendor/local/share/license/freeglut/COPYING +27 -0
- data/vendor/local/share/license/json-glib/COPYING +504 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
- metadata +747 -0
@@ -0,0 +1,1327 @@
|
|
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>ClutterPath</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
|
7
|
+
<link rel="home" href="index.html" title="Clutter Reference Manual">
|
8
|
+
<link rel="up" href="ch10.html" title="General purpose API">
|
9
|
+
<link rel="prev" href="clutter-General.html" title="General">
|
10
|
+
<link rel="next" href="ClutterSettings.html" title="ClutterSettings">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (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="clutter-General.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="ch10.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">Clutter Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="ClutterSettings.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="#ClutterPath.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#ClutterPath.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#ClutterPath.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#ClutterPath.properties" class="shortcut">Properties</a>
|
31
|
+
</td></tr>
|
32
|
+
</table>
|
33
|
+
<div class="refentry">
|
34
|
+
<a name="ClutterPath"></a><div class="titlepage"></div>
|
35
|
+
<div class="refnamediv"><table width="100%"><tr>
|
36
|
+
<td valign="top">
|
37
|
+
<h2><span class="refentrytitle"><a name="ClutterPath.top_of_page"></a>ClutterPath</span></h2>
|
38
|
+
<p>ClutterPath — An object describing a path with straight lines
|
39
|
+
and bezier curves.</p>
|
40
|
+
</td>
|
41
|
+
<td valign="top" align="right"></td>
|
42
|
+
</tr></table></div>
|
43
|
+
<div class="refsynopsisdiv">
|
44
|
+
<a name="ClutterPath.synopsis"></a><h2>Synopsis</h2>
|
45
|
+
<pre class="synopsis"> <a class="link" href="ClutterPath.html#ClutterPath-struct" title="ClutterPath">ClutterPath</a>;
|
46
|
+
struct <a class="link" href="ClutterPath.html#ClutterPathClass" title="struct ClutterPathClass">ClutterPathClass</a>;
|
47
|
+
<span class="returnvalue">void</span> (<a class="link" href="ClutterPath.html#ClutterPathCallback" title="ClutterPathCallback ()">*ClutterPathCallback</a>) (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>,
|
48
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
49
|
+
enum <a class="link" href="ClutterPath.html#ClutterPathNodeType" title="enum ClutterPathNodeType">ClutterPathNodeType</a>;
|
50
|
+
<a class="link" href="ClutterPath.html" title="ClutterPath"><span class="returnvalue">ClutterPath</span></a> * <a class="link" href="ClutterPath.html#clutter-path-new" title="clutter_path_new ()">clutter_path_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
51
|
+
<a class="link" href="ClutterPath.html" title="ClutterPath"><span class="returnvalue">ClutterPath</span></a> * <a class="link" href="ClutterPath.html#clutter-path-new-with-description" title="clutter_path_new_with_description ()">clutter_path_new_with_description</a> (<em class="parameter"><code>const <span class="type">gchar</span> *desc</code></em>);
|
52
|
+
|
53
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-move-to" title="clutter_path_add_move_to ()">clutter_path_add_move_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
54
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
55
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
56
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-rel-move-to" title="clutter_path_add_rel_move_to ()">clutter_path_add_rel_move_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
58
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-line-to" title="clutter_path_add_line_to ()">clutter_path_add_line_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
60
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
61
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-rel-line-to" title="clutter_path_add_rel_line_to ()">clutter_path_add_rel_line_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
63
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
64
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-curve-to" title="clutter_path_add_curve_to ()">clutter_path_add_curve_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
66
|
+
<em class="parameter"><code><span class="type">gint</span> x_1</code></em>,
|
67
|
+
<em class="parameter"><code><span class="type">gint</span> y_1</code></em>,
|
68
|
+
<em class="parameter"><code><span class="type">gint</span> x_2</code></em>,
|
69
|
+
<em class="parameter"><code><span class="type">gint</span> y_2</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">gint</span> x_3</code></em>,
|
71
|
+
<em class="parameter"><code><span class="type">gint</span> y_3</code></em>);
|
72
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-rel-curve-to" title="clutter_path_add_rel_curve_to ()">clutter_path_add_rel_curve_to</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
73
|
+
<em class="parameter"><code><span class="type">gint</span> x_1</code></em>,
|
74
|
+
<em class="parameter"><code><span class="type">gint</span> y_1</code></em>,
|
75
|
+
<em class="parameter"><code><span class="type">gint</span> x_2</code></em>,
|
76
|
+
<em class="parameter"><code><span class="type">gint</span> y_2</code></em>,
|
77
|
+
<em class="parameter"><code><span class="type">gint</span> x_3</code></em>,
|
78
|
+
<em class="parameter"><code><span class="type">gint</span> y_3</code></em>);
|
79
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-close" title="clutter_path_add_close ()">clutter_path_add_close</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
80
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterPath.html#clutter-path-add-string" title="clutter_path_add_string ()">clutter_path_add_string</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
81
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
|
82
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-node" title="clutter_path_add_node ()">clutter_path_add_node</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
83
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-add-cairo-path" title="clutter_path_add_cairo_path ()">clutter_path_add_cairo_path</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
85
|
+
<em class="parameter"><code>const <a href="/home/ebassi/gnome/install/share/gtk-doc/html/cairo/cairo-Paths.html#cairo-path-t"><span class="type">cairo_path_t</span></a> *cpath</code></em>);
|
86
|
+
|
87
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterPath.html#clutter-path-get-n-nodes" title="clutter_path_get_n_nodes ()">clutter_path_get_n_nodes</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
88
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-get-node" title="clutter_path_get_node ()">clutter_path_get_node</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
89
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
90
|
+
<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
91
|
+
<span class="returnvalue">GSList</span> * <a class="link" href="ClutterPath.html#clutter-path-get-nodes" title="clutter_path_get_nodes ()">clutter_path_get_nodes</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-foreach" title="clutter_path_foreach ()">clutter_path_foreach</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
93
|
+
<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathCallback" title="ClutterPathCallback ()"><span class="type">ClutterPathCallback</span></a> callback</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
|
95
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-insert-node" title="clutter_path_insert_node ()">clutter_path_insert_node</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
96
|
+
<em class="parameter"><code><span class="type">gint</span> index_</code></em>,
|
97
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-remove-node" title="clutter_path_remove_node ()">clutter_path_remove_node</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
99
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>);
|
100
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-replace-node" title="clutter_path_replace_node ()">clutter_path_replace_node</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
101
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
102
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
103
|
+
<span class="returnvalue">gchar</span> * <a class="link" href="ClutterPath.html#clutter-path-get-description" title="clutter_path_get_description ()">clutter_path_get_description</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
104
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterPath.html#clutter-path-set-description" title="clutter_path_set_description ()">clutter_path_set_description</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
105
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
|
106
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-to-cairo-path" title="clutter_path_to_cairo_path ()">clutter_path_to_cairo_path</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
107
|
+
<em class="parameter"><code><a href="/home/ebassi/gnome/install/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>);
|
108
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-clear" title="clutter_path_clear ()">clutter_path_clear</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
109
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterPath.html#clutter-path-get-position" title="clutter_path_get_position ()">clutter_path_get_position</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
110
|
+
<em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
|
111
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterKnot" title="struct ClutterKnot"><span class="type">ClutterKnot</span></a> *position</code></em>);
|
112
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterPath.html#clutter-path-get-length" title="clutter_path_get_length ()">clutter_path_get_length</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);
|
113
|
+
|
114
|
+
struct <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode">ClutterPathNode</a>;
|
115
|
+
<a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="returnvalue">ClutterPathNode</span></a> * <a class="link" href="ClutterPath.html#clutter-path-node-copy" title="clutter_path_node_copy ()">clutter_path_node_copy</a> (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
116
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterPath.html#clutter-path-node-free" title="clutter_path_node_free ()">clutter_path_node_free</a> (<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);
|
117
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterPath.html#clutter-path-node-equal" title="clutter_path_node_equal ()">clutter_path_node_equal</a> (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node_a</code></em>,
|
118
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node_b</code></em>);
|
119
|
+
</pre>
|
120
|
+
</div>
|
121
|
+
<div class="refsect1">
|
122
|
+
<a name="ClutterPath.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
123
|
+
<pre class="synopsis">
|
124
|
+
GObject
|
125
|
+
+----GInitiallyUnowned
|
126
|
+
+----ClutterPath
|
127
|
+
</pre>
|
128
|
+
</div>
|
129
|
+
<div class="refsect1">
|
130
|
+
<a name="ClutterPath.properties"></a><h2>Properties</h2>
|
131
|
+
<pre class="synopsis">
|
132
|
+
"<a class="link" href="ClutterPath.html#ClutterPath--description" title='The "description" property'>description</a>" <span class="type">gchar</span>* : Read / Write
|
133
|
+
"<a class="link" href="ClutterPath.html#ClutterPath--length" title='The "length" property'>length</a>" <span class="type">guint</span> : Read
|
134
|
+
</pre>
|
135
|
+
</div>
|
136
|
+
<div class="refsect1">
|
137
|
+
<a name="ClutterPath.description"></a><h2>Description</h2>
|
138
|
+
<p>
|
139
|
+
A <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> contains a description of a path consisting of
|
140
|
+
straight lines and bezier curves. This can be used in a
|
141
|
+
<a class="link" href="ClutterBehaviourPath.html" title="ClutterBehaviourPath"><span class="type">ClutterBehaviourPath</span></a> to animate an actor moving along the path.
|
142
|
+
</p>
|
143
|
+
<p>
|
144
|
+
The path consists of a series of nodes. Each node is one of the
|
145
|
+
following four types:
|
146
|
+
</p>
|
147
|
+
<p>
|
148
|
+
</p>
|
149
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
150
|
+
<colgroup>
|
151
|
+
<col align="left" valign="top">
|
152
|
+
<col>
|
153
|
+
</colgroup>
|
154
|
+
<tbody>
|
155
|
+
<tr>
|
156
|
+
<td><p><span class="term"><a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a></span></p></td>
|
157
|
+
<td><p>
|
158
|
+
Changes the position of the path to the given pair of
|
159
|
+
coordinates. This is usually used as the first node of a path to
|
160
|
+
mark the start position. If it is used in the middle of a path then
|
161
|
+
the path will be disjoint and the actor will appear to jump to the
|
162
|
+
new position when animated.
|
163
|
+
</p></td>
|
164
|
+
</tr>
|
165
|
+
<tr>
|
166
|
+
<td><p><span class="term"><a class="link" href="ClutterPath.html#CLUTTER-PATH-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_LINE_TO</code></a></span></p></td>
|
167
|
+
<td><p>
|
168
|
+
Creates a straight line from the previous point to the given point.
|
169
|
+
</p></td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td><p><span class="term"><a class="link" href="ClutterPath.html#CLUTTER-PATH-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_CURVE_TO</code></a></span></p></td>
|
173
|
+
<td><p>
|
174
|
+
Creates a bezier curve. The end of the last node is used as the
|
175
|
+
first control point and the three subsequent coordinates given in
|
176
|
+
the node as used as the other three.
|
177
|
+
</p></td>
|
178
|
+
</tr>
|
179
|
+
<tr>
|
180
|
+
<td><p><span class="term"><a class="link" href="ClutterPath.html#CLUTTER-PATH-CLOSE:CAPS"><code class="literal">CLUTTER_PATH_CLOSE</code></a></span></p></td>
|
181
|
+
<td><p>
|
182
|
+
Creates a straight line from the last node to the last
|
183
|
+
<a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> node. This can be used to close a path so
|
184
|
+
that it will appear as a loop when animated.
|
185
|
+
</p></td>
|
186
|
+
</tr>
|
187
|
+
</tbody>
|
188
|
+
</table></div>
|
189
|
+
<p>
|
190
|
+
</p>
|
191
|
+
<p>
|
192
|
+
The first three types have the corresponding relative versions
|
193
|
+
<a class="link" href="ClutterPath.html#CLUTTER-PATH-REL-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_REL_MOVE_TO</code></a>, <a class="link" href="ClutterPath.html#CLUTTER-PATH-REL-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_REL_LINE_TO</code></a> and
|
194
|
+
<a class="link" href="ClutterPath.html#CLUTTER-PATH-REL-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_REL_CURVE_TO</code></a>. These are exactly the same except the
|
195
|
+
coordinates are given relative to the previous node instead of as
|
196
|
+
direct screen positions.
|
197
|
+
</p>
|
198
|
+
<p>
|
199
|
+
You can build a path using the node adding functions such as
|
200
|
+
<a class="link" href="ClutterPath.html#clutter-path-add-line-to" title="clutter_path_add_line_to ()"><code class="function">clutter_path_add_line_to()</code></a>. Alternatively the path can be described
|
201
|
+
in a string using a subset of the SVG path syntax. See
|
202
|
+
<a class="link" href="ClutterPath.html#clutter-path-add-string" title="clutter_path_add_string ()"><code class="function">clutter_path_add_string()</code></a> for details.
|
203
|
+
</p>
|
204
|
+
<p>
|
205
|
+
<a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> is available since Clutter 1.0
|
206
|
+
</p>
|
207
|
+
</div>
|
208
|
+
<div class="refsect1">
|
209
|
+
<a name="ClutterPath.details"></a><h2>Details</h2>
|
210
|
+
<div class="refsect2">
|
211
|
+
<a name="ClutterPath-struct"></a><h3>ClutterPath</h3>
|
212
|
+
<pre class="programlisting">typedef struct _ClutterPath ClutterPath;</pre>
|
213
|
+
<p>
|
214
|
+
The <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> struct contains only private data and should
|
215
|
+
be accessed with the functions below.
|
216
|
+
</p>
|
217
|
+
<p class="since">Since 1.0</p>
|
218
|
+
</div>
|
219
|
+
<hr>
|
220
|
+
<div class="refsect2">
|
221
|
+
<a name="ClutterPathClass"></a><h3>struct ClutterPathClass</h3>
|
222
|
+
<pre class="programlisting">struct ClutterPathClass {
|
223
|
+
};
|
224
|
+
</pre>
|
225
|
+
<p>
|
226
|
+
The <a class="link" href="ClutterPath.html#ClutterPathClass" title="struct ClutterPathClass"><span class="type">ClutterPathClass</span></a> struct contains only private data.
|
227
|
+
</p>
|
228
|
+
<p class="since">Since 1.0</p>
|
229
|
+
</div>
|
230
|
+
<hr>
|
231
|
+
<div class="refsect2">
|
232
|
+
<a name="ClutterPathCallback"></a><h3>ClutterPathCallback ()</h3>
|
233
|
+
<pre class="programlisting"><span class="returnvalue">void</span> (*ClutterPathCallback) (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>,
|
234
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
235
|
+
<p>
|
236
|
+
This function is passed to <a class="link" href="ClutterPath.html#clutter-path-foreach" title="clutter_path_foreach ()"><code class="function">clutter_path_foreach()</code></a> and will be
|
237
|
+
called for each node contained in the path.
|
238
|
+
</p>
|
239
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
240
|
+
<colgroup>
|
241
|
+
<col align="left" valign="top">
|
242
|
+
<col>
|
243
|
+
</colgroup>
|
244
|
+
<tbody>
|
245
|
+
<tr>
|
246
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
247
|
+
<td>the node</td>
|
248
|
+
</tr>
|
249
|
+
<tr>
|
250
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
251
|
+
<td>optional data passed to the function. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
|
252
|
+
</td>
|
253
|
+
</tr>
|
254
|
+
</tbody>
|
255
|
+
</table></div>
|
256
|
+
<p class="since">Since 1.0</p>
|
257
|
+
</div>
|
258
|
+
<hr>
|
259
|
+
<div class="refsect2">
|
260
|
+
<a name="ClutterPathNodeType"></a><h3>enum ClutterPathNodeType</h3>
|
261
|
+
<pre class="programlisting">typedef enum {
|
262
|
+
CLUTTER_PATH_MOVE_TO = 0,
|
263
|
+
CLUTTER_PATH_LINE_TO = 1,
|
264
|
+
CLUTTER_PATH_CURVE_TO = 2,
|
265
|
+
CLUTTER_PATH_CLOSE = 3,
|
266
|
+
|
267
|
+
CLUTTER_PATH_REL_MOVE_TO = CLUTTER_PATH_MOVE_TO | CLUTTER_PATH_RELATIVE,
|
268
|
+
CLUTTER_PATH_REL_LINE_TO = CLUTTER_PATH_LINE_TO | CLUTTER_PATH_RELATIVE,
|
269
|
+
CLUTTER_PATH_REL_CURVE_TO = CLUTTER_PATH_CURVE_TO | CLUTTER_PATH_RELATIVE
|
270
|
+
} ClutterPathNodeType;
|
271
|
+
</pre>
|
272
|
+
<p>
|
273
|
+
Types of nodes in a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>.
|
274
|
+
</p>
|
275
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
276
|
+
<colgroup>
|
277
|
+
<col align="left" valign="top">
|
278
|
+
<col>
|
279
|
+
</colgroup>
|
280
|
+
<tbody>
|
281
|
+
<tr>
|
282
|
+
<td><p><a name="CLUTTER-PATH-MOVE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_MOVE_TO</code></span></p></td>
|
283
|
+
<td>jump to the given position
|
284
|
+
</td>
|
285
|
+
</tr>
|
286
|
+
<tr>
|
287
|
+
<td><p><a name="CLUTTER-PATH-LINE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_LINE_TO</code></span></p></td>
|
288
|
+
<td>create a line from the last node to the
|
289
|
+
given position
|
290
|
+
</td>
|
291
|
+
</tr>
|
292
|
+
<tr>
|
293
|
+
<td><p><a name="CLUTTER-PATH-CURVE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_CURVE_TO</code></span></p></td>
|
294
|
+
<td>bezier curve using the last position and
|
295
|
+
three control points.
|
296
|
+
</td>
|
297
|
+
</tr>
|
298
|
+
<tr>
|
299
|
+
<td><p><a name="CLUTTER-PATH-CLOSE:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_CLOSE</code></span></p></td>
|
300
|
+
<td>create a line from the last node to the last
|
301
|
+
<a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> node.
|
302
|
+
</td>
|
303
|
+
</tr>
|
304
|
+
<tr>
|
305
|
+
<td><p><a name="CLUTTER-PATH-REL-MOVE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_REL_MOVE_TO</code></span></p></td>
|
306
|
+
<td>same as <a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> but with
|
307
|
+
coordinates relative to the last node.
|
308
|
+
</td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td><p><a name="CLUTTER-PATH-REL-LINE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_REL_LINE_TO</code></span></p></td>
|
312
|
+
<td>same as <a class="link" href="ClutterPath.html#CLUTTER-PATH-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_LINE_TO</code></a> but with
|
313
|
+
coordinates relative to the last node.
|
314
|
+
</td>
|
315
|
+
</tr>
|
316
|
+
<tr>
|
317
|
+
<td><p><a name="CLUTTER-PATH-REL-CURVE-TO:CAPS"></a><span class="term"><code class="literal">CLUTTER_PATH_REL_CURVE_TO</code></span></p></td>
|
318
|
+
<td>same as <a class="link" href="ClutterPath.html#CLUTTER-PATH-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_CURVE_TO</code></a> but with
|
319
|
+
coordinates relative to the last node.
|
320
|
+
</td>
|
321
|
+
</tr>
|
322
|
+
</tbody>
|
323
|
+
</table></div>
|
324
|
+
<p class="since">Since 1.0</p>
|
325
|
+
</div>
|
326
|
+
<hr>
|
327
|
+
<div class="refsect2">
|
328
|
+
<a name="clutter-path-new"></a><h3>clutter_path_new ()</h3>
|
329
|
+
<pre class="programlisting"><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="returnvalue">ClutterPath</span></a> * clutter_path_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
330
|
+
<p>
|
331
|
+
Creates a new <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> instance with no nodes.
|
332
|
+
</p>
|
333
|
+
<p>
|
334
|
+
The object has a floating reference so if you add it to a
|
335
|
+
<a class="link" href="ClutterBehaviourPath.html" title="ClutterBehaviourPath"><span class="type">ClutterBehaviourPath</span></a> then you do not need to unref it.
|
336
|
+
</p>
|
337
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
338
|
+
<colgroup>
|
339
|
+
<col align="left" valign="top">
|
340
|
+
<col>
|
341
|
+
</colgroup>
|
342
|
+
<tbody><tr>
|
343
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
344
|
+
<td>the newly created <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
345
|
+
</td>
|
346
|
+
</tr></tbody>
|
347
|
+
</table></div>
|
348
|
+
<p class="since">Since 1.0</p>
|
349
|
+
</div>
|
350
|
+
<hr>
|
351
|
+
<div class="refsect2">
|
352
|
+
<a name="clutter-path-new-with-description"></a><h3>clutter_path_new_with_description ()</h3>
|
353
|
+
<pre class="programlisting"><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="returnvalue">ClutterPath</span></a> * clutter_path_new_with_description (<em class="parameter"><code>const <span class="type">gchar</span> *desc</code></em>);</pre>
|
354
|
+
<p>
|
355
|
+
Creates a new <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> instance with the nodes described in
|
356
|
+
<em class="parameter"><code>desc</code></em>. See <a class="link" href="ClutterPath.html#clutter-path-add-string" title="clutter_path_add_string ()"><code class="function">clutter_path_add_string()</code></a> for details of the format of
|
357
|
+
the string.
|
358
|
+
</p>
|
359
|
+
<p>
|
360
|
+
The object has a floating reference so if you add it to a
|
361
|
+
<a class="link" href="ClutterBehaviourPath.html" title="ClutterBehaviourPath"><span class="type">ClutterBehaviourPath</span></a> then you do not need to unref it.
|
362
|
+
</p>
|
363
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
364
|
+
<colgroup>
|
365
|
+
<col align="left" valign="top">
|
366
|
+
<col>
|
367
|
+
</colgroup>
|
368
|
+
<tbody>
|
369
|
+
<tr>
|
370
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
371
|
+
<td>a string describing the path</td>
|
372
|
+
</tr>
|
373
|
+
<tr>
|
374
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
375
|
+
<td>the newly created <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
376
|
+
</td>
|
377
|
+
</tr>
|
378
|
+
</tbody>
|
379
|
+
</table></div>
|
380
|
+
<p class="since">Since 1.0</p>
|
381
|
+
</div>
|
382
|
+
<hr>
|
383
|
+
<div class="refsect2">
|
384
|
+
<a name="clutter-path-add-move-to"></a><h3>clutter_path_add_move_to ()</h3>
|
385
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_move_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
386
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
387
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
388
|
+
<p>
|
389
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> type node to the path. This is usually
|
390
|
+
used as the first node in a path. It can also be used in the middle
|
391
|
+
of the path to cause the actor to jump to the new coordinate.
|
392
|
+
</p>
|
393
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
394
|
+
<colgroup>
|
395
|
+
<col align="left" valign="top">
|
396
|
+
<col>
|
397
|
+
</colgroup>
|
398
|
+
<tbody>
|
399
|
+
<tr>
|
400
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
401
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
402
|
+
</td>
|
403
|
+
</tr>
|
404
|
+
<tr>
|
405
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
406
|
+
<td>the x coordinate</td>
|
407
|
+
</tr>
|
408
|
+
<tr>
|
409
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
410
|
+
<td>the y coordinate</td>
|
411
|
+
</tr>
|
412
|
+
</tbody>
|
413
|
+
</table></div>
|
414
|
+
<p class="since">Since 1.0</p>
|
415
|
+
</div>
|
416
|
+
<hr>
|
417
|
+
<div class="refsect2">
|
418
|
+
<a name="clutter-path-add-rel-move-to"></a><h3>clutter_path_add_rel_move_to ()</h3>
|
419
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_rel_move_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
420
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
421
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
422
|
+
<p>
|
423
|
+
Same as <a class="link" href="ClutterPath.html#clutter-path-add-move-to" title="clutter_path_add_move_to ()"><code class="function">clutter_path_add_move_to()</code></a> except the coordinates are
|
424
|
+
relative to the previous node.
|
425
|
+
</p>
|
426
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
427
|
+
<colgroup>
|
428
|
+
<col align="left" valign="top">
|
429
|
+
<col>
|
430
|
+
</colgroup>
|
431
|
+
<tbody>
|
432
|
+
<tr>
|
433
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
434
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
435
|
+
</td>
|
436
|
+
</tr>
|
437
|
+
<tr>
|
438
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
439
|
+
<td>the x coordinate</td>
|
440
|
+
</tr>
|
441
|
+
<tr>
|
442
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
443
|
+
<td>the y coordinate</td>
|
444
|
+
</tr>
|
445
|
+
</tbody>
|
446
|
+
</table></div>
|
447
|
+
<p class="since">Since 1.0</p>
|
448
|
+
</div>
|
449
|
+
<hr>
|
450
|
+
<div class="refsect2">
|
451
|
+
<a name="clutter-path-add-line-to"></a><h3>clutter_path_add_line_to ()</h3>
|
452
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_line_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
453
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
454
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
455
|
+
<p>
|
456
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_LINE_TO</code></a> type node to the path. This causes the
|
457
|
+
actor to move to the new coordinates in a straight line.
|
458
|
+
</p>
|
459
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
460
|
+
<colgroup>
|
461
|
+
<col align="left" valign="top">
|
462
|
+
<col>
|
463
|
+
</colgroup>
|
464
|
+
<tbody>
|
465
|
+
<tr>
|
466
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
467
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
468
|
+
</td>
|
469
|
+
</tr>
|
470
|
+
<tr>
|
471
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
472
|
+
<td>the x coordinate</td>
|
473
|
+
</tr>
|
474
|
+
<tr>
|
475
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
476
|
+
<td>the y coordinate</td>
|
477
|
+
</tr>
|
478
|
+
</tbody>
|
479
|
+
</table></div>
|
480
|
+
<p class="since">Since 1.0</p>
|
481
|
+
</div>
|
482
|
+
<hr>
|
483
|
+
<div class="refsect2">
|
484
|
+
<a name="clutter-path-add-rel-line-to"></a><h3>clutter_path_add_rel_line_to ()</h3>
|
485
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_rel_line_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
486
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
487
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
488
|
+
<p>
|
489
|
+
Same as <a class="link" href="ClutterPath.html#clutter-path-add-line-to" title="clutter_path_add_line_to ()"><code class="function">clutter_path_add_line_to()</code></a> except the coordinates are
|
490
|
+
relative to the previous node.
|
491
|
+
</p>
|
492
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
493
|
+
<colgroup>
|
494
|
+
<col align="left" valign="top">
|
495
|
+
<col>
|
496
|
+
</colgroup>
|
497
|
+
<tbody>
|
498
|
+
<tr>
|
499
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
500
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
501
|
+
</td>
|
502
|
+
</tr>
|
503
|
+
<tr>
|
504
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
505
|
+
<td>the x coordinate</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
509
|
+
<td>the y coordinate</td>
|
510
|
+
</tr>
|
511
|
+
</tbody>
|
512
|
+
</table></div>
|
513
|
+
<p class="since">Since 1.0</p>
|
514
|
+
</div>
|
515
|
+
<hr>
|
516
|
+
<div class="refsect2">
|
517
|
+
<a name="clutter-path-add-curve-to"></a><h3>clutter_path_add_curve_to ()</h3>
|
518
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_curve_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
519
|
+
<em class="parameter"><code><span class="type">gint</span> x_1</code></em>,
|
520
|
+
<em class="parameter"><code><span class="type">gint</span> y_1</code></em>,
|
521
|
+
<em class="parameter"><code><span class="type">gint</span> x_2</code></em>,
|
522
|
+
<em class="parameter"><code><span class="type">gint</span> y_2</code></em>,
|
523
|
+
<em class="parameter"><code><span class="type">gint</span> x_3</code></em>,
|
524
|
+
<em class="parameter"><code><span class="type">gint</span> y_3</code></em>);</pre>
|
525
|
+
<p>
|
526
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_CURVE_TO</code></a> type node to the path. This causes
|
527
|
+
the actor to follow a bezier from the last node to (<em class="parameter"><code>x_3</code></em>, <em class="parameter"><code>y_3</code></em>) using
|
528
|
+
(<em class="parameter"><code>x_1</code></em>, <em class="parameter"><code>y_1</code></em>) and (<em class="parameter"><code>x_2</code></em>,<em class="parameter"><code>y_2</code></em>) as control points.
|
529
|
+
</p>
|
530
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
531
|
+
<colgroup>
|
532
|
+
<col align="left" valign="top">
|
533
|
+
<col>
|
534
|
+
</colgroup>
|
535
|
+
<tbody>
|
536
|
+
<tr>
|
537
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
538
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
539
|
+
</td>
|
540
|
+
</tr>
|
541
|
+
<tr>
|
542
|
+
<td><p><span class="term"><em class="parameter"><code>x_1</code></em> :</span></p></td>
|
543
|
+
<td>the x coordinate of the first control point</td>
|
544
|
+
</tr>
|
545
|
+
<tr>
|
546
|
+
<td><p><span class="term"><em class="parameter"><code>y_1</code></em> :</span></p></td>
|
547
|
+
<td>the y coordinate of the first control point</td>
|
548
|
+
</tr>
|
549
|
+
<tr>
|
550
|
+
<td><p><span class="term"><em class="parameter"><code>x_2</code></em> :</span></p></td>
|
551
|
+
<td>the x coordinate of the second control point</td>
|
552
|
+
</tr>
|
553
|
+
<tr>
|
554
|
+
<td><p><span class="term"><em class="parameter"><code>y_2</code></em> :</span></p></td>
|
555
|
+
<td>the y coordinate of the second control point</td>
|
556
|
+
</tr>
|
557
|
+
<tr>
|
558
|
+
<td><p><span class="term"><em class="parameter"><code>x_3</code></em> :</span></p></td>
|
559
|
+
<td>the x coordinate of the third control point</td>
|
560
|
+
</tr>
|
561
|
+
<tr>
|
562
|
+
<td><p><span class="term"><em class="parameter"><code>y_3</code></em> :</span></p></td>
|
563
|
+
<td>the y coordinate of the third control point</td>
|
564
|
+
</tr>
|
565
|
+
</tbody>
|
566
|
+
</table></div>
|
567
|
+
<p class="since">Since 1.0</p>
|
568
|
+
</div>
|
569
|
+
<hr>
|
570
|
+
<div class="refsect2">
|
571
|
+
<a name="clutter-path-add-rel-curve-to"></a><h3>clutter_path_add_rel_curve_to ()</h3>
|
572
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_rel_curve_to (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
573
|
+
<em class="parameter"><code><span class="type">gint</span> x_1</code></em>,
|
574
|
+
<em class="parameter"><code><span class="type">gint</span> y_1</code></em>,
|
575
|
+
<em class="parameter"><code><span class="type">gint</span> x_2</code></em>,
|
576
|
+
<em class="parameter"><code><span class="type">gint</span> y_2</code></em>,
|
577
|
+
<em class="parameter"><code><span class="type">gint</span> x_3</code></em>,
|
578
|
+
<em class="parameter"><code><span class="type">gint</span> y_3</code></em>);</pre>
|
579
|
+
<p>
|
580
|
+
Same as <a class="link" href="ClutterPath.html#clutter-path-add-curve-to" title="clutter_path_add_curve_to ()"><code class="function">clutter_path_add_curve_to()</code></a> except the coordinates are
|
581
|
+
relative to the previous node.
|
582
|
+
</p>
|
583
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
584
|
+
<colgroup>
|
585
|
+
<col align="left" valign="top">
|
586
|
+
<col>
|
587
|
+
</colgroup>
|
588
|
+
<tbody>
|
589
|
+
<tr>
|
590
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
591
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
592
|
+
</td>
|
593
|
+
</tr>
|
594
|
+
<tr>
|
595
|
+
<td><p><span class="term"><em class="parameter"><code>x_1</code></em> :</span></p></td>
|
596
|
+
<td>the x coordinate of the first control point</td>
|
597
|
+
</tr>
|
598
|
+
<tr>
|
599
|
+
<td><p><span class="term"><em class="parameter"><code>y_1</code></em> :</span></p></td>
|
600
|
+
<td>the y coordinate of the first control point</td>
|
601
|
+
</tr>
|
602
|
+
<tr>
|
603
|
+
<td><p><span class="term"><em class="parameter"><code>x_2</code></em> :</span></p></td>
|
604
|
+
<td>the x coordinate of the second control point</td>
|
605
|
+
</tr>
|
606
|
+
<tr>
|
607
|
+
<td><p><span class="term"><em class="parameter"><code>y_2</code></em> :</span></p></td>
|
608
|
+
<td>the y coordinate of the second control point</td>
|
609
|
+
</tr>
|
610
|
+
<tr>
|
611
|
+
<td><p><span class="term"><em class="parameter"><code>x_3</code></em> :</span></p></td>
|
612
|
+
<td>the x coordinate of the third control point</td>
|
613
|
+
</tr>
|
614
|
+
<tr>
|
615
|
+
<td><p><span class="term"><em class="parameter"><code>y_3</code></em> :</span></p></td>
|
616
|
+
<td>the y coordinate of the third control point</td>
|
617
|
+
</tr>
|
618
|
+
</tbody>
|
619
|
+
</table></div>
|
620
|
+
<p class="since">Since 1.0</p>
|
621
|
+
</div>
|
622
|
+
<hr>
|
623
|
+
<div class="refsect2">
|
624
|
+
<a name="clutter-path-add-close"></a><h3>clutter_path_add_close ()</h3>
|
625
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_close (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
626
|
+
<p>
|
627
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-CLOSE:CAPS"><code class="literal">CLUTTER_PATH_CLOSE</code></a> type node to the path. This creates a
|
628
|
+
straight line from the last node to the last <a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a>
|
629
|
+
type node.
|
630
|
+
</p>
|
631
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
632
|
+
<colgroup>
|
633
|
+
<col align="left" valign="top">
|
634
|
+
<col>
|
635
|
+
</colgroup>
|
636
|
+
<tbody><tr>
|
637
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
638
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
639
|
+
</td>
|
640
|
+
</tr></tbody>
|
641
|
+
</table></div>
|
642
|
+
<p class="since">Since 1.0</p>
|
643
|
+
</div>
|
644
|
+
<hr>
|
645
|
+
<div class="refsect2">
|
646
|
+
<a name="clutter-path-add-string"></a><h3>clutter_path_add_string ()</h3>
|
647
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_path_add_string (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
648
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
|
649
|
+
<p>
|
650
|
+
Adds new nodes to the end of the path as described in <em class="parameter"><code>str</code></em>. The
|
651
|
+
format is a subset of the SVG path format. Each node is represented
|
652
|
+
by a letter and is followed by zero, one or three pairs of
|
653
|
+
coordinates. The coordinates can be separated by spaces or a
|
654
|
+
comma. The types are:
|
655
|
+
</p>
|
656
|
+
<p>
|
657
|
+
</p>
|
658
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
659
|
+
<colgroup>
|
660
|
+
<col align="left" valign="top">
|
661
|
+
<col>
|
662
|
+
</colgroup>
|
663
|
+
<tbody>
|
664
|
+
<tr>
|
665
|
+
<td><p><span class="term">M</span></p></td>
|
666
|
+
<td><p>
|
667
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> node. Takes one pair of coordinates.
|
668
|
+
</p></td>
|
669
|
+
</tr>
|
670
|
+
<tr>
|
671
|
+
<td><p><span class="term">L</span></p></td>
|
672
|
+
<td><p>
|
673
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_LINE_TO</code></a> node. Takes one pair of coordinates.
|
674
|
+
</p></td>
|
675
|
+
</tr>
|
676
|
+
<tr>
|
677
|
+
<td><p><span class="term">C</span></p></td>
|
678
|
+
<td><p>
|
679
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_CURVE_TO</code></a> node. Takes three pairs of coordinates.
|
680
|
+
</p></td>
|
681
|
+
</tr>
|
682
|
+
<tr>
|
683
|
+
<td><p><span class="term">z</span></p></td>
|
684
|
+
<td><p>
|
685
|
+
Adds a <a class="link" href="ClutterPath.html#CLUTTER-PATH-CLOSE:CAPS"><code class="literal">CLUTTER_PATH_CLOSE</code></a> node. No coordinates are needed.
|
686
|
+
</p></td>
|
687
|
+
</tr>
|
688
|
+
</tbody>
|
689
|
+
</table></div>
|
690
|
+
<p>
|
691
|
+
</p>
|
692
|
+
<p>
|
693
|
+
The M, L and C commands can also be specified in lower case which
|
694
|
+
means the coordinates are relative to the previous node.
|
695
|
+
</p>
|
696
|
+
<p>
|
697
|
+
For example, to move an actor in a 100 by 100 pixel square centered
|
698
|
+
on the point 300,300 you could use the following path:
|
699
|
+
</p>
|
700
|
+
<p>
|
701
|
+
</p>
|
702
|
+
<div class="informalexample">
|
703
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
704
|
+
<tbody>
|
705
|
+
<tr>
|
706
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
707
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">M </span><span class="number">250</span><span class="symbol">,</span><span class="number">350</span><span class="normal"> l </span><span class="number">0</span><span class="normal"> </span><span class="symbol">-</span><span class="number">100</span><span class="normal"> L </span><span class="number">350</span><span class="symbol">,</span><span class="number">250</span><span class="normal"> l </span><span class="number">0</span><span class="normal"> </span><span class="number">100</span><span class="normal"> z</span></pre></td>
|
708
|
+
</tr>
|
709
|
+
</tbody>
|
710
|
+
</table>
|
711
|
+
</div>
|
712
|
+
|
713
|
+
<p>
|
714
|
+
</p>
|
715
|
+
<p>
|
716
|
+
If the path description isn't valid <code class="literal">FALSE</code> will be returned and no
|
717
|
+
nodes will be added.
|
718
|
+
</p>
|
719
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
720
|
+
<colgroup>
|
721
|
+
<col align="left" valign="top">
|
722
|
+
<col>
|
723
|
+
</colgroup>
|
724
|
+
<tbody>
|
725
|
+
<tr>
|
726
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
727
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
728
|
+
</td>
|
729
|
+
</tr>
|
730
|
+
<tr>
|
731
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
732
|
+
<td>a string describing the new nodes</td>
|
733
|
+
</tr>
|
734
|
+
<tr>
|
735
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
736
|
+
<td>
|
737
|
+
<code class="literal">TRUE</code> is the path description was valid or <code class="literal">FALSE</code>
|
738
|
+
otherwise.</td>
|
739
|
+
</tr>
|
740
|
+
</tbody>
|
741
|
+
</table></div>
|
742
|
+
<p class="since">Since 1.0</p>
|
743
|
+
</div>
|
744
|
+
<hr>
|
745
|
+
<div class="refsect2">
|
746
|
+
<a name="clutter-path-add-node"></a><h3>clutter_path_add_node ()</h3>
|
747
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_node (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
748
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
749
|
+
<p>
|
750
|
+
Adds <em class="parameter"><code>node</code></em> to the end of the path.
|
751
|
+
</p>
|
752
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
753
|
+
<colgroup>
|
754
|
+
<col align="left" valign="top">
|
755
|
+
<col>
|
756
|
+
</colgroup>
|
757
|
+
<tbody>
|
758
|
+
<tr>
|
759
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
760
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
761
|
+
</td>
|
762
|
+
</tr>
|
763
|
+
<tr>
|
764
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
765
|
+
<td>a <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a>
|
766
|
+
</td>
|
767
|
+
</tr>
|
768
|
+
</tbody>
|
769
|
+
</table></div>
|
770
|
+
<p class="since">Since 1.0</p>
|
771
|
+
</div>
|
772
|
+
<hr>
|
773
|
+
<div class="refsect2">
|
774
|
+
<a name="clutter-path-add-cairo-path"></a><h3>clutter_path_add_cairo_path ()</h3>
|
775
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_add_cairo_path (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
776
|
+
<em class="parameter"><code>const <a href="/home/ebassi/gnome/install/share/gtk-doc/html/cairo/cairo-Paths.html#cairo-path-t"><span class="type">cairo_path_t</span></a> *cpath</code></em>);</pre>
|
777
|
+
<p>
|
778
|
+
Add the nodes of the Cairo path to the end of <em class="parameter"><code>path</code></em>.
|
779
|
+
</p>
|
780
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
781
|
+
<colgroup>
|
782
|
+
<col align="left" valign="top">
|
783
|
+
<col>
|
784
|
+
</colgroup>
|
785
|
+
<tbody>
|
786
|
+
<tr>
|
787
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
788
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
789
|
+
</td>
|
790
|
+
</tr>
|
791
|
+
<tr>
|
792
|
+
<td><p><span class="term"><em class="parameter"><code>cpath</code></em> :</span></p></td>
|
793
|
+
<td>a Cairo path</td>
|
794
|
+
</tr>
|
795
|
+
</tbody>
|
796
|
+
</table></div>
|
797
|
+
<p class="since">Since 1.0</p>
|
798
|
+
</div>
|
799
|
+
<hr>
|
800
|
+
<div class="refsect2">
|
801
|
+
<a name="clutter-path-get-n-nodes"></a><h3>clutter_path_get_n_nodes ()</h3>
|
802
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_path_get_n_nodes (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
803
|
+
<p>
|
804
|
+
Retrieves the number of nodes in the path.
|
805
|
+
</p>
|
806
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
807
|
+
<colgroup>
|
808
|
+
<col align="left" valign="top">
|
809
|
+
<col>
|
810
|
+
</colgroup>
|
811
|
+
<tbody>
|
812
|
+
<tr>
|
813
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
814
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
815
|
+
</td>
|
816
|
+
</tr>
|
817
|
+
<tr>
|
818
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
819
|
+
<td>the number of nodes.</td>
|
820
|
+
</tr>
|
821
|
+
</tbody>
|
822
|
+
</table></div>
|
823
|
+
<p class="since">Since 1.0</p>
|
824
|
+
</div>
|
825
|
+
<hr>
|
826
|
+
<div class="refsect2">
|
827
|
+
<a name="clutter-path-get-node"></a><h3>clutter_path_get_node ()</h3>
|
828
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_get_node (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
829
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
830
|
+
<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
831
|
+
<p>
|
832
|
+
Retrieves the node of the path indexed by <em class="parameter"><code>index</code></em>.
|
833
|
+
</p>
|
834
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
835
|
+
<colgroup>
|
836
|
+
<col align="left" valign="top">
|
837
|
+
<col>
|
838
|
+
</colgroup>
|
839
|
+
<tbody>
|
840
|
+
<tr>
|
841
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
842
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
843
|
+
</td>
|
844
|
+
</tr>
|
845
|
+
<tr>
|
846
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
847
|
+
<td>the node number to retrieve</td>
|
848
|
+
</tr>
|
849
|
+
<tr>
|
850
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
851
|
+
<td>a location to store a copy of the node. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
852
|
+
</td>
|
853
|
+
</tr>
|
854
|
+
</tbody>
|
855
|
+
</table></div>
|
856
|
+
<p class="since">Since 1.0</p>
|
857
|
+
</div>
|
858
|
+
<hr>
|
859
|
+
<div class="refsect2">
|
860
|
+
<a name="clutter-path-get-nodes"></a><h3>clutter_path_get_nodes ()</h3>
|
861
|
+
<pre class="programlisting"><span class="returnvalue">GSList</span> * clutter_path_get_nodes (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
862
|
+
<p>
|
863
|
+
Returns a <span class="type">GSList</span> of <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a>s. The list should be
|
864
|
+
freed with <code class="function">g_slist_free()</code>. The nodes are owned by the path and
|
865
|
+
should not be freed. Altering the path may cause the nodes in the
|
866
|
+
list to become invalid so you should copy them if you want to keep
|
867
|
+
the list.
|
868
|
+
</p>
|
869
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
870
|
+
<colgroup>
|
871
|
+
<col align="left" valign="top">
|
872
|
+
<col>
|
873
|
+
</colgroup>
|
874
|
+
<tbody>
|
875
|
+
<tr>
|
876
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
877
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
878
|
+
</td>
|
879
|
+
</tr>
|
880
|
+
<tr>
|
881
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
882
|
+
<td>a
|
883
|
+
list of nodes in the path. <span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Clutter.PathNode]</span>
|
884
|
+
</td>
|
885
|
+
</tr>
|
886
|
+
</tbody>
|
887
|
+
</table></div>
|
888
|
+
<p class="since">Since 1.0</p>
|
889
|
+
</div>
|
890
|
+
<hr>
|
891
|
+
<div class="refsect2">
|
892
|
+
<a name="clutter-path-foreach"></a><h3>clutter_path_foreach ()</h3>
|
893
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_foreach (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
894
|
+
<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathCallback" title="ClutterPathCallback ()"><span class="type">ClutterPathCallback</span></a> callback</code></em>,
|
895
|
+
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
|
896
|
+
<p>
|
897
|
+
Calls a function for each node of the path.
|
898
|
+
</p>
|
899
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
900
|
+
<colgroup>
|
901
|
+
<col align="left" valign="top">
|
902
|
+
<col>
|
903
|
+
</colgroup>
|
904
|
+
<tbody>
|
905
|
+
<tr>
|
906
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
907
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
908
|
+
</td>
|
909
|
+
</tr>
|
910
|
+
<tr>
|
911
|
+
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
|
912
|
+
<td>the function to call with each node. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
913
|
+
</td>
|
914
|
+
</tr>
|
915
|
+
<tr>
|
916
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
917
|
+
<td>user data to pass to the function</td>
|
918
|
+
</tr>
|
919
|
+
</tbody>
|
920
|
+
</table></div>
|
921
|
+
<p class="since">Since 1.0</p>
|
922
|
+
</div>
|
923
|
+
<hr>
|
924
|
+
<div class="refsect2">
|
925
|
+
<a name="clutter-path-insert-node"></a><h3>clutter_path_insert_node ()</h3>
|
926
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_insert_node (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
927
|
+
<em class="parameter"><code><span class="type">gint</span> index_</code></em>,
|
928
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
929
|
+
<p>
|
930
|
+
Inserts <em class="parameter"><code>node</code></em> into the path before the node at the given offset. If
|
931
|
+
<em class="parameter"><code>index_</code></em> is negative it will append the node to the end of the path.
|
932
|
+
</p>
|
933
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
934
|
+
<colgroup>
|
935
|
+
<col align="left" valign="top">
|
936
|
+
<col>
|
937
|
+
</colgroup>
|
938
|
+
<tbody>
|
939
|
+
<tr>
|
940
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
941
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
942
|
+
</td>
|
943
|
+
</tr>
|
944
|
+
<tr>
|
945
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
946
|
+
<td>offset of where to insert the node</td>
|
947
|
+
</tr>
|
948
|
+
<tr>
|
949
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
950
|
+
<td>the node to insert</td>
|
951
|
+
</tr>
|
952
|
+
</tbody>
|
953
|
+
</table></div>
|
954
|
+
<p class="since">Since 1.0</p>
|
955
|
+
</div>
|
956
|
+
<hr>
|
957
|
+
<div class="refsect2">
|
958
|
+
<a name="clutter-path-remove-node"></a><h3>clutter_path_remove_node ()</h3>
|
959
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_remove_node (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
960
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>);</pre>
|
961
|
+
<p>
|
962
|
+
Removes the node at the given offset from the path.
|
963
|
+
</p>
|
964
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
965
|
+
<colgroup>
|
966
|
+
<col align="left" valign="top">
|
967
|
+
<col>
|
968
|
+
</colgroup>
|
969
|
+
<tbody>
|
970
|
+
<tr>
|
971
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
972
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
973
|
+
</td>
|
974
|
+
</tr>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
977
|
+
<td>index of the node to remove</td>
|
978
|
+
</tr>
|
979
|
+
</tbody>
|
980
|
+
</table></div>
|
981
|
+
<p class="since">Since 1.0</p>
|
982
|
+
</div>
|
983
|
+
<hr>
|
984
|
+
<div class="refsect2">
|
985
|
+
<a name="clutter-path-replace-node"></a><h3>clutter_path_replace_node ()</h3>
|
986
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_replace_node (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
987
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
988
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
989
|
+
<p>
|
990
|
+
Replaces the node at offset <em class="parameter"><code>index_</code></em> with <em class="parameter"><code>node</code></em>.
|
991
|
+
</p>
|
992
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
993
|
+
<colgroup>
|
994
|
+
<col align="left" valign="top">
|
995
|
+
<col>
|
996
|
+
</colgroup>
|
997
|
+
<tbody>
|
998
|
+
<tr>
|
999
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1000
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1001
|
+
</td>
|
1002
|
+
</tr>
|
1003
|
+
<tr>
|
1004
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
1005
|
+
<td>index to the existing node</td>
|
1006
|
+
</tr>
|
1007
|
+
<tr>
|
1008
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
1009
|
+
<td>the replacement node</td>
|
1010
|
+
</tr>
|
1011
|
+
</tbody>
|
1012
|
+
</table></div>
|
1013
|
+
<p class="since">Since 1.0</p>
|
1014
|
+
</div>
|
1015
|
+
<hr>
|
1016
|
+
<div class="refsect2">
|
1017
|
+
<a name="clutter-path-get-description"></a><h3>clutter_path_get_description ()</h3>
|
1018
|
+
<pre class="programlisting"><span class="returnvalue">gchar</span> * clutter_path_get_description (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
1019
|
+
<p>
|
1020
|
+
Returns a newly allocated string describing the path in the same
|
1021
|
+
format as used by <a class="link" href="ClutterPath.html#clutter-path-add-string" title="clutter_path_add_string ()"><code class="function">clutter_path_add_string()</code></a>.
|
1022
|
+
</p>
|
1023
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1024
|
+
<colgroup>
|
1025
|
+
<col align="left" valign="top">
|
1026
|
+
<col>
|
1027
|
+
</colgroup>
|
1028
|
+
<tbody>
|
1029
|
+
<tr>
|
1030
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1031
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1032
|
+
</td>
|
1033
|
+
</tr>
|
1034
|
+
<tr>
|
1035
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1036
|
+
<td>a string description of the path. Free with <code class="function">g_free()</code>.</td>
|
1037
|
+
</tr>
|
1038
|
+
</tbody>
|
1039
|
+
</table></div>
|
1040
|
+
<p class="since">Since 1.0</p>
|
1041
|
+
</div>
|
1042
|
+
<hr>
|
1043
|
+
<div class="refsect2">
|
1044
|
+
<a name="clutter-path-set-description"></a><h3>clutter_path_set_description ()</h3>
|
1045
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_path_set_description (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
1046
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
|
1047
|
+
<p>
|
1048
|
+
Replaces all of the nodes in the path with nodes described by
|
1049
|
+
<em class="parameter"><code>str</code></em>. See <a class="link" href="ClutterPath.html#clutter-path-add-string" title="clutter_path_add_string ()"><code class="function">clutter_path_add_string()</code></a> for details of the format.
|
1050
|
+
</p>
|
1051
|
+
<p>
|
1052
|
+
If the string is invalid then <code class="literal">FALSE</code> is returned and the path is
|
1053
|
+
unaltered.
|
1054
|
+
</p>
|
1055
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1056
|
+
<colgroup>
|
1057
|
+
<col align="left" valign="top">
|
1058
|
+
<col>
|
1059
|
+
</colgroup>
|
1060
|
+
<tbody>
|
1061
|
+
<tr>
|
1062
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1063
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1064
|
+
</td>
|
1065
|
+
</tr>
|
1066
|
+
<tr>
|
1067
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
1068
|
+
<td>a string describing the path</td>
|
1069
|
+
</tr>
|
1070
|
+
<tr>
|
1071
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1072
|
+
<td>
|
1073
|
+
<code class="literal">TRUE</code> is the path was valid, <code class="literal">FALSE</code> otherwise.</td>
|
1074
|
+
</tr>
|
1075
|
+
</tbody>
|
1076
|
+
</table></div>
|
1077
|
+
<p class="since">Since 1.0</p>
|
1078
|
+
</div>
|
1079
|
+
<hr>
|
1080
|
+
<div class="refsect2">
|
1081
|
+
<a name="clutter-path-to-cairo-path"></a><h3>clutter_path_to_cairo_path ()</h3>
|
1082
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_to_cairo_path (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
1083
|
+
<em class="parameter"><code><a href="/home/ebassi/gnome/install/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
|
1084
|
+
<p>
|
1085
|
+
Add the nodes of the ClutterPath to the path in the Cairo context.
|
1086
|
+
</p>
|
1087
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1088
|
+
<colgroup>
|
1089
|
+
<col align="left" valign="top">
|
1090
|
+
<col>
|
1091
|
+
</colgroup>
|
1092
|
+
<tbody>
|
1093
|
+
<tr>
|
1094
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1095
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1096
|
+
</td>
|
1097
|
+
</tr>
|
1098
|
+
<tr>
|
1099
|
+
<td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
|
1100
|
+
<td>a Cairo context</td>
|
1101
|
+
</tr>
|
1102
|
+
</tbody>
|
1103
|
+
</table></div>
|
1104
|
+
<p class="since">Since 1.0</p>
|
1105
|
+
</div>
|
1106
|
+
<hr>
|
1107
|
+
<div class="refsect2">
|
1108
|
+
<a name="clutter-path-clear"></a><h3>clutter_path_clear ()</h3>
|
1109
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_clear (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
1110
|
+
<p>
|
1111
|
+
Removes all nodes from the path.
|
1112
|
+
</p>
|
1113
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1114
|
+
<colgroup>
|
1115
|
+
<col align="left" valign="top">
|
1116
|
+
<col>
|
1117
|
+
</colgroup>
|
1118
|
+
<tbody><tr>
|
1119
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1120
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1121
|
+
</td>
|
1122
|
+
</tr></tbody>
|
1123
|
+
</table></div>
|
1124
|
+
<p class="since">Since 1.0</p>
|
1125
|
+
</div>
|
1126
|
+
<hr>
|
1127
|
+
<div class="refsect2">
|
1128
|
+
<a name="clutter-path-get-position"></a><h3>clutter_path_get_position ()</h3>
|
1129
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_path_get_position (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>,
|
1130
|
+
<em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
|
1131
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterKnot" title="struct ClutterKnot"><span class="type">ClutterKnot</span></a> *position</code></em>);</pre>
|
1132
|
+
<p>
|
1133
|
+
The value in <em class="parameter"><code>progress</code></em> represents a position along the path where
|
1134
|
+
0.0 is the beginning and 1.0 is the end of the path. An
|
1135
|
+
interpolated position is then stored in <em class="parameter"><code>position</code></em>.
|
1136
|
+
</p>
|
1137
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1138
|
+
<colgroup>
|
1139
|
+
<col align="left" valign="top">
|
1140
|
+
<col>
|
1141
|
+
</colgroup>
|
1142
|
+
<tbody>
|
1143
|
+
<tr>
|
1144
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1145
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1146
|
+
</td>
|
1147
|
+
</tr>
|
1148
|
+
<tr>
|
1149
|
+
<td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
|
1150
|
+
<td>a position along the path as a fraction of its length</td>
|
1151
|
+
</tr>
|
1152
|
+
<tr>
|
1153
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
1154
|
+
<td>location to store the position. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1155
|
+
</td>
|
1156
|
+
</tr>
|
1157
|
+
<tr>
|
1158
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1159
|
+
<td>index of the node used to calculate the position.</td>
|
1160
|
+
</tr>
|
1161
|
+
</tbody>
|
1162
|
+
</table></div>
|
1163
|
+
<p class="since">Since 1.0</p>
|
1164
|
+
</div>
|
1165
|
+
<hr>
|
1166
|
+
<div class="refsect2">
|
1167
|
+
<a name="clutter-path-get-length"></a><h3>clutter_path_get_length ()</h3>
|
1168
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_path_get_length (<em class="parameter"><code><a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a> *path</code></em>);</pre>
|
1169
|
+
<p>
|
1170
|
+
Retrieves an approximation of the total length of the path.
|
1171
|
+
</p>
|
1172
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1173
|
+
<colgroup>
|
1174
|
+
<col align="left" valign="top">
|
1175
|
+
<col>
|
1176
|
+
</colgroup>
|
1177
|
+
<tbody>
|
1178
|
+
<tr>
|
1179
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1180
|
+
<td>a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>
|
1181
|
+
</td>
|
1182
|
+
</tr>
|
1183
|
+
<tr>
|
1184
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1185
|
+
<td>the length of the path.</td>
|
1186
|
+
</tr>
|
1187
|
+
</tbody>
|
1188
|
+
</table></div>
|
1189
|
+
<p class="since">Since 1.0</p>
|
1190
|
+
</div>
|
1191
|
+
<hr>
|
1192
|
+
<div class="refsect2">
|
1193
|
+
<a name="ClutterPathNode"></a><h3>struct ClutterPathNode</h3>
|
1194
|
+
<pre class="programlisting">struct ClutterPathNode {
|
1195
|
+
ClutterPathNodeType type;
|
1196
|
+
|
1197
|
+
ClutterKnot points[3];
|
1198
|
+
};
|
1199
|
+
</pre>
|
1200
|
+
<p>
|
1201
|
+
Represents a single node of a <a class="link" href="ClutterPath.html" title="ClutterPath"><span class="type">ClutterPath</span></a>.
|
1202
|
+
</p>
|
1203
|
+
<p>
|
1204
|
+
Some of the coordinates in <em class="parameter"><code>points</code></em> may be unused for some node
|
1205
|
+
types. <a class="link" href="ClutterPath.html#CLUTTER-PATH-MOVE-TO:CAPS"><code class="literal">CLUTTER_PATH_MOVE_TO</code></a> and <a class="link" href="ClutterPath.html#CLUTTER-PATH-LINE-TO:CAPS"><code class="literal">CLUTTER_PATH_LINE_TO</code></a> use only one
|
1206
|
+
pair of coordinates, <a class="link" href="ClutterPath.html#CLUTTER-PATH-CURVE-TO:CAPS"><code class="literal">CLUTTER_PATH_CURVE_TO</code></a> uses all three and
|
1207
|
+
<a class="link" href="ClutterPath.html#CLUTTER-PATH-CLOSE:CAPS"><code class="literal">CLUTTER_PATH_CLOSE</code></a> uses none.
|
1208
|
+
</p>
|
1209
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1210
|
+
<colgroup>
|
1211
|
+
<col align="left" valign="top">
|
1212
|
+
<col>
|
1213
|
+
</colgroup>
|
1214
|
+
<tbody>
|
1215
|
+
<tr>
|
1216
|
+
<td><p><span class="term"><a class="link" href="ClutterPath.html#ClutterPathNodeType" title="enum ClutterPathNodeType"><span class="type">ClutterPathNodeType</span></a> <em class="structfield"><code><a name="ClutterPathNode.type"></a>type</code></em>;</span></p></td>
|
1217
|
+
<td>the node's type</td>
|
1218
|
+
</tr>
|
1219
|
+
<tr>
|
1220
|
+
<td><p><span class="term"><a class="link" href="clutter-Base-geometric-types.html#ClutterKnot" title="struct ClutterKnot"><span class="type">ClutterKnot</span></a> <em class="structfield"><code><a name="ClutterPathNode.points"></a>points</code></em>[3];</span></p></td>
|
1221
|
+
<td>the coordinates of the node</td>
|
1222
|
+
</tr>
|
1223
|
+
</tbody>
|
1224
|
+
</table></div>
|
1225
|
+
<p class="since">Since 1.0</p>
|
1226
|
+
</div>
|
1227
|
+
<hr>
|
1228
|
+
<div class="refsect2">
|
1229
|
+
<a name="clutter-path-node-copy"></a><h3>clutter_path_node_copy ()</h3>
|
1230
|
+
<pre class="programlisting"><a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="returnvalue">ClutterPathNode</span></a> * clutter_path_node_copy (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
1231
|
+
<p>
|
1232
|
+
Makes an allocated copy of a node.
|
1233
|
+
</p>
|
1234
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1235
|
+
<colgroup>
|
1236
|
+
<col align="left" valign="top">
|
1237
|
+
<col>
|
1238
|
+
</colgroup>
|
1239
|
+
<tbody>
|
1240
|
+
<tr>
|
1241
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
1242
|
+
<td>a <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a>
|
1243
|
+
</td>
|
1244
|
+
</tr>
|
1245
|
+
<tr>
|
1246
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1247
|
+
<td>the copied node.</td>
|
1248
|
+
</tr>
|
1249
|
+
</tbody>
|
1250
|
+
</table></div>
|
1251
|
+
<p class="since">Since 1.0</p>
|
1252
|
+
</div>
|
1253
|
+
<hr>
|
1254
|
+
<div class="refsect2">
|
1255
|
+
<a name="clutter-path-node-free"></a><h3>clutter_path_node_free ()</h3>
|
1256
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_path_node_free (<em class="parameter"><code><a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node</code></em>);</pre>
|
1257
|
+
<p>
|
1258
|
+
Frees the memory of an allocated node.
|
1259
|
+
</p>
|
1260
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1261
|
+
<colgroup>
|
1262
|
+
<col align="left" valign="top">
|
1263
|
+
<col>
|
1264
|
+
</colgroup>
|
1265
|
+
<tbody><tr>
|
1266
|
+
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
|
1267
|
+
<td>a <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a>
|
1268
|
+
</td>
|
1269
|
+
</tr></tbody>
|
1270
|
+
</table></div>
|
1271
|
+
<p class="since">Since 1.0</p>
|
1272
|
+
</div>
|
1273
|
+
<hr>
|
1274
|
+
<div class="refsect2">
|
1275
|
+
<a name="clutter-path-node-equal"></a><h3>clutter_path_node_equal ()</h3>
|
1276
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_path_node_equal (<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node_a</code></em>,
|
1277
|
+
<em class="parameter"><code>const <a class="link" href="ClutterPath.html#ClutterPathNode" title="struct ClutterPathNode"><span class="type">ClutterPathNode</span></a> *node_b</code></em>);</pre>
|
1278
|
+
<p>
|
1279
|
+
Compares two nodes and checks if they are the same type with the
|
1280
|
+
same coordinates.
|
1281
|
+
</p>
|
1282
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1283
|
+
<colgroup>
|
1284
|
+
<col align="left" valign="top">
|
1285
|
+
<col>
|
1286
|
+
</colgroup>
|
1287
|
+
<tbody>
|
1288
|
+
<tr>
|
1289
|
+
<td><p><span class="term"><em class="parameter"><code>node_a</code></em> :</span></p></td>
|
1290
|
+
<td>First node</td>
|
1291
|
+
</tr>
|
1292
|
+
<tr>
|
1293
|
+
<td><p><span class="term"><em class="parameter"><code>node_b</code></em> :</span></p></td>
|
1294
|
+
<td>Second node</td>
|
1295
|
+
</tr>
|
1296
|
+
<tr>
|
1297
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1298
|
+
<td>
|
1299
|
+
<code class="literal">TRUE</code> if the nodes are the same.</td>
|
1300
|
+
</tr>
|
1301
|
+
</tbody>
|
1302
|
+
</table></div>
|
1303
|
+
<p class="since">Since 1.0</p>
|
1304
|
+
</div>
|
1305
|
+
</div>
|
1306
|
+
<div class="refsect1">
|
1307
|
+
<a name="ClutterPath.property-details"></a><h2>Property Details</h2>
|
1308
|
+
<div class="refsect2">
|
1309
|
+
<a name="ClutterPath--description"></a><h3>The <code class="literal">"description"</code> property</h3>
|
1310
|
+
<pre class="programlisting"> "description" <span class="type">gchar</span>* : Read / Write</pre>
|
1311
|
+
<p>SVG-style description of the path.</p>
|
1312
|
+
<p>Default value: ""</p>
|
1313
|
+
</div>
|
1314
|
+
<hr>
|
1315
|
+
<div class="refsect2">
|
1316
|
+
<a name="ClutterPath--length"></a><h3>The <code class="literal">"length"</code> property</h3>
|
1317
|
+
<pre class="programlisting"> "length" <span class="type">guint</span> : Read</pre>
|
1318
|
+
<p>An approximation of the total length of the path.</p>
|
1319
|
+
<p>Default value: 0</p>
|
1320
|
+
</div>
|
1321
|
+
</div>
|
1322
|
+
</div>
|
1323
|
+
<div class="footer">
|
1324
|
+
<hr>
|
1325
|
+
Generated by GTK-Doc V1.18.1</div>
|
1326
|
+
</body>
|
1327
|
+
</html>
|