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,2441 @@
|
|
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>ClutterTimeline</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="ch09.html" title="Base classes">
|
9
|
+
<link rel="prev" href="ch09.html" title="Base classes">
|
10
|
+
<link rel="next" href="clutter-Value-intervals.html" title="Value intervals">
|
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="ch09.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="ch09.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="clutter-Value-intervals.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="#ClutterTimeline.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#ClutterTimeline.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#ClutterTimeline.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#ClutterTimeline.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#ClutterTimeline.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#ClutterTimeline.signals" class="shortcut">Signals</a>
|
35
|
+
</td></tr>
|
36
|
+
</table>
|
37
|
+
<div class="refentry">
|
38
|
+
<a name="ClutterTimeline"></a><div class="titlepage"></div>
|
39
|
+
<div class="refnamediv"><table width="100%"><tr>
|
40
|
+
<td valign="top">
|
41
|
+
<h2><span class="refentrytitle"><a name="ClutterTimeline.top_of_page"></a>ClutterTimeline</span></h2>
|
42
|
+
<p>ClutterTimeline — A class for time-based events</p>
|
43
|
+
</td>
|
44
|
+
<td valign="top" align="right"></td>
|
45
|
+
</tr></table></div>
|
46
|
+
<div class="refsynopsisdiv">
|
47
|
+
<a name="ClutterTimeline.synopsis"></a><h2>Synopsis</h2>
|
48
|
+
<pre class="synopsis"> <a class="link" href="ClutterTimeline.html#ClutterTimeline-struct" title="ClutterTimeline">ClutterTimeline</a>;
|
49
|
+
struct <a class="link" href="ClutterTimeline.html#ClutterTimelineClass" title="struct ClutterTimelineClass">ClutterTimelineClass</a>;
|
50
|
+
<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * <a class="link" href="ClutterTimeline.html#clutter-timeline-new" title="clutter_timeline_new ()">clutter_timeline_new</a> (<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
51
|
+
<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * <a class="link" href="ClutterTimeline.html#clutter-timeline-clone" title="clutter_timeline_clone ()">clutter_timeline_clone</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
52
|
+
|
53
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-duration" title="clutter_timeline_set_duration ()">clutter_timeline_set_duration</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
54
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
55
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-duration" title="clutter_timeline_get_duration ()">clutter_timeline_get_duration</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
56
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-repeat-count" title="clutter_timeline_set_repeat_count ()">clutter_timeline_set_repeat_count</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">gint</span> count</code></em>);
|
58
|
+
<span class="returnvalue">gint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-repeat-count" title="clutter_timeline_get_repeat_count ()">clutter_timeline_get_repeat_count</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-delay" title="clutter_timeline_set_delay ()">clutter_timeline_set_delay</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
60
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
61
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-delay" title="clutter_timeline_get_delay ()">clutter_timeline_get_delay</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
62
|
+
enum <a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection">ClutterTimelineDirection</a>;
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-direction" title="clutter_timeline_set_direction ()">clutter_timeline_set_direction</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
64
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="type">ClutterTimelineDirection</span></a> direction</code></em>);
|
65
|
+
<a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="returnvalue">ClutterTimelineDirection</span></a> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-direction" title="clutter_timeline_get_direction ()">clutter_timeline_get_direction</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
66
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-auto-reverse" title="clutter_timeline_set_auto_reverse ()">clutter_timeline_set_auto_reverse</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
67
|
+
<em class="parameter"><code><span class="type">gboolean</span> reverse</code></em>);
|
68
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-auto-reverse" title="clutter_timeline_get_auto_reverse ()">clutter_timeline_get_auto_reverse</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
69
|
+
enum <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode">ClutterAnimationMode</a>;
|
70
|
+
enum <a class="link" href="ClutterTimeline.html#ClutterStepMode" title="enum ClutterStepMode">ClutterStepMode</a>;
|
71
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-mode" title="clutter_timeline_set_progress_mode ()">clutter_timeline_set_progress_mode</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
72
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> mode</code></em>);
|
73
|
+
<a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="returnvalue">ClutterAnimationMode</span></a> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-progress-mode" title="clutter_timeline_get_progress_mode ()">clutter_timeline_get_progress_mode</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
74
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-cubic-bezier-progress" title="clutter_timeline_set_cubic_bezier_progress ()">clutter_timeline_set_cubic_bezier_progress</a>
|
75
|
+
(<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
76
|
+
<em class="parameter"><code>const <a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_1</code></em>,
|
77
|
+
<em class="parameter"><code>const <a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_2</code></em>);
|
78
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-cubic-bezier-progress" title="clutter_timeline_get_cubic_bezier_progress ()">clutter_timeline_get_cubic_bezier_progress</a>
|
79
|
+
(<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
80
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_1</code></em>,
|
81
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_2</code></em>);
|
82
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-step-progress" title="clutter_timeline_set_step_progress ()">clutter_timeline_set_step_progress</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
83
|
+
<em class="parameter"><code><span class="type">gint</span> n_steps</code></em>,
|
84
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterStepMode" title="enum ClutterStepMode"><span class="type">ClutterStepMode</span></a> step_mode</code></em>);
|
85
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-step-progress" title="clutter_timeline_get_step_progress ()">clutter_timeline_get_step_progress</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
86
|
+
<em class="parameter"><code><span class="type">gint</span> *n_steps</code></em>,
|
87
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterStepMode" title="enum ClutterStepMode"><span class="type">ClutterStepMode</span></a> *step_mode</code></em>);
|
88
|
+
<span class="returnvalue">gdouble</span> (<a class="link" href="ClutterTimeline.html#ClutterTimelineProgressFunc" title="ClutterTimelineProgressFunc ()">*ClutterTimelineProgressFunc</a>) (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
89
|
+
<em class="parameter"><code><span class="type">gdouble</span> elapsed</code></em>,
|
90
|
+
<em class="parameter"><code><span class="type">gdouble</span> total</code></em>,
|
91
|
+
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-func" title="clutter_timeline_set_progress_func ()">clutter_timeline_set_progress_func</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
93
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterTimelineProgressFunc" title="ClutterTimelineProgressFunc ()"><span class="type">ClutterTimelineProgressFunc</span></a> func</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
|
95
|
+
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);
|
96
|
+
<span class="returnvalue">gint64</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-duration-hint" title="clutter_timeline_get_duration_hint ()">clutter_timeline_get_duration_hint</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
97
|
+
<span class="returnvalue">gint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-current-repeat" title="clutter_timeline_get_current_repeat ()">clutter_timeline_get_current_repeat</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-set-loop" title="clutter_timeline_set_loop ()">clutter_timeline_set_loop</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
99
|
+
<em class="parameter"><code><span class="type">gboolean</span> loop</code></em>);
|
100
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-loop" title="clutter_timeline_get_loop ()">clutter_timeline_get_loop</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
101
|
+
|
102
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-start" title="clutter_timeline_start ()">clutter_timeline_start</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
103
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-pause" title="clutter_timeline_pause ()">clutter_timeline_pause</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
104
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-stop" title="clutter_timeline_stop ()">clutter_timeline_stop</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
105
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-rewind" title="clutter_timeline_rewind ()">clutter_timeline_rewind</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
106
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-skip" title="clutter_timeline_skip ()">clutter_timeline_skip</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
107
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
108
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-advance" title="clutter_timeline_advance ()">clutter_timeline_advance</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
109
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
110
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-elapsed-time" title="clutter_timeline_get_elapsed_time ()">clutter_timeline_get_elapsed_time</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
111
|
+
<span class="returnvalue">guint</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-delta" title="clutter_timeline_get_delta ()">clutter_timeline_get_delta</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
112
|
+
<span class="returnvalue">gdouble</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-get-progress" title="clutter_timeline_get_progress ()">clutter_timeline_get_progress</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
113
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-is-playing" title="clutter_timeline_is_playing ()">clutter_timeline_is_playing</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
|
114
|
+
|
115
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker" title="clutter_timeline_add_marker ()">clutter_timeline_add_marker</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
116
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>,
|
117
|
+
<em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);
|
118
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker-at-time" title="clutter_timeline_add_marker_at_time ()">clutter_timeline_add_marker_at_time</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
119
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>,
|
120
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);
|
121
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-has-marker" title="clutter_timeline_has_marker ()">clutter_timeline_has_marker</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
122
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);
|
123
|
+
<span class="returnvalue">gchar</span> ** <a class="link" href="ClutterTimeline.html#clutter-timeline-list-markers" title="clutter_timeline_list_markers ()">clutter_timeline_list_markers</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
124
|
+
<em class="parameter"><code><span class="type">gint</span> msecs</code></em>,
|
125
|
+
<em class="parameter"><code><span class="type">gsize</span> *n_markers</code></em>);
|
126
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-remove-marker" title="clutter_timeline_remove_marker ()">clutter_timeline_remove_marker</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
127
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);
|
128
|
+
<span class="returnvalue">void</span> <a class="link" href="ClutterTimeline.html#clutter-timeline-advance-to-marker" title="clutter_timeline_advance_to_marker ()">clutter_timeline_advance_to_marker</a> (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
129
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);
|
130
|
+
</pre>
|
131
|
+
</div>
|
132
|
+
<div class="refsect1">
|
133
|
+
<a name="ClutterTimeline.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
134
|
+
<pre class="synopsis">
|
135
|
+
GObject
|
136
|
+
+----ClutterTimeline
|
137
|
+
+----<a class="link" href="ClutterTransition.html" title="ClutterTransition">ClutterTransition</a>
|
138
|
+
</pre>
|
139
|
+
</div>
|
140
|
+
<div class="refsect1">
|
141
|
+
<a name="ClutterTimeline.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
142
|
+
<p>
|
143
|
+
ClutterTimeline implements
|
144
|
+
<a class="link" href="ClutterScriptable.html" title="ClutterScriptable">ClutterScriptable</a>.</p>
|
145
|
+
</div>
|
146
|
+
<div class="refsect1">
|
147
|
+
<a name="ClutterTimeline.properties"></a><h2>Properties</h2>
|
148
|
+
<pre class="synopsis">
|
149
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--auto-reverse" title='The "auto-reverse" property'>auto-reverse</a>" <span class="type">gboolean</span> : Read / Write
|
150
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--delay" title='The "delay" property'>delay</a>" <span class="type">guint</span> : Read / Write
|
151
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--direction" title='The "direction" property'>direction</a>" <a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="type">ClutterTimelineDirection</span></a> : Read / Write
|
152
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--duration" title='The "duration" property'>duration</a>" <span class="type">guint</span> : Read / Write
|
153
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--loop" title='The "loop" property'>loop</a>" <span class="type">gboolean</span> : Read / Write
|
154
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title='The "progress-mode" property'>progress-mode</a>" <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> : Read / Write
|
155
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'>repeat-count</a>" <span class="type">gint</span> : Read / Write
|
156
|
+
</pre>
|
157
|
+
</div>
|
158
|
+
<div class="refsect1">
|
159
|
+
<a name="ClutterTimeline.signals"></a><h2>Signals</h2>
|
160
|
+
<pre class="synopsis">
|
161
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'>completed</a>" : <code class="literal">Run Last</code>
|
162
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-marker-reached" title='The "marker-reached" signal'>marker-reached</a>" : <code class="literal">No Hooks</code>
|
163
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'>new-frame</a>" : <code class="literal">Run Last</code>
|
164
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-paused" title='The "paused" signal'>paused</a>" : <code class="literal">Run Last</code>
|
165
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-started" title='The "started" signal'>started</a>" : <code class="literal">Run Last</code>
|
166
|
+
"<a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'>stopped</a>" : <code class="literal">Run Last</code>
|
167
|
+
</pre>
|
168
|
+
</div>
|
169
|
+
<div class="refsect1">
|
170
|
+
<a name="ClutterTimeline.description"></a><h2>Description</h2>
|
171
|
+
<p>
|
172
|
+
<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> is a base class for managing time-based event that cause
|
173
|
+
Clutter to redraw a stage, such as animations.
|
174
|
+
</p>
|
175
|
+
<p>
|
176
|
+
Each <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> instance has a duration: once a timeline has been
|
177
|
+
started, using <a class="link" href="ClutterTimeline.html#clutter-timeline-start" title="clutter_timeline_start ()"><code class="function">clutter_timeline_start()</code></a>, it will emit a signal that can
|
178
|
+
be used to update the state of the actors.
|
179
|
+
</p>
|
180
|
+
<p>
|
181
|
+
It is important to note that <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> is not a generic API for
|
182
|
+
calling closures after an interval; each Timeline is tied into the master
|
183
|
+
clock used to drive the frame cycle. If you need to schedule a closure
|
184
|
+
after an interval, see <a class="link" href="clutter-General.html#clutter-threads-add-timeout" title="clutter_threads_add_timeout ()"><code class="function">clutter_threads_add_timeout()</code></a> instead.
|
185
|
+
</p>
|
186
|
+
<p>
|
187
|
+
Users of <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> should connect to the <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a>
|
188
|
+
signal, which is emitted each time a timeline is advanced during the maste
|
189
|
+
clock iteration. The <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a> signal provides the time
|
190
|
+
elapsed since the beginning of the timeline, in milliseconds. A normalized
|
191
|
+
progress value can be obtained by calling <a class="link" href="ClutterTimeline.html#clutter-timeline-get-progress" title="clutter_timeline_get_progress ()"><code class="function">clutter_timeline_get_progress()</code></a>.
|
192
|
+
By using <a class="link" href="ClutterTimeline.html#clutter-timeline-get-delta" title="clutter_timeline_get_delta ()"><code class="function">clutter_timeline_get_delta()</code></a> it is possible to obtain the wallclock
|
193
|
+
time elapsed since the last emission of the <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a>
|
194
|
+
signal.
|
195
|
+
</p>
|
196
|
+
<p>
|
197
|
+
Initial state can be set up by using the <a class="link" href="ClutterTimeline.html#ClutterTimeline-started" title='The "started" signal'><span class="type">"started"</span></a> signal,
|
198
|
+
while final state can be set up by using the <a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'><span class="type">"stopped"</span></a>
|
199
|
+
signal. The <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> guarantees the emission of at least a single
|
200
|
+
<a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a> signal, as well as the emission of the
|
201
|
+
<a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal every time the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> reaches
|
202
|
+
its <a class="link" href="ClutterTimeline.html#ClutterTimeline--duration" title='The "duration" property'><span class="type">"duration"</span></a>.
|
203
|
+
</p>
|
204
|
+
<p>
|
205
|
+
It is possible to connect to specific points in the timeline progress by
|
206
|
+
adding <span class="emphasis"><em>markers</em></span> using <a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker-at-time" title="clutter_timeline_add_marker_at_time ()"><code class="function">clutter_timeline_add_marker_at_time()</code></a>
|
207
|
+
and connecting to the <a class="link" href="ClutterTimeline.html#ClutterTimeline-marker-reached" title='The "marker-reached" signal'><span class="type">"marker-reached"</span></a> signal.
|
208
|
+
</p>
|
209
|
+
<p>
|
210
|
+
Timelines can be made to loop once they reach the end of their duration, by
|
211
|
+
using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-repeat-count" title="clutter_timeline_set_repeat_count ()"><code class="function">clutter_timeline_set_repeat_count()</code></a>; a looping timeline will still
|
212
|
+
emit the <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal once it reaches the end of its
|
213
|
+
duration at each repeat. If you want to be notified of the end of the last
|
214
|
+
repeat, use the <a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'><span class="type">"stopped"</span></a> signal.
|
215
|
+
</p>
|
216
|
+
<p>
|
217
|
+
Timelines have a <a class="link" href="ClutterTimeline.html#ClutterTimeline--direction" title='The "direction" property'><span class="type">"direction"</span></a>: the default direction is
|
218
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_FORWARD</code></a>, and goes from 0 to the duration; it is possible
|
219
|
+
to change the direction to <a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-BACKWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_BACKWARD</code></a>, and have the timeline
|
220
|
+
go from the duration to 0. The direction can be automatically reversed
|
221
|
+
when reaching completion by using the <a class="link" href="ClutterTimeline.html#ClutterTimeline--auto-reverse" title='The "auto-reverse" property'><span class="type">"auto-reverse"</span></a> property.
|
222
|
+
</p>
|
223
|
+
<p>
|
224
|
+
Timelines are used in the Clutter animation framework by classes like
|
225
|
+
<a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>, <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>, and <a class="link" href="ClutterState.html" title="ClutterState"><span class="type">ClutterState</span></a>.
|
226
|
+
</p>
|
227
|
+
<p>
|
228
|
+
</p>
|
229
|
+
<div class="refsect2">
|
230
|
+
<a name="timeline-script"></a><h3>Defining Timelines in ClutterScript</h3>
|
231
|
+
<p>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> can be described in <a class="link" href="ClutterScript.html" title="ClutterScript"><span class="type">ClutterScript</span></a> like any
|
232
|
+
other object. Additionally, it is possible to define markers directly
|
233
|
+
inside the JSON definition by using the <span class="emphasis"><em>markers</em></span>
|
234
|
+
JSON object member, such as:</p>
|
235
|
+
<div class="informalexample">
|
236
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
237
|
+
<tbody>
|
238
|
+
<tr>
|
239
|
+
<td class="listing_lines" align="right"><pre>1
|
240
|
+
2
|
241
|
+
3
|
242
|
+
4
|
243
|
+
5
|
244
|
+
6
|
245
|
+
7
|
246
|
+
8
|
247
|
+
9</pre></td>
|
248
|
+
<td class="listing_code"><pre class="programlisting"><span class="cbracket">{</span>
|
249
|
+
<span class="normal"> </span><span class="string">"type"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="string">"ClutterTimeline"</span><span class="symbol">,</span>
|
250
|
+
<span class="normal"> </span><span class="string">"duration"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="number">1000</span><span class="symbol">,</span>
|
251
|
+
<span class="normal"> </span><span class="string">"markers"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">[</span>
|
252
|
+
<span class="normal"> </span><span class="cbracket">{</span><span class="normal"> </span><span class="string">"name"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="string">"quarter"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"time"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="number">250</span><span class="normal"> </span><span class="cbracket">}</span><span class="symbol">,</span>
|
253
|
+
<span class="normal"> </span><span class="cbracket">{</span><span class="normal"> </span><span class="string">"name"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="string">"half-time"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"time"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="number">500</span><span class="normal"> </span><span class="cbracket">}</span><span class="symbol">,</span>
|
254
|
+
<span class="normal"> </span><span class="cbracket">{</span><span class="normal"> </span><span class="string">"name"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="string">"three-quarters"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"time"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="number">750</span><span class="normal"> </span><span class="cbracket">}</span>
|
255
|
+
<span class="normal"> </span><span class="symbol">]</span>
|
256
|
+
<span class="cbracket">}</span></pre></td>
|
257
|
+
</tr>
|
258
|
+
</tbody>
|
259
|
+
</table>
|
260
|
+
</div>
|
261
|
+
|
262
|
+
</div>
|
263
|
+
<p>
|
264
|
+
</p>
|
265
|
+
</div>
|
266
|
+
<div class="refsect1">
|
267
|
+
<a name="ClutterTimeline.details"></a><h2>Details</h2>
|
268
|
+
<div class="refsect2">
|
269
|
+
<a name="ClutterTimeline-struct"></a><h3>ClutterTimeline</h3>
|
270
|
+
<pre class="programlisting">typedef struct _ClutterTimeline ClutterTimeline;</pre>
|
271
|
+
<p>
|
272
|
+
The <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> structure contains only private data
|
273
|
+
and should be accessed using the provided API
|
274
|
+
</p>
|
275
|
+
<p class="since">Since 0.2</p>
|
276
|
+
</div>
|
277
|
+
<hr>
|
278
|
+
<div class="refsect2">
|
279
|
+
<a name="ClutterTimelineClass"></a><h3>struct ClutterTimelineClass</h3>
|
280
|
+
<pre class="programlisting">struct ClutterTimelineClass {
|
281
|
+
void (*started) (ClutterTimeline *timeline);
|
282
|
+
void (*completed) (ClutterTimeline *timeline);
|
283
|
+
void (*paused) (ClutterTimeline *timeline);
|
284
|
+
|
285
|
+
void (*new_frame) (ClutterTimeline *timeline,
|
286
|
+
gint msecs);
|
287
|
+
|
288
|
+
void (*marker_reached) (ClutterTimeline *timeline,
|
289
|
+
const gchar *marker_name,
|
290
|
+
gint msecs);
|
291
|
+
void (*stopped) (ClutterTimeline *timeline,
|
292
|
+
gboolean is_finished);
|
293
|
+
};
|
294
|
+
</pre>
|
295
|
+
<p>
|
296
|
+
The <a class="link" href="ClutterTimeline.html#ClutterTimelineClass" title="struct ClutterTimelineClass"><span class="type">ClutterTimelineClass</span></a> structure contains only private data
|
297
|
+
</p>
|
298
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
299
|
+
<colgroup>
|
300
|
+
<col align="left" valign="top">
|
301
|
+
<col>
|
302
|
+
</colgroup>
|
303
|
+
<tbody>
|
304
|
+
<tr>
|
305
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.started"></a>started</code></em> ()</span></p></td>
|
306
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-started" title='The "started" signal'><span class="type">"started"</span></a> signal</td>
|
307
|
+
</tr>
|
308
|
+
<tr>
|
309
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.completed"></a>completed</code></em> ()</span></p></td>
|
310
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal</td>
|
311
|
+
</tr>
|
312
|
+
<tr>
|
313
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.paused"></a>paused</code></em> ()</span></p></td>
|
314
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-paused" title='The "paused" signal'><span class="type">"paused"</span></a> signal</td>
|
315
|
+
</tr>
|
316
|
+
<tr>
|
317
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.new-frame"></a>new_frame</code></em> ()</span></p></td>
|
318
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a> signal</td>
|
319
|
+
</tr>
|
320
|
+
<tr>
|
321
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.marker-reached"></a>marker_reached</code></em> ()</span></p></td>
|
322
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-marker-reached" title='The "marker-reached" signal'><span class="type">"marker-reached"</span></a> signal</td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td><p><span class="term"><em class="structfield"><code><a name="ClutterTimelineClass.stopped"></a>stopped</code></em> ()</span></p></td>
|
326
|
+
<td>class handler for the <a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'><span class="type">"stopped"</span></a> signal</td>
|
327
|
+
</tr>
|
328
|
+
</tbody>
|
329
|
+
</table></div>
|
330
|
+
<p class="since">Since 0.2</p>
|
331
|
+
</div>
|
332
|
+
<hr>
|
333
|
+
<div class="refsect2">
|
334
|
+
<a name="clutter-timeline-new"></a><h3>clutter_timeline_new ()</h3>
|
335
|
+
<pre class="programlisting"><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * clutter_timeline_new (<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
336
|
+
<p>
|
337
|
+
Creates a new <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> with a duration of <em class="parameter"><code>msecs</code></em>.
|
338
|
+
</p>
|
339
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
340
|
+
<colgroup>
|
341
|
+
<col align="left" valign="top">
|
342
|
+
<col>
|
343
|
+
</colgroup>
|
344
|
+
<tbody>
|
345
|
+
<tr>
|
346
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
347
|
+
<td>Duration of the timeline in milliseconds</td>
|
348
|
+
</tr>
|
349
|
+
<tr>
|
350
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
351
|
+
<td>the newly created <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> instance. Use
|
352
|
+
<code class="function">g_object_unref()</code> when done using it</td>
|
353
|
+
</tr>
|
354
|
+
</tbody>
|
355
|
+
</table></div>
|
356
|
+
<p class="since">Since 0.6</p>
|
357
|
+
</div>
|
358
|
+
<hr>
|
359
|
+
<div class="refsect2">
|
360
|
+
<a name="clutter-timeline-clone"></a><h3>clutter_timeline_clone ()</h3>
|
361
|
+
<pre class="programlisting"><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * clutter_timeline_clone (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
362
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
363
|
+
<h3 class="title">Warning</h3>
|
364
|
+
<p><code class="literal">clutter_timeline_clone</code> has been deprecated since version 1.10 and should not be used in newly-written code. Use <a class="link" href="ClutterTimeline.html#clutter-timeline-new" title="clutter_timeline_new ()"><code class="function">clutter_timeline_new()</code></a> or <code class="function">g_object_new()</code>
|
365
|
+
instead</p>
|
366
|
+
</div>
|
367
|
+
<p>
|
368
|
+
Create a new <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> instance which has property values
|
369
|
+
matching that of supplied timeline. The cloned timeline will not
|
370
|
+
be started and will not be positioned to the current position of
|
371
|
+
the original <em class="parameter"><code>timeline</code></em>: you will have to start it with <a class="link" href="ClutterTimeline.html#clutter-timeline-start" title="clutter_timeline_start ()"><code class="function">clutter_timeline_start()</code></a>.
|
372
|
+
</p>
|
373
|
+
<p>
|
374
|
+
</p>
|
375
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
376
|
+
<h3 class="title">Note</h3>
|
377
|
+
<p>The only cloned properties are:</p>
|
378
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
379
|
+
<li class="listitem"><a class="link" href="ClutterTimeline.html#ClutterTimeline--duration" title='The "duration" property'><span class="type">"duration"</span></a></li>
|
380
|
+
<li class="listitem"><a class="link" href="ClutterTimeline.html#ClutterTimeline--loop" title='The "loop" property'><span class="type">"loop"</span></a></li>
|
381
|
+
<li class="listitem"><a class="link" href="ClutterTimeline.html#ClutterTimeline--delay" title='The "delay" property'><span class="type">"delay"</span></a></li>
|
382
|
+
<li class="listitem"><a class="link" href="ClutterTimeline.html#ClutterTimeline--direction" title='The "direction" property'><span class="type">"direction"</span></a></li>
|
383
|
+
</ul></div>
|
384
|
+
</div>
|
385
|
+
<p>
|
386
|
+
</p>
|
387
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
388
|
+
<colgroup>
|
389
|
+
<col align="left" valign="top">
|
390
|
+
<col>
|
391
|
+
</colgroup>
|
392
|
+
<tbody>
|
393
|
+
<tr>
|
394
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
395
|
+
<td>
|
396
|
+
<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> to duplicate.</td>
|
397
|
+
</tr>
|
398
|
+
<tr>
|
399
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
400
|
+
<td>a new <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>, cloned
|
401
|
+
from <em class="parameter"><code>timeline</code></em>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
402
|
+
</td>
|
403
|
+
</tr>
|
404
|
+
</tbody>
|
405
|
+
</table></div>
|
406
|
+
<p class="since">Since 0.4</p>
|
407
|
+
</div>
|
408
|
+
<hr>
|
409
|
+
<div class="refsect2">
|
410
|
+
<a name="clutter-timeline-set-duration"></a><h3>clutter_timeline_set_duration ()</h3>
|
411
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_duration (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
412
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
413
|
+
<p>
|
414
|
+
Sets the duration of the timeline, in milliseconds. The speed
|
415
|
+
of the timeline depends on the ClutterTimeline:fps setting.
|
416
|
+
</p>
|
417
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
418
|
+
<colgroup>
|
419
|
+
<col align="left" valign="top">
|
420
|
+
<col>
|
421
|
+
</colgroup>
|
422
|
+
<tbody>
|
423
|
+
<tr>
|
424
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
425
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
426
|
+
</td>
|
427
|
+
</tr>
|
428
|
+
<tr>
|
429
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
430
|
+
<td>duration of the timeline in milliseconds</td>
|
431
|
+
</tr>
|
432
|
+
</tbody>
|
433
|
+
</table></div>
|
434
|
+
<p class="since">Since 0.6</p>
|
435
|
+
</div>
|
436
|
+
<hr>
|
437
|
+
<div class="refsect2">
|
438
|
+
<a name="clutter-timeline-get-duration"></a><h3>clutter_timeline_get_duration ()</h3>
|
439
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_timeline_get_duration (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
440
|
+
<p>
|
441
|
+
Retrieves the duration of a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> in milliseconds.
|
442
|
+
See <a class="link" href="ClutterTimeline.html#clutter-timeline-set-duration" title="clutter_timeline_set_duration ()"><code class="function">clutter_timeline_set_duration()</code></a>.
|
443
|
+
</p>
|
444
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
445
|
+
<colgroup>
|
446
|
+
<col align="left" valign="top">
|
447
|
+
<col>
|
448
|
+
</colgroup>
|
449
|
+
<tbody>
|
450
|
+
<tr>
|
451
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
452
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
453
|
+
</td>
|
454
|
+
</tr>
|
455
|
+
<tr>
|
456
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
457
|
+
<td>the duration of the timeline, in milliseconds.</td>
|
458
|
+
</tr>
|
459
|
+
</tbody>
|
460
|
+
</table></div>
|
461
|
+
<p class="since">Since 0.6</p>
|
462
|
+
</div>
|
463
|
+
<hr>
|
464
|
+
<div class="refsect2">
|
465
|
+
<a name="clutter-timeline-set-repeat-count"></a><h3>clutter_timeline_set_repeat_count ()</h3>
|
466
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_repeat_count (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
467
|
+
<em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
|
468
|
+
<p>
|
469
|
+
Sets the number of times the <em class="parameter"><code>timeline</code></em> should repeat.
|
470
|
+
</p>
|
471
|
+
<p>
|
472
|
+
If <em class="parameter"><code>count</code></em> is 0, the timeline never repeats.
|
473
|
+
</p>
|
474
|
+
<p>
|
475
|
+
If <em class="parameter"><code>count</code></em> is -1, the timeline will always repeat until
|
476
|
+
it's stopped.
|
477
|
+
</p>
|
478
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
479
|
+
<colgroup>
|
480
|
+
<col align="left" valign="top">
|
481
|
+
<col>
|
482
|
+
</colgroup>
|
483
|
+
<tbody>
|
484
|
+
<tr>
|
485
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
486
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
487
|
+
</td>
|
488
|
+
</tr>
|
489
|
+
<tr>
|
490
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
491
|
+
<td>the number of times the timeline should repeat</td>
|
492
|
+
</tr>
|
493
|
+
</tbody>
|
494
|
+
</table></div>
|
495
|
+
<p class="since">Since 1.10</p>
|
496
|
+
</div>
|
497
|
+
<hr>
|
498
|
+
<div class="refsect2">
|
499
|
+
<a name="clutter-timeline-get-repeat-count"></a><h3>clutter_timeline_get_repeat_count ()</h3>
|
500
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> clutter_timeline_get_repeat_count (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
501
|
+
<p>
|
502
|
+
Retrieves the number set using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-repeat-count" title="clutter_timeline_set_repeat_count ()"><code class="function">clutter_timeline_set_repeat_count()</code></a>.
|
503
|
+
</p>
|
504
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
505
|
+
<colgroup>
|
506
|
+
<col align="left" valign="top">
|
507
|
+
<col>
|
508
|
+
</colgroup>
|
509
|
+
<tbody>
|
510
|
+
<tr>
|
511
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
512
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
513
|
+
</td>
|
514
|
+
</tr>
|
515
|
+
<tr>
|
516
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
517
|
+
<td>the number of repeats</td>
|
518
|
+
</tr>
|
519
|
+
</tbody>
|
520
|
+
</table></div>
|
521
|
+
<p class="since">Since 1.10</p>
|
522
|
+
</div>
|
523
|
+
<hr>
|
524
|
+
<div class="refsect2">
|
525
|
+
<a name="clutter-timeline-set-delay"></a><h3>clutter_timeline_set_delay ()</h3>
|
526
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_delay (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
527
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
528
|
+
<p>
|
529
|
+
Sets the delay, in milliseconds, before <em class="parameter"><code>timeline</code></em> should start.
|
530
|
+
</p>
|
531
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
532
|
+
<colgroup>
|
533
|
+
<col align="left" valign="top">
|
534
|
+
<col>
|
535
|
+
</colgroup>
|
536
|
+
<tbody>
|
537
|
+
<tr>
|
538
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
539
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
540
|
+
</td>
|
541
|
+
</tr>
|
542
|
+
<tr>
|
543
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
544
|
+
<td>delay in milliseconds</td>
|
545
|
+
</tr>
|
546
|
+
</tbody>
|
547
|
+
</table></div>
|
548
|
+
<p class="since">Since 0.4</p>
|
549
|
+
</div>
|
550
|
+
<hr>
|
551
|
+
<div class="refsect2">
|
552
|
+
<a name="clutter-timeline-get-delay"></a><h3>clutter_timeline_get_delay ()</h3>
|
553
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_timeline_get_delay (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
554
|
+
<p>
|
555
|
+
Retrieves the delay set using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-delay" title="clutter_timeline_set_delay ()"><code class="function">clutter_timeline_set_delay()</code></a>.
|
556
|
+
</p>
|
557
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
558
|
+
<colgroup>
|
559
|
+
<col align="left" valign="top">
|
560
|
+
<col>
|
561
|
+
</colgroup>
|
562
|
+
<tbody>
|
563
|
+
<tr>
|
564
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
565
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
566
|
+
</td>
|
567
|
+
</tr>
|
568
|
+
<tr>
|
569
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
570
|
+
<td>the delay in milliseconds.</td>
|
571
|
+
</tr>
|
572
|
+
</tbody>
|
573
|
+
</table></div>
|
574
|
+
<p class="since">Since 0.4</p>
|
575
|
+
</div>
|
576
|
+
<hr>
|
577
|
+
<div class="refsect2">
|
578
|
+
<a name="ClutterTimelineDirection"></a><h3>enum ClutterTimelineDirection</h3>
|
579
|
+
<pre class="programlisting">typedef enum {
|
580
|
+
CLUTTER_TIMELINE_FORWARD,
|
581
|
+
CLUTTER_TIMELINE_BACKWARD
|
582
|
+
} ClutterTimelineDirection;
|
583
|
+
</pre>
|
584
|
+
<p>
|
585
|
+
The direction of a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
586
|
+
</p>
|
587
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
588
|
+
<colgroup>
|
589
|
+
<col align="left" valign="top">
|
590
|
+
<col>
|
591
|
+
</colgroup>
|
592
|
+
<tbody>
|
593
|
+
<tr>
|
594
|
+
<td><p><a name="CLUTTER-TIMELINE-FORWARD:CAPS"></a><span class="term"><code class="literal">CLUTTER_TIMELINE_FORWARD</code></span></p></td>
|
595
|
+
<td>forward direction for a timeline
|
596
|
+
</td>
|
597
|
+
</tr>
|
598
|
+
<tr>
|
599
|
+
<td><p><a name="CLUTTER-TIMELINE-BACKWARD:CAPS"></a><span class="term"><code class="literal">CLUTTER_TIMELINE_BACKWARD</code></span></p></td>
|
600
|
+
<td>backward direction for a timeline
|
601
|
+
</td>
|
602
|
+
</tr>
|
603
|
+
</tbody>
|
604
|
+
</table></div>
|
605
|
+
<p class="since">Since 0.6</p>
|
606
|
+
</div>
|
607
|
+
<hr>
|
608
|
+
<div class="refsect2">
|
609
|
+
<a name="clutter-timeline-set-direction"></a><h3>clutter_timeline_set_direction ()</h3>
|
610
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_direction (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
611
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="type">ClutterTimelineDirection</span></a> direction</code></em>);</pre>
|
612
|
+
<p>
|
613
|
+
Sets the direction of <em class="parameter"><code>timeline</code></em>, either <a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_FORWARD</code></a> or
|
614
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-BACKWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_BACKWARD</code></a>.
|
615
|
+
</p>
|
616
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
617
|
+
<colgroup>
|
618
|
+
<col align="left" valign="top">
|
619
|
+
<col>
|
620
|
+
</colgroup>
|
621
|
+
<tbody>
|
622
|
+
<tr>
|
623
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
624
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
625
|
+
</td>
|
626
|
+
</tr>
|
627
|
+
<tr>
|
628
|
+
<td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
|
629
|
+
<td>the direction of the timeline</td>
|
630
|
+
</tr>
|
631
|
+
</tbody>
|
632
|
+
</table></div>
|
633
|
+
<p class="since">Since 0.6</p>
|
634
|
+
</div>
|
635
|
+
<hr>
|
636
|
+
<div class="refsect2">
|
637
|
+
<a name="clutter-timeline-get-direction"></a><h3>clutter_timeline_get_direction ()</h3>
|
638
|
+
<pre class="programlisting"><a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="returnvalue">ClutterTimelineDirection</span></a> clutter_timeline_get_direction (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
639
|
+
<p>
|
640
|
+
Retrieves the direction of the timeline set with
|
641
|
+
<a class="link" href="ClutterTimeline.html#clutter-timeline-set-direction" title="clutter_timeline_set_direction ()"><code class="function">clutter_timeline_set_direction()</code></a>.
|
642
|
+
</p>
|
643
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
644
|
+
<colgroup>
|
645
|
+
<col align="left" valign="top">
|
646
|
+
<col>
|
647
|
+
</colgroup>
|
648
|
+
<tbody>
|
649
|
+
<tr>
|
650
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
651
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
652
|
+
</td>
|
653
|
+
</tr>
|
654
|
+
<tr>
|
655
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
656
|
+
<td>the direction of the timeline</td>
|
657
|
+
</tr>
|
658
|
+
</tbody>
|
659
|
+
</table></div>
|
660
|
+
<p class="since">Since 0.6</p>
|
661
|
+
</div>
|
662
|
+
<hr>
|
663
|
+
<div class="refsect2">
|
664
|
+
<a name="clutter-timeline-set-auto-reverse"></a><h3>clutter_timeline_set_auto_reverse ()</h3>
|
665
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_auto_reverse (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
666
|
+
<em class="parameter"><code><span class="type">gboolean</span> reverse</code></em>);</pre>
|
667
|
+
<p>
|
668
|
+
Sets whether <em class="parameter"><code>timeline</code></em> should reverse the direction after the
|
669
|
+
emission of the <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal.
|
670
|
+
</p>
|
671
|
+
<p>
|
672
|
+
Setting the <a class="link" href="ClutterTimeline.html#ClutterTimeline--auto-reverse" title='The "auto-reverse" property'><span class="type">"auto-reverse"</span></a> property to <code class="literal">TRUE</code> is the
|
673
|
+
equivalent of connecting a callback to the <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a>
|
674
|
+
signal and changing the direction of the timeline from that callback;
|
675
|
+
for instance, this code:
|
676
|
+
</p>
|
677
|
+
<p>
|
678
|
+
</p>
|
679
|
+
<div class="informalexample">
|
680
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
681
|
+
<tbody>
|
682
|
+
<tr>
|
683
|
+
<td class="listing_lines" align="right"><pre>1
|
684
|
+
2
|
685
|
+
3
|
686
|
+
4
|
687
|
+
5
|
688
|
+
6
|
689
|
+
7
|
690
|
+
8
|
691
|
+
9
|
692
|
+
10
|
693
|
+
11
|
694
|
+
12
|
695
|
+
13
|
696
|
+
14
|
697
|
+
15
|
698
|
+
16
|
699
|
+
17
|
700
|
+
18</pre></td>
|
701
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
702
|
+
<span class="function">reverse_timeline</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">ClutterTimeline</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">timeline</span><span class="symbol">)</span>
|
703
|
+
<span class="cbracket">{</span>
|
704
|
+
<span class="normal"> </span><span class="usertype">ClutterTimelineDirection</span><span class="normal"> dir </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterTimeline.html#clutter-timeline-get-direction">clutter_timeline_get_direction</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">);</span>
|
705
|
+
|
706
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">dir </span><span class="symbol">==</span><span class="normal"> <a href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS">CLUTTER_TIMELINE_FORWARD</a></span><span class="symbol">)</span>
|
707
|
+
<span class="normal"> dir </span><span class="symbol">=</span><span class="normal"> <a href="ClutterTimeline.html#CLUTTER-TIMELINE-BACKWARD:CAPS">CLUTTER_TIMELINE_BACKWARD</a></span><span class="symbol">;</span>
|
708
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
709
|
+
<span class="normal"> dir </span><span class="symbol">=</span><span class="normal"> <a href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS">CLUTTER_TIMELINE_FORWARD</a></span><span class="symbol">;</span>
|
710
|
+
|
711
|
+
<span class="normal"> </span><span class="function"><a href="ClutterTimeline.html#clutter-timeline-set-direction">clutter_timeline_set_direction</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> dir</span><span class="symbol">);</span>
|
712
|
+
<span class="cbracket">}</span>
|
713
|
+
<span class="symbol">...</span>
|
714
|
+
<span class="normal"> timeline </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterTimeline.html#clutter-timeline-new">clutter_timeline_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="number">1000</span><span class="symbol">);</span>
|
715
|
+
<span class="normal"> </span><span class="function"><a href="ClutterTimeline.html#clutter-timeline-set-repeat-count">clutter_timeline_set_repeat_count</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span>
|
716
|
+
<span class="normal"> </span><span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"completed"</span><span class="symbol">,</span>
|
717
|
+
<span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">reverse_timeline</span><span class="symbol">),</span>
|
718
|
+
<span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
|
719
|
+
</tr>
|
720
|
+
</tbody>
|
721
|
+
</table>
|
722
|
+
</div>
|
723
|
+
|
724
|
+
<p>
|
725
|
+
</p>
|
726
|
+
<p>
|
727
|
+
can be effectively replaced by:
|
728
|
+
</p>
|
729
|
+
<p>
|
730
|
+
</p>
|
731
|
+
<div class="informalexample">
|
732
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
733
|
+
<tbody>
|
734
|
+
<tr>
|
735
|
+
<td class="listing_lines" align="right"><pre>1
|
736
|
+
2
|
737
|
+
3</pre></td>
|
738
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">timeline </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterTimeline.html#clutter-timeline-new">clutter_timeline_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="number">1000</span><span class="symbol">);</span>
|
739
|
+
<span class="function"><a href="ClutterTimeline.html#clutter-timeline-set-repeat-count">clutter_timeline_set_repeat_count</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span>
|
740
|
+
<span class="function"><a href="ClutterTimeline.html#clutter-timeline-set-auto-reverse">clutter_timeline_set_auto_reverse</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">);</span></pre></td>
|
741
|
+
</tr>
|
742
|
+
</tbody>
|
743
|
+
</table>
|
744
|
+
</div>
|
745
|
+
|
746
|
+
<p>
|
747
|
+
</p>
|
748
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
749
|
+
<colgroup>
|
750
|
+
<col align="left" valign="top">
|
751
|
+
<col>
|
752
|
+
</colgroup>
|
753
|
+
<tbody>
|
754
|
+
<tr>
|
755
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
756
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
757
|
+
</td>
|
758
|
+
</tr>
|
759
|
+
<tr>
|
760
|
+
<td><p><span class="term"><em class="parameter"><code>reverse</code></em> :</span></p></td>
|
761
|
+
<td>
|
762
|
+
<code class="literal">TRUE</code> if the <em class="parameter"><code>timeline</code></em> should reverse the direction</td>
|
763
|
+
</tr>
|
764
|
+
</tbody>
|
765
|
+
</table></div>
|
766
|
+
<p class="since">Since 1.6</p>
|
767
|
+
</div>
|
768
|
+
<hr>
|
769
|
+
<div class="refsect2">
|
770
|
+
<a name="clutter-timeline-get-auto-reverse"></a><h3>clutter_timeline_get_auto_reverse ()</h3>
|
771
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_get_auto_reverse (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
772
|
+
<p>
|
773
|
+
Retrieves the value set by <a class="link" href="ClutterTimeline.html#clutter-timeline-set-auto-reverse" title="clutter_timeline_set_auto_reverse ()"><code class="function">clutter_timeline_set_auto_reverse()</code></a>.
|
774
|
+
</p>
|
775
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
776
|
+
<colgroup>
|
777
|
+
<col align="left" valign="top">
|
778
|
+
<col>
|
779
|
+
</colgroup>
|
780
|
+
<tbody>
|
781
|
+
<tr>
|
782
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
783
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
784
|
+
</td>
|
785
|
+
</tr>
|
786
|
+
<tr>
|
787
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
788
|
+
<td>
|
789
|
+
<code class="literal">TRUE</code> if the timeline should automatically reverse, and
|
790
|
+
<code class="literal">FALSE</code> otherwise</td>
|
791
|
+
</tr>
|
792
|
+
</tbody>
|
793
|
+
</table></div>
|
794
|
+
<p class="since">Since 1.6</p>
|
795
|
+
</div>
|
796
|
+
<hr>
|
797
|
+
<div class="refsect2">
|
798
|
+
<a name="ClutterAnimationMode"></a><h3>enum ClutterAnimationMode</h3>
|
799
|
+
<pre class="programlisting">typedef enum {
|
800
|
+
CLUTTER_CUSTOM_MODE = 0,
|
801
|
+
|
802
|
+
/* linear */
|
803
|
+
CLUTTER_LINEAR,
|
804
|
+
|
805
|
+
/* quadratic */
|
806
|
+
CLUTTER_EASE_IN_QUAD,
|
807
|
+
CLUTTER_EASE_OUT_QUAD,
|
808
|
+
CLUTTER_EASE_IN_OUT_QUAD,
|
809
|
+
|
810
|
+
/* cubic */
|
811
|
+
CLUTTER_EASE_IN_CUBIC,
|
812
|
+
CLUTTER_EASE_OUT_CUBIC,
|
813
|
+
CLUTTER_EASE_IN_OUT_CUBIC,
|
814
|
+
|
815
|
+
/* quartic */
|
816
|
+
CLUTTER_EASE_IN_QUART,
|
817
|
+
CLUTTER_EASE_OUT_QUART,
|
818
|
+
CLUTTER_EASE_IN_OUT_QUART,
|
819
|
+
|
820
|
+
/* quintic */
|
821
|
+
CLUTTER_EASE_IN_QUINT,
|
822
|
+
CLUTTER_EASE_OUT_QUINT,
|
823
|
+
CLUTTER_EASE_IN_OUT_QUINT,
|
824
|
+
|
825
|
+
/* sinusoidal */
|
826
|
+
CLUTTER_EASE_IN_SINE,
|
827
|
+
CLUTTER_EASE_OUT_SINE,
|
828
|
+
CLUTTER_EASE_IN_OUT_SINE,
|
829
|
+
|
830
|
+
/* exponential */
|
831
|
+
CLUTTER_EASE_IN_EXPO,
|
832
|
+
CLUTTER_EASE_OUT_EXPO,
|
833
|
+
CLUTTER_EASE_IN_OUT_EXPO,
|
834
|
+
|
835
|
+
/* circular */
|
836
|
+
CLUTTER_EASE_IN_CIRC,
|
837
|
+
CLUTTER_EASE_OUT_CIRC,
|
838
|
+
CLUTTER_EASE_IN_OUT_CIRC,
|
839
|
+
|
840
|
+
/* elastic */
|
841
|
+
CLUTTER_EASE_IN_ELASTIC,
|
842
|
+
CLUTTER_EASE_OUT_ELASTIC,
|
843
|
+
CLUTTER_EASE_IN_OUT_ELASTIC,
|
844
|
+
|
845
|
+
/* overshooting cubic */
|
846
|
+
CLUTTER_EASE_IN_BACK,
|
847
|
+
CLUTTER_EASE_OUT_BACK,
|
848
|
+
CLUTTER_EASE_IN_OUT_BACK,
|
849
|
+
|
850
|
+
/* exponentially decaying parabolic */
|
851
|
+
CLUTTER_EASE_IN_BOUNCE,
|
852
|
+
CLUTTER_EASE_OUT_BOUNCE,
|
853
|
+
CLUTTER_EASE_IN_OUT_BOUNCE,
|
854
|
+
|
855
|
+
/* step functions (see css3-transitions) */
|
856
|
+
CLUTTER_STEPS,
|
857
|
+
CLUTTER_STEP_START, /* steps(1, start) */
|
858
|
+
CLUTTER_STEP_END, /* steps(1, end) */
|
859
|
+
|
860
|
+
/* cubic bezier (see css3-transitions) */
|
861
|
+
CLUTTER_CUBIC_BEZIER,
|
862
|
+
CLUTTER_EASE,
|
863
|
+
CLUTTER_EASE_IN,
|
864
|
+
CLUTTER_EASE_OUT,
|
865
|
+
CLUTTER_EASE_IN_OUT,
|
866
|
+
|
867
|
+
/* guard, before registered alpha functions */
|
868
|
+
CLUTTER_ANIMATION_LAST
|
869
|
+
} ClutterAnimationMode;
|
870
|
+
</pre>
|
871
|
+
<p>
|
872
|
+
The animation modes used by <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> and <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>. This
|
873
|
+
enumeration can be expanded in later versions of Clutter.
|
874
|
+
</p>
|
875
|
+
<p>
|
876
|
+
</p>
|
877
|
+
<div class="figure">
|
878
|
+
<a name="easing-modes"></a><p class="title"><b>Figure 8. Easing modes provided by Clutter</b></p>
|
879
|
+
<div class="figure-contents"><div><img src="easing-modes.png" alt="Easing modes provided by Clutter"></div></div>
|
880
|
+
</div>
|
881
|
+
<p><br class="figure-break">
|
882
|
+
</p>
|
883
|
+
<p>
|
884
|
+
Every global alpha function registered using <a class="link" href="ClutterAlpha.html#clutter-alpha-register-func" title="clutter_alpha_register_func ()"><code class="function">clutter_alpha_register_func()</code></a>
|
885
|
+
or <a class="link" href="ClutterAlpha.html#clutter-alpha-register-closure" title="clutter_alpha_register_closure ()"><code class="function">clutter_alpha_register_closure()</code></a> will have a logical id greater than
|
886
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-ANIMATION-LAST:CAPS"><code class="literal">CLUTTER_ANIMATION_LAST</code></a>.
|
887
|
+
</p>
|
888
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
889
|
+
<colgroup>
|
890
|
+
<col align="left" valign="top">
|
891
|
+
<col>
|
892
|
+
</colgroup>
|
893
|
+
<tbody>
|
894
|
+
<tr>
|
895
|
+
<td><p><a name="CLUTTER-CUSTOM-MODE:CAPS"></a><span class="term"><code class="literal">CLUTTER_CUSTOM_MODE</code></span></p></td>
|
896
|
+
<td>custom progress function
|
897
|
+
</td>
|
898
|
+
</tr>
|
899
|
+
<tr>
|
900
|
+
<td><p><a name="CLUTTER-LINEAR:CAPS"></a><span class="term"><code class="literal">CLUTTER_LINEAR</code></span></p></td>
|
901
|
+
<td>linear tweening
|
902
|
+
</td>
|
903
|
+
</tr>
|
904
|
+
<tr>
|
905
|
+
<td><p><a name="CLUTTER-EASE-IN-QUAD:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_QUAD</code></span></p></td>
|
906
|
+
<td>quadratic tweening
|
907
|
+
</td>
|
908
|
+
</tr>
|
909
|
+
<tr>
|
910
|
+
<td><p><a name="CLUTTER-EASE-OUT-QUAD:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_QUAD</code></span></p></td>
|
911
|
+
<td>quadratic tweening, inverse of
|
912
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUAD:CAPS"><code class="literal">CLUTTER_EASE_IN_QUAD</code></a>
|
913
|
+
</td>
|
914
|
+
</tr>
|
915
|
+
<tr>
|
916
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-QUAD:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_QUAD</code></span></p></td>
|
917
|
+
<td>quadratic tweening, combininig
|
918
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUAD:CAPS"><code class="literal">CLUTTER_EASE_IN_QUAD</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-QUAD:CAPS"><code class="literal">CLUTTER_EASE_OUT_QUAD</code></a>
|
919
|
+
</td>
|
920
|
+
</tr>
|
921
|
+
<tr>
|
922
|
+
<td><p><a name="CLUTTER-EASE-IN-CUBIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_CUBIC</code></span></p></td>
|
923
|
+
<td>cubic tweening
|
924
|
+
</td>
|
925
|
+
</tr>
|
926
|
+
<tr>
|
927
|
+
<td><p><a name="CLUTTER-EASE-OUT-CUBIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_CUBIC</code></span></p></td>
|
928
|
+
<td>cubic tweening, invers of
|
929
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-CUBIC:CAPS"><code class="literal">CLUTTER_EASE_IN_CUBIC</code></a>
|
930
|
+
</td>
|
931
|
+
</tr>
|
932
|
+
<tr>
|
933
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-CUBIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_CUBIC</code></span></p></td>
|
934
|
+
<td>cubic tweening, combining
|
935
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-CUBIC:CAPS"><code class="literal">CLUTTER_EASE_IN_CUBIC</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-CUBIC:CAPS"><code class="literal">CLUTTER_EASE_OUT_CUBIC</code></a>
|
936
|
+
</td>
|
937
|
+
</tr>
|
938
|
+
<tr>
|
939
|
+
<td><p><a name="CLUTTER-EASE-IN-QUART:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_QUART</code></span></p></td>
|
940
|
+
<td>quartic tweening
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
<tr>
|
944
|
+
<td><p><a name="CLUTTER-EASE-OUT-QUART:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_QUART</code></span></p></td>
|
945
|
+
<td>quartic tweening, inverse of
|
946
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUART:CAPS"><code class="literal">CLUTTER_EASE_IN_QUART</code></a>
|
947
|
+
</td>
|
948
|
+
</tr>
|
949
|
+
<tr>
|
950
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-QUART:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_QUART</code></span></p></td>
|
951
|
+
<td>quartic tweening, combining
|
952
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUART:CAPS"><code class="literal">CLUTTER_EASE_IN_QUART</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-QUART:CAPS"><code class="literal">CLUTTER_EASE_OUT_QUART</code></a>
|
953
|
+
</td>
|
954
|
+
</tr>
|
955
|
+
<tr>
|
956
|
+
<td><p><a name="CLUTTER-EASE-IN-QUINT:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_QUINT</code></span></p></td>
|
957
|
+
<td>quintic tweening
|
958
|
+
</td>
|
959
|
+
</tr>
|
960
|
+
<tr>
|
961
|
+
<td><p><a name="CLUTTER-EASE-OUT-QUINT:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_QUINT</code></span></p></td>
|
962
|
+
<td>quintic tweening, inverse of
|
963
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUINT:CAPS"><code class="literal">CLUTTER_EASE_IN_QUINT</code></a>
|
964
|
+
</td>
|
965
|
+
</tr>
|
966
|
+
<tr>
|
967
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-QUINT:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_QUINT</code></span></p></td>
|
968
|
+
<td>fifth power tweening, combining
|
969
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-QUINT:CAPS"><code class="literal">CLUTTER_EASE_IN_QUINT</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-QUINT:CAPS"><code class="literal">CLUTTER_EASE_OUT_QUINT</code></a>
|
970
|
+
</td>
|
971
|
+
</tr>
|
972
|
+
<tr>
|
973
|
+
<td><p><a name="CLUTTER-EASE-IN-SINE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_SINE</code></span></p></td>
|
974
|
+
<td>sinusoidal tweening
|
975
|
+
</td>
|
976
|
+
</tr>
|
977
|
+
<tr>
|
978
|
+
<td><p><a name="CLUTTER-EASE-OUT-SINE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_SINE</code></span></p></td>
|
979
|
+
<td>sinusoidal tweening, inverse of
|
980
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-SINE:CAPS"><code class="literal">CLUTTER_EASE_IN_SINE</code></a>
|
981
|
+
</td>
|
982
|
+
</tr>
|
983
|
+
<tr>
|
984
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-SINE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_SINE</code></span></p></td>
|
985
|
+
<td>sine wave tweening, combining
|
986
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-SINE:CAPS"><code class="literal">CLUTTER_EASE_IN_SINE</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-SINE:CAPS"><code class="literal">CLUTTER_EASE_OUT_SINE</code></a>
|
987
|
+
</td>
|
988
|
+
</tr>
|
989
|
+
<tr>
|
990
|
+
<td><p><a name="CLUTTER-EASE-IN-EXPO:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_EXPO</code></span></p></td>
|
991
|
+
<td>exponential tweening
|
992
|
+
</td>
|
993
|
+
</tr>
|
994
|
+
<tr>
|
995
|
+
<td><p><a name="CLUTTER-EASE-OUT-EXPO:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_EXPO</code></span></p></td>
|
996
|
+
<td>exponential tweening, inverse of
|
997
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-EXPO:CAPS"><code class="literal">CLUTTER_EASE_IN_EXPO</code></a>
|
998
|
+
</td>
|
999
|
+
</tr>
|
1000
|
+
<tr>
|
1001
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-EXPO:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_EXPO</code></span></p></td>
|
1002
|
+
<td>exponential tweening, combining
|
1003
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-EXPO:CAPS"><code class="literal">CLUTTER_EASE_IN_EXPO</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-EXPO:CAPS"><code class="literal">CLUTTER_EASE_OUT_EXPO</code></a>
|
1004
|
+
</td>
|
1005
|
+
</tr>
|
1006
|
+
<tr>
|
1007
|
+
<td><p><a name="CLUTTER-EASE-IN-CIRC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_CIRC</code></span></p></td>
|
1008
|
+
<td>circular tweening
|
1009
|
+
</td>
|
1010
|
+
</tr>
|
1011
|
+
<tr>
|
1012
|
+
<td><p><a name="CLUTTER-EASE-OUT-CIRC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_CIRC</code></span></p></td>
|
1013
|
+
<td>circular tweening, inverse of
|
1014
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-CIRC:CAPS"><code class="literal">CLUTTER_EASE_IN_CIRC</code></a>
|
1015
|
+
</td>
|
1016
|
+
</tr>
|
1017
|
+
<tr>
|
1018
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-CIRC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_CIRC</code></span></p></td>
|
1019
|
+
<td>circular tweening, combining
|
1020
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-EASE-IN-CIRC:CAPS"><code class="literal">CLUTTER_EASE_IN_CIRC</code></a> and <a class="link" href="ClutterTimeline.html#CLUTTER-EASE-OUT-CIRC:CAPS"><code class="literal">CLUTTER_EASE_OUT_CIRC</code></a>
|
1021
|
+
</td>
|
1022
|
+
</tr>
|
1023
|
+
<tr>
|
1024
|
+
<td><p><a name="CLUTTER-EASE-IN-ELASTIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_ELASTIC</code></span></p></td>
|
1025
|
+
<td>elastic tweening, with offshoot on start
|
1026
|
+
</td>
|
1027
|
+
</tr>
|
1028
|
+
<tr>
|
1029
|
+
<td><p><a name="CLUTTER-EASE-OUT-ELASTIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_ELASTIC</code></span></p></td>
|
1030
|
+
<td>elastic tweening, with offshoot on end
|
1031
|
+
</td>
|
1032
|
+
</tr>
|
1033
|
+
<tr>
|
1034
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-ELASTIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_ELASTIC</code></span></p></td>
|
1035
|
+
<td>elastic tweening with offshoot on both ends
|
1036
|
+
</td>
|
1037
|
+
</tr>
|
1038
|
+
<tr>
|
1039
|
+
<td><p><a name="CLUTTER-EASE-IN-BACK:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_BACK</code></span></p></td>
|
1040
|
+
<td>overshooting cubic tweening, with
|
1041
|
+
backtracking on start
|
1042
|
+
</td>
|
1043
|
+
</tr>
|
1044
|
+
<tr>
|
1045
|
+
<td><p><a name="CLUTTER-EASE-OUT-BACK:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_BACK</code></span></p></td>
|
1046
|
+
<td>overshooting cubic tweening, with
|
1047
|
+
backtracking on end
|
1048
|
+
</td>
|
1049
|
+
</tr>
|
1050
|
+
<tr>
|
1051
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-BACK:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_BACK</code></span></p></td>
|
1052
|
+
<td>overshooting cubic tweening, with
|
1053
|
+
backtracking on both ends
|
1054
|
+
</td>
|
1055
|
+
</tr>
|
1056
|
+
<tr>
|
1057
|
+
<td><p><a name="CLUTTER-EASE-IN-BOUNCE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_BOUNCE</code></span></p></td>
|
1058
|
+
<td>exponentially decaying parabolic (bounce)
|
1059
|
+
tweening, with bounce on start
|
1060
|
+
</td>
|
1061
|
+
</tr>
|
1062
|
+
<tr>
|
1063
|
+
<td><p><a name="CLUTTER-EASE-OUT-BOUNCE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT_BOUNCE</code></span></p></td>
|
1064
|
+
<td>exponentially decaying parabolic (bounce)
|
1065
|
+
tweening, with bounce on end
|
1066
|
+
</td>
|
1067
|
+
</tr>
|
1068
|
+
<tr>
|
1069
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT-BOUNCE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT_BOUNCE</code></span></p></td>
|
1070
|
+
<td>exponentially decaying parabolic (bounce)
|
1071
|
+
tweening, with bounce on both ends
|
1072
|
+
</td>
|
1073
|
+
</tr>
|
1074
|
+
<tr>
|
1075
|
+
<td><p><a name="CLUTTER-STEPS:CAPS"></a><span class="term"><code class="literal">CLUTTER_STEPS</code></span></p></td>
|
1076
|
+
<td>parametrized step function; see <a class="link" href="ClutterTimeline.html#clutter-timeline-set-step-progress" title="clutter_timeline_set_step_progress ()"><code class="function">clutter_timeline_set_step_progress()</code></a>
|
1077
|
+
for further details. (Since 1.12)
|
1078
|
+
</td>
|
1079
|
+
</tr>
|
1080
|
+
<tr>
|
1081
|
+
<td><p><a name="CLUTTER-STEP-START:CAPS"></a><span class="term"><code class="literal">CLUTTER_STEP_START</code></span></p></td>
|
1082
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-STEPS:CAPS"><code class="literal">CLUTTER_STEPS</code></a> with a number of steps
|
1083
|
+
equal to 1, and a step mode of <a class="link" href="ClutterTimeline.html#CLUTTER-STEP-MODE-START:CAPS"><code class="literal">CLUTTER_STEP_MODE_START</code></a>. (Since 1.12)
|
1084
|
+
</td>
|
1085
|
+
</tr>
|
1086
|
+
<tr>
|
1087
|
+
<td><p><a name="CLUTTER-STEP-END:CAPS"></a><span class="term"><code class="literal">CLUTTER_STEP_END</code></span></p></td>
|
1088
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-STEPS:CAPS"><code class="literal">CLUTTER_STEPS</code></a> with a number of steps
|
1089
|
+
equal to 1, and a step mode of <a class="link" href="ClutterTimeline.html#CLUTTER-STEP-MODE-END:CAPS"><code class="literal">CLUTTER_STEP_MODE_END</code></a>. (Since 1.12)
|
1090
|
+
</td>
|
1091
|
+
</tr>
|
1092
|
+
<tr>
|
1093
|
+
<td><p><a name="CLUTTER-CUBIC-BEZIER:CAPS"></a><span class="term"><code class="literal">CLUTTER_CUBIC_BEZIER</code></span></p></td>
|
1094
|
+
<td>cubic bezier between (0, 0) and (1, 1) with two
|
1095
|
+
control points; see <a class="link" href="ClutterTimeline.html#clutter-timeline-set-cubic-bezier-progress" title="clutter_timeline_set_cubic_bezier_progress ()"><code class="function">clutter_timeline_set_cubic_bezier_progress()</code></a>. (Since 1.12)
|
1096
|
+
</td>
|
1097
|
+
</tr>
|
1098
|
+
<tr>
|
1099
|
+
<td><p><a name="CLUTTER-EASE:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE</code></span></p></td>
|
1100
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-CUBIC-BEZIER:CAPS"><code class="literal">CLUTTER_CUBIC_BEZIER</code></a> with control points
|
1101
|
+
in (0.25, 0.1) and (0.25, 1.0). (Since 1.12)
|
1102
|
+
</td>
|
1103
|
+
</tr>
|
1104
|
+
<tr>
|
1105
|
+
<td><p><a name="CLUTTER-EASE-IN:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN</code></span></p></td>
|
1106
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-CUBIC-BEZIER:CAPS"><code class="literal">CLUTTER_CUBIC_BEZIER</code></a> with control points
|
1107
|
+
in (0.42, 0) and (1.0, 1.0). (Since 1.12)
|
1108
|
+
</td>
|
1109
|
+
</tr>
|
1110
|
+
<tr>
|
1111
|
+
<td><p><a name="CLUTTER-EASE-OUT:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_OUT</code></span></p></td>
|
1112
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-CUBIC-BEZIER:CAPS"><code class="literal">CLUTTER_CUBIC_BEZIER</code></a> with control points
|
1113
|
+
in (0, 0) and (0.58, 1.0). (Since 1.12)
|
1114
|
+
</td>
|
1115
|
+
</tr>
|
1116
|
+
<tr>
|
1117
|
+
<td><p><a name="CLUTTER-EASE-IN-OUT:CAPS"></a><span class="term"><code class="literal">CLUTTER_EASE_IN_OUT</code></span></p></td>
|
1118
|
+
<td>equivalent to <a class="link" href="ClutterTimeline.html#CLUTTER-CUBIC-BEZIER:CAPS"><code class="literal">CLUTTER_CUBIC_BEZIER</code></a> with control points
|
1119
|
+
in (0.42, 0) and (0.58, 1.0). (Since 1.12)
|
1120
|
+
</td>
|
1121
|
+
</tr>
|
1122
|
+
<tr>
|
1123
|
+
<td><p><a name="CLUTTER-ANIMATION-LAST:CAPS"></a><span class="term"><code class="literal">CLUTTER_ANIMATION_LAST</code></span></p></td>
|
1124
|
+
<td>last animation mode, used as a guard for
|
1125
|
+
registered global alpha functions
|
1126
|
+
</td>
|
1127
|
+
</tr>
|
1128
|
+
</tbody>
|
1129
|
+
</table></div>
|
1130
|
+
<p class="since">Since 1.0</p>
|
1131
|
+
</div>
|
1132
|
+
<hr>
|
1133
|
+
<div class="refsect2">
|
1134
|
+
<a name="ClutterStepMode"></a><h3>enum ClutterStepMode</h3>
|
1135
|
+
<pre class="programlisting">typedef enum {
|
1136
|
+
CLUTTER_STEP_MODE_START,
|
1137
|
+
CLUTTER_STEP_MODE_END
|
1138
|
+
} ClutterStepMode;
|
1139
|
+
</pre>
|
1140
|
+
<p>
|
1141
|
+
Change the value transition of a step function.
|
1142
|
+
</p>
|
1143
|
+
<p>
|
1144
|
+
See <a class="link" href="ClutterTimeline.html#clutter-timeline-set-step-progress" title="clutter_timeline_set_step_progress ()"><code class="function">clutter_timeline_set_step_progress()</code></a>.
|
1145
|
+
</p>
|
1146
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1147
|
+
<colgroup>
|
1148
|
+
<col align="left" valign="top">
|
1149
|
+
<col>
|
1150
|
+
</colgroup>
|
1151
|
+
<tbody>
|
1152
|
+
<tr>
|
1153
|
+
<td><p><a name="CLUTTER-STEP-MODE-START:CAPS"></a><span class="term"><code class="literal">CLUTTER_STEP_MODE_START</code></span></p></td>
|
1154
|
+
<td>The change in the value of a
|
1155
|
+
<code class="literal">CLUTTER_STEP</code> progress mode should occur at the start of
|
1156
|
+
the transition
|
1157
|
+
</td>
|
1158
|
+
</tr>
|
1159
|
+
<tr>
|
1160
|
+
<td><p><a name="CLUTTER-STEP-MODE-END:CAPS"></a><span class="term"><code class="literal">CLUTTER_STEP_MODE_END</code></span></p></td>
|
1161
|
+
<td>The change in the value of a
|
1162
|
+
<code class="literal">CLUTTER_STEP</code> progress mode should occur at the end of
|
1163
|
+
the transition
|
1164
|
+
</td>
|
1165
|
+
</tr>
|
1166
|
+
</tbody>
|
1167
|
+
</table></div>
|
1168
|
+
<p class="since">Since 1.12</p>
|
1169
|
+
</div>
|
1170
|
+
<hr>
|
1171
|
+
<div class="refsect2">
|
1172
|
+
<a name="clutter-timeline-set-progress-mode"></a><h3>clutter_timeline_set_progress_mode ()</h3>
|
1173
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_progress_mode (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1174
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> mode</code></em>);</pre>
|
1175
|
+
<p>
|
1176
|
+
Sets the progress function using a value from the <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a>
|
1177
|
+
enumeration. The <em class="parameter"><code>mode</code></em> cannot be <a class="link" href="ClutterTimeline.html#CLUTTER-CUSTOM-MODE:CAPS"><code class="literal">CLUTTER_CUSTOM_MODE</code></a> or bigger than
|
1178
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-ANIMATION-LAST:CAPS"><code class="literal">CLUTTER_ANIMATION_LAST</code></a>.
|
1179
|
+
</p>
|
1180
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1181
|
+
<colgroup>
|
1182
|
+
<col align="left" valign="top">
|
1183
|
+
<col>
|
1184
|
+
</colgroup>
|
1185
|
+
<tbody>
|
1186
|
+
<tr>
|
1187
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1188
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1189
|
+
</td>
|
1190
|
+
</tr>
|
1191
|
+
<tr>
|
1192
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1193
|
+
<td>the progress mode, as a <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a>
|
1194
|
+
</td>
|
1195
|
+
</tr>
|
1196
|
+
</tbody>
|
1197
|
+
</table></div>
|
1198
|
+
<p class="since">Since 1.10</p>
|
1199
|
+
</div>
|
1200
|
+
<hr>
|
1201
|
+
<div class="refsect2">
|
1202
|
+
<a name="clutter-timeline-get-progress-mode"></a><h3>clutter_timeline_get_progress_mode ()</h3>
|
1203
|
+
<pre class="programlisting"><a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="returnvalue">ClutterAnimationMode</span></a> clutter_timeline_get_progress_mode (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1204
|
+
<p>
|
1205
|
+
Retrieves the progress mode set using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-mode" title="clutter_timeline_set_progress_mode ()"><code class="function">clutter_timeline_set_progress_mode()</code></a>
|
1206
|
+
or <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-func" title="clutter_timeline_set_progress_func ()"><code class="function">clutter_timeline_set_progress_func()</code></a>.
|
1207
|
+
</p>
|
1208
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1209
|
+
<colgroup>
|
1210
|
+
<col align="left" valign="top">
|
1211
|
+
<col>
|
1212
|
+
</colgroup>
|
1213
|
+
<tbody>
|
1214
|
+
<tr>
|
1215
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1216
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1217
|
+
</td>
|
1218
|
+
</tr>
|
1219
|
+
<tr>
|
1220
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1221
|
+
<td>a <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a>
|
1222
|
+
</td>
|
1223
|
+
</tr>
|
1224
|
+
</tbody>
|
1225
|
+
</table></div>
|
1226
|
+
<p class="since">Since 1.10</p>
|
1227
|
+
</div>
|
1228
|
+
<hr>
|
1229
|
+
<div class="refsect2">
|
1230
|
+
<a name="clutter-timeline-set-cubic-bezier-progress"></a><h3>clutter_timeline_set_cubic_bezier_progress ()</h3>
|
1231
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_cubic_bezier_progress
|
1232
|
+
(<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1233
|
+
<em class="parameter"><code>const <a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_1</code></em>,
|
1234
|
+
<em class="parameter"><code>const <a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_2</code></em>);</pre>
|
1235
|
+
<p>
|
1236
|
+
Sets the <a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title='The "progress-mode" property'><span class="type">"progress-mode"</span></a> of <em class="parameter"><code>timeline</code></em>
|
1237
|
+
to <a class="link" href="ClutterTimeline.html#CLUTTER-CUBIC-BEZIER:CAPS"><code class="literal">CLUTTER_CUBIC_BEZIER</code></a>, and sets the two control
|
1238
|
+
points for the cubic bezier.
|
1239
|
+
</p>
|
1240
|
+
<p>
|
1241
|
+
The cubic bezier curve is between (0, 0) and (1, 1). The X coordinate
|
1242
|
+
of the two control points must be in the [ 0, 1 ] range, while the
|
1243
|
+
Y coordinate of the two control points can exceed this range.
|
1244
|
+
</p>
|
1245
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1246
|
+
<colgroup>
|
1247
|
+
<col align="left" valign="top">
|
1248
|
+
<col>
|
1249
|
+
</colgroup>
|
1250
|
+
<tbody>
|
1251
|
+
<tr>
|
1252
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1253
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1254
|
+
</td>
|
1255
|
+
</tr>
|
1256
|
+
<tr>
|
1257
|
+
<td><p><span class="term"><em class="parameter"><code>c_1</code></em> :</span></p></td>
|
1258
|
+
<td>the first control point for the cubic bezier</td>
|
1259
|
+
</tr>
|
1260
|
+
<tr>
|
1261
|
+
<td><p><span class="term"><em class="parameter"><code>c_2</code></em> :</span></p></td>
|
1262
|
+
<td>the second control point for the cubic bezier</td>
|
1263
|
+
</tr>
|
1264
|
+
</tbody>
|
1265
|
+
</table></div>
|
1266
|
+
<p class="since">Since 1.12</p>
|
1267
|
+
</div>
|
1268
|
+
<hr>
|
1269
|
+
<div class="refsect2">
|
1270
|
+
<a name="clutter-timeline-get-cubic-bezier-progress"></a><h3>clutter_timeline_get_cubic_bezier_progress ()</h3>
|
1271
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_get_cubic_bezier_progress
|
1272
|
+
(<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1273
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_1</code></em>,
|
1274
|
+
<em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterPoint" title="struct ClutterPoint"><span class="type">ClutterPoint</span></a> *c_2</code></em>);</pre>
|
1275
|
+
<p>
|
1276
|
+
Retrieves the control points for the cubic bezier progress mode.
|
1277
|
+
</p>
|
1278
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1279
|
+
<colgroup>
|
1280
|
+
<col align="left" valign="top">
|
1281
|
+
<col>
|
1282
|
+
</colgroup>
|
1283
|
+
<tbody>
|
1284
|
+
<tr>
|
1285
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1286
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1287
|
+
</td>
|
1288
|
+
</tr>
|
1289
|
+
<tr>
|
1290
|
+
<td><p><span class="term"><em class="parameter"><code>c_1</code></em> :</span></p></td>
|
1291
|
+
<td>return location for the first control
|
1292
|
+
point of the cubic bezier, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span>
|
1293
|
+
</td>
|
1294
|
+
</tr>
|
1295
|
+
<tr>
|
1296
|
+
<td><p><span class="term"><em class="parameter"><code>c_2</code></em> :</span></p></td>
|
1297
|
+
<td>return location for the second control
|
1298
|
+
point of the cubic bezier, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span>
|
1299
|
+
</td>
|
1300
|
+
</tr>
|
1301
|
+
<tr>
|
1302
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1303
|
+
<td>
|
1304
|
+
<code class="literal">TRUE</code> if the <em class="parameter"><code>timeline</code></em> is using a cubic bezier progress
|
1305
|
+
more, and <code class="literal">FALSE</code> otherwise</td>
|
1306
|
+
</tr>
|
1307
|
+
</tbody>
|
1308
|
+
</table></div>
|
1309
|
+
<p class="since">Since 1.12</p>
|
1310
|
+
</div>
|
1311
|
+
<hr>
|
1312
|
+
<div class="refsect2">
|
1313
|
+
<a name="clutter-timeline-set-step-progress"></a><h3>clutter_timeline_set_step_progress ()</h3>
|
1314
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_step_progress (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1315
|
+
<em class="parameter"><code><span class="type">gint</span> n_steps</code></em>,
|
1316
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterStepMode" title="enum ClutterStepMode"><span class="type">ClutterStepMode</span></a> step_mode</code></em>);</pre>
|
1317
|
+
<p>
|
1318
|
+
Sets the <a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title='The "progress-mode" property'><span class="type">"progress-mode"</span></a> of the <em class="parameter"><code>timeline</code></em> to <a class="link" href="ClutterTimeline.html#CLUTTER-STEPS:CAPS"><code class="literal">CLUTTER_STEPS</code></a>
|
1319
|
+
and provides the parameters of the step function.
|
1320
|
+
</p>
|
1321
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1322
|
+
<colgroup>
|
1323
|
+
<col align="left" valign="top">
|
1324
|
+
<col>
|
1325
|
+
</colgroup>
|
1326
|
+
<tbody>
|
1327
|
+
<tr>
|
1328
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1329
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1330
|
+
</td>
|
1331
|
+
</tr>
|
1332
|
+
<tr>
|
1333
|
+
<td><p><span class="term"><em class="parameter"><code>n_steps</code></em> :</span></p></td>
|
1334
|
+
<td>the number of steps</td>
|
1335
|
+
</tr>
|
1336
|
+
<tr>
|
1337
|
+
<td><p><span class="term"><em class="parameter"><code>step_mode</code></em> :</span></p></td>
|
1338
|
+
<td>whether the change should happen at the start
|
1339
|
+
or at the end of the step</td>
|
1340
|
+
</tr>
|
1341
|
+
</tbody>
|
1342
|
+
</table></div>
|
1343
|
+
<p class="since">Since 1.12</p>
|
1344
|
+
</div>
|
1345
|
+
<hr>
|
1346
|
+
<div class="refsect2">
|
1347
|
+
<a name="clutter-timeline-get-step-progress"></a><h3>clutter_timeline_get_step_progress ()</h3>
|
1348
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_get_step_progress (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1349
|
+
<em class="parameter"><code><span class="type">gint</span> *n_steps</code></em>,
|
1350
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterStepMode" title="enum ClutterStepMode"><span class="type">ClutterStepMode</span></a> *step_mode</code></em>);</pre>
|
1351
|
+
<p>
|
1352
|
+
Retrieves the parameters of the step progress mode used by <em class="parameter"><code>timeline</code></em>.
|
1353
|
+
</p>
|
1354
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1355
|
+
<colgroup>
|
1356
|
+
<col align="left" valign="top">
|
1357
|
+
<col>
|
1358
|
+
</colgroup>
|
1359
|
+
<tbody>
|
1360
|
+
<tr>
|
1361
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1362
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1363
|
+
</td>
|
1364
|
+
</tr>
|
1365
|
+
<tr>
|
1366
|
+
<td><p><span class="term"><em class="parameter"><code>n_steps</code></em> :</span></p></td>
|
1367
|
+
<td>return location for the number of steps, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1368
|
+
</td>
|
1369
|
+
</tr>
|
1370
|
+
<tr>
|
1371
|
+
<td><p><span class="term"><em class="parameter"><code>step_mode</code></em> :</span></p></td>
|
1372
|
+
<td>return location for the value change policy,
|
1373
|
+
or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1374
|
+
</td>
|
1375
|
+
</tr>
|
1376
|
+
<tr>
|
1377
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1378
|
+
<td>
|
1379
|
+
<code class="literal">TRUE</code> if the <em class="parameter"><code>timeline</code></em> is using a step progress
|
1380
|
+
mode, and <code class="literal">FALSE</code> otherwise</td>
|
1381
|
+
</tr>
|
1382
|
+
</tbody>
|
1383
|
+
</table></div>
|
1384
|
+
<p class="since">Since 1.12</p>
|
1385
|
+
</div>
|
1386
|
+
<hr>
|
1387
|
+
<div class="refsect2">
|
1388
|
+
<a name="ClutterTimelineProgressFunc"></a><h3>ClutterTimelineProgressFunc ()</h3>
|
1389
|
+
<pre class="programlisting"><span class="returnvalue">gdouble</span> (*ClutterTimelineProgressFunc) (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1390
|
+
<em class="parameter"><code><span class="type">gdouble</span> elapsed</code></em>,
|
1391
|
+
<em class="parameter"><code><span class="type">gdouble</span> total</code></em>,
|
1392
|
+
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
|
1393
|
+
<p>
|
1394
|
+
A function for defining a custom progress.
|
1395
|
+
</p>
|
1396
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1397
|
+
<colgroup>
|
1398
|
+
<col align="left" valign="top">
|
1399
|
+
<col>
|
1400
|
+
</colgroup>
|
1401
|
+
<tbody>
|
1402
|
+
<tr>
|
1403
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1404
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1405
|
+
</td>
|
1406
|
+
</tr>
|
1407
|
+
<tr>
|
1408
|
+
<td><p><span class="term"><em class="parameter"><code>elapsed</code></em> :</span></p></td>
|
1409
|
+
<td>the elapsed time, in milliseconds</td>
|
1410
|
+
</tr>
|
1411
|
+
<tr>
|
1412
|
+
<td><p><span class="term"><em class="parameter"><code>total</code></em> :</span></p></td>
|
1413
|
+
<td>the total duration of the timeline, in milliseconds,</td>
|
1414
|
+
</tr>
|
1415
|
+
<tr>
|
1416
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
1417
|
+
<td>data passed to the function</td>
|
1418
|
+
</tr>
|
1419
|
+
<tr>
|
1420
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1421
|
+
<td>the progress, as a floating point value between -1.0 and 2.0.</td>
|
1422
|
+
</tr>
|
1423
|
+
</tbody>
|
1424
|
+
</table></div>
|
1425
|
+
<p class="since">Since 1.10</p>
|
1426
|
+
</div>
|
1427
|
+
<hr>
|
1428
|
+
<div class="refsect2">
|
1429
|
+
<a name="clutter-timeline-set-progress-func"></a><h3>clutter_timeline_set_progress_func ()</h3>
|
1430
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_progress_func (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1431
|
+
<em class="parameter"><code><a class="link" href="ClutterTimeline.html#ClutterTimelineProgressFunc" title="ClutterTimelineProgressFunc ()"><span class="type">ClutterTimelineProgressFunc</span></a> func</code></em>,
|
1432
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
|
1433
|
+
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);</pre>
|
1434
|
+
<p>
|
1435
|
+
Sets a custom progress function for <em class="parameter"><code>timeline</code></em>. The progress function will
|
1436
|
+
be called by <a class="link" href="ClutterTimeline.html#clutter-timeline-get-progress" title="clutter_timeline_get_progress ()"><code class="function">clutter_timeline_get_progress()</code></a> and will be used to compute
|
1437
|
+
the progress value based on the elapsed time and the total duration of the
|
1438
|
+
timeline.
|
1439
|
+
</p>
|
1440
|
+
<p>
|
1441
|
+
If <em class="parameter"><code>func</code></em> is not <code class="literal">NULL</code>, the <a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title='The "progress-mode" property'><span class="type">"progress-mode"</span></a> property will
|
1442
|
+
be set to <a class="link" href="ClutterTimeline.html#CLUTTER-CUSTOM-MODE:CAPS"><code class="literal">CLUTTER_CUSTOM_MODE</code></a>.
|
1443
|
+
</p>
|
1444
|
+
<p>
|
1445
|
+
If <em class="parameter"><code>func</code></em> is <code class="literal">NULL</code>, any previously set progress function will be unset, and
|
1446
|
+
the <a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title='The "progress-mode" property'><span class="type">"progress-mode"</span></a> property will be set to <a class="link" href="ClutterTimeline.html#CLUTTER-LINEAR:CAPS"><code class="literal">CLUTTER_LINEAR</code></a>.
|
1447
|
+
</p>
|
1448
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1449
|
+
<colgroup>
|
1450
|
+
<col align="left" valign="top">
|
1451
|
+
<col>
|
1452
|
+
</colgroup>
|
1453
|
+
<tbody>
|
1454
|
+
<tr>
|
1455
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1456
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1457
|
+
</td>
|
1458
|
+
</tr>
|
1459
|
+
<tr>
|
1460
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
1461
|
+
<td>a progress function, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1462
|
+
</td>
|
1463
|
+
</tr>
|
1464
|
+
<tr>
|
1465
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1466
|
+
<td>data to pass to <em class="parameter"><code>func</code></em>. <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>
|
1467
|
+
</td>
|
1468
|
+
</tr>
|
1469
|
+
<tr>
|
1470
|
+
<td><p><span class="term"><em class="parameter"><code>notify</code></em> :</span></p></td>
|
1471
|
+
<td>a function to be called when the progress function is removed
|
1472
|
+
or the timeline is disposed</td>
|
1473
|
+
</tr>
|
1474
|
+
</tbody>
|
1475
|
+
</table></div>
|
1476
|
+
<p class="since">Since 1.10</p>
|
1477
|
+
</div>
|
1478
|
+
<hr>
|
1479
|
+
<div class="refsect2">
|
1480
|
+
<a name="clutter-timeline-get-duration-hint"></a><h3>clutter_timeline_get_duration_hint ()</h3>
|
1481
|
+
<pre class="programlisting"><span class="returnvalue">gint64</span> clutter_timeline_get_duration_hint (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1482
|
+
<p>
|
1483
|
+
Retrieves the full duration of the <em class="parameter"><code>timeline</code></em>, taking into account the
|
1484
|
+
current value of the <a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'><span class="type">"repeat-count"</span></a> property.
|
1485
|
+
</p>
|
1486
|
+
<p>
|
1487
|
+
If the <a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'><span class="type">"repeat-count"</span></a> property is set to -1, this function
|
1488
|
+
will return <code class="literal">G_MAXINT64</code>.
|
1489
|
+
</p>
|
1490
|
+
<p>
|
1491
|
+
The returned value is to be considered a hint, and it's only valid
|
1492
|
+
as long as the <em class="parameter"><code>timeline</code></em> hasn't been changed.
|
1493
|
+
</p>
|
1494
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1495
|
+
<colgroup>
|
1496
|
+
<col align="left" valign="top">
|
1497
|
+
<col>
|
1498
|
+
</colgroup>
|
1499
|
+
<tbody>
|
1500
|
+
<tr>
|
1501
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1502
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1503
|
+
</td>
|
1504
|
+
</tr>
|
1505
|
+
<tr>
|
1506
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1507
|
+
<td>the full duration of the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1508
|
+
</td>
|
1509
|
+
</tr>
|
1510
|
+
</tbody>
|
1511
|
+
</table></div>
|
1512
|
+
<p class="since">Since 1.10</p>
|
1513
|
+
</div>
|
1514
|
+
<hr>
|
1515
|
+
<div class="refsect2">
|
1516
|
+
<a name="clutter-timeline-get-current-repeat"></a><h3>clutter_timeline_get_current_repeat ()</h3>
|
1517
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> clutter_timeline_get_current_repeat (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1518
|
+
<p>
|
1519
|
+
Retrieves the current repeat for a timeline.
|
1520
|
+
</p>
|
1521
|
+
<p>
|
1522
|
+
Repeats start at 0.
|
1523
|
+
</p>
|
1524
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1525
|
+
<colgroup>
|
1526
|
+
<col align="left" valign="top">
|
1527
|
+
<col>
|
1528
|
+
</colgroup>
|
1529
|
+
<tbody>
|
1530
|
+
<tr>
|
1531
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1532
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1533
|
+
</td>
|
1534
|
+
</tr>
|
1535
|
+
<tr>
|
1536
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1537
|
+
<td>the current repeat</td>
|
1538
|
+
</tr>
|
1539
|
+
</tbody>
|
1540
|
+
</table></div>
|
1541
|
+
<p class="since">Since 1.10</p>
|
1542
|
+
</div>
|
1543
|
+
<hr>
|
1544
|
+
<div class="refsect2">
|
1545
|
+
<a name="clutter-timeline-set-loop"></a><h3>clutter_timeline_set_loop ()</h3>
|
1546
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_set_loop (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1547
|
+
<em class="parameter"><code><span class="type">gboolean</span> loop</code></em>);</pre>
|
1548
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1549
|
+
<h3 class="title">Warning</h3>
|
1550
|
+
<p><code class="literal">clutter_timeline_set_loop</code> has been deprecated since version 1.10 and should not be used in newly-written code. Use <a class="link" href="ClutterTimeline.html#clutter-timeline-set-repeat-count" title="clutter_timeline_set_repeat_count ()"><code class="function">clutter_timeline_set_repeat_count()</code></a> instead.</p>
|
1551
|
+
</div>
|
1552
|
+
<p>
|
1553
|
+
Sets whether <em class="parameter"><code>timeline</code></em> should loop.
|
1554
|
+
</p>
|
1555
|
+
<p>
|
1556
|
+
This function is equivalent to calling <a class="link" href="ClutterTimeline.html#clutter-timeline-set-repeat-count" title="clutter_timeline_set_repeat_count ()"><code class="function">clutter_timeline_set_repeat_count()</code></a>
|
1557
|
+
with -1 if <em class="parameter"><code>loop</code></em> is <code class="literal">TRUE</code>, and with 0 if <em class="parameter"><code>loop</code></em> is <code class="literal">FALSE</code>.
|
1558
|
+
</p>
|
1559
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1560
|
+
<colgroup>
|
1561
|
+
<col align="left" valign="top">
|
1562
|
+
<col>
|
1563
|
+
</colgroup>
|
1564
|
+
<tbody>
|
1565
|
+
<tr>
|
1566
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1567
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1568
|
+
</td>
|
1569
|
+
</tr>
|
1570
|
+
<tr>
|
1571
|
+
<td><p><span class="term"><em class="parameter"><code>loop</code></em> :</span></p></td>
|
1572
|
+
<td>
|
1573
|
+
<code class="literal">TRUE</code> for enable looping</td>
|
1574
|
+
</tr>
|
1575
|
+
</tbody>
|
1576
|
+
</table></div>
|
1577
|
+
</div>
|
1578
|
+
<hr>
|
1579
|
+
<div class="refsect2">
|
1580
|
+
<a name="clutter-timeline-get-loop"></a><h3>clutter_timeline_get_loop ()</h3>
|
1581
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_get_loop (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1582
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1583
|
+
<h3 class="title">Warning</h3>
|
1584
|
+
<p><code class="literal">clutter_timeline_get_loop</code> has been deprecated since version 1.10 and should not be used in newly-written code. Use <a class="link" href="ClutterTimeline.html#clutter-timeline-get-repeat-count" title="clutter_timeline_get_repeat_count ()"><code class="function">clutter_timeline_get_repeat_count()</code></a> instead.</p>
|
1585
|
+
</div>
|
1586
|
+
<p>
|
1587
|
+
Gets whether <em class="parameter"><code>timeline</code></em> is looping
|
1588
|
+
</p>
|
1589
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1590
|
+
<colgroup>
|
1591
|
+
<col align="left" valign="top">
|
1592
|
+
<col>
|
1593
|
+
</colgroup>
|
1594
|
+
<tbody>
|
1595
|
+
<tr>
|
1596
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1597
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1598
|
+
</td>
|
1599
|
+
</tr>
|
1600
|
+
<tr>
|
1601
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1602
|
+
<td>
|
1603
|
+
<code class="literal">TRUE</code> if the timeline is looping</td>
|
1604
|
+
</tr>
|
1605
|
+
</tbody>
|
1606
|
+
</table></div>
|
1607
|
+
</div>
|
1608
|
+
<hr>
|
1609
|
+
<div class="refsect2">
|
1610
|
+
<a name="clutter-timeline-start"></a><h3>clutter_timeline_start ()</h3>
|
1611
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_start (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1612
|
+
<p>
|
1613
|
+
Starts the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> playing.
|
1614
|
+
</p>
|
1615
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1616
|
+
<colgroup>
|
1617
|
+
<col align="left" valign="top">
|
1618
|
+
<col>
|
1619
|
+
</colgroup>
|
1620
|
+
<tbody><tr>
|
1621
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1622
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1623
|
+
</td>
|
1624
|
+
</tr></tbody>
|
1625
|
+
</table></div>
|
1626
|
+
</div>
|
1627
|
+
<hr>
|
1628
|
+
<div class="refsect2">
|
1629
|
+
<a name="clutter-timeline-pause"></a><h3>clutter_timeline_pause ()</h3>
|
1630
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_pause (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1631
|
+
<p>
|
1632
|
+
Pauses the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> on current frame
|
1633
|
+
</p>
|
1634
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1635
|
+
<colgroup>
|
1636
|
+
<col align="left" valign="top">
|
1637
|
+
<col>
|
1638
|
+
</colgroup>
|
1639
|
+
<tbody><tr>
|
1640
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1641
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1642
|
+
</td>
|
1643
|
+
</tr></tbody>
|
1644
|
+
</table></div>
|
1645
|
+
</div>
|
1646
|
+
<hr>
|
1647
|
+
<div class="refsect2">
|
1648
|
+
<a name="clutter-timeline-stop"></a><h3>clutter_timeline_stop ()</h3>
|
1649
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_stop (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1650
|
+
<p>
|
1651
|
+
Stops the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> and moves to frame 0
|
1652
|
+
</p>
|
1653
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1654
|
+
<colgroup>
|
1655
|
+
<col align="left" valign="top">
|
1656
|
+
<col>
|
1657
|
+
</colgroup>
|
1658
|
+
<tbody><tr>
|
1659
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1660
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1661
|
+
</td>
|
1662
|
+
</tr></tbody>
|
1663
|
+
</table></div>
|
1664
|
+
</div>
|
1665
|
+
<hr>
|
1666
|
+
<div class="refsect2">
|
1667
|
+
<a name="clutter-timeline-rewind"></a><h3>clutter_timeline_rewind ()</h3>
|
1668
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_rewind (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1669
|
+
<p>
|
1670
|
+
Rewinds <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> to the first frame if its direction is
|
1671
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_FORWARD</code></a> and the last frame if it is
|
1672
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-BACKWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_BACKWARD</code></a>.
|
1673
|
+
</p>
|
1674
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1675
|
+
<colgroup>
|
1676
|
+
<col align="left" valign="top">
|
1677
|
+
<col>
|
1678
|
+
</colgroup>
|
1679
|
+
<tbody><tr>
|
1680
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1681
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1682
|
+
</td>
|
1683
|
+
</tr></tbody>
|
1684
|
+
</table></div>
|
1685
|
+
</div>
|
1686
|
+
<hr>
|
1687
|
+
<div class="refsect2">
|
1688
|
+
<a name="clutter-timeline-skip"></a><h3>clutter_timeline_skip ()</h3>
|
1689
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_skip (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1690
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
1691
|
+
<p>
|
1692
|
+
Advance timeline by the requested time in milliseconds
|
1693
|
+
</p>
|
1694
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1695
|
+
<colgroup>
|
1696
|
+
<col align="left" valign="top">
|
1697
|
+
<col>
|
1698
|
+
</colgroup>
|
1699
|
+
<tbody>
|
1700
|
+
<tr>
|
1701
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1702
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1703
|
+
</td>
|
1704
|
+
</tr>
|
1705
|
+
<tr>
|
1706
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
1707
|
+
<td>Amount of time to skip</td>
|
1708
|
+
</tr>
|
1709
|
+
</tbody>
|
1710
|
+
</table></div>
|
1711
|
+
</div>
|
1712
|
+
<hr>
|
1713
|
+
<div class="refsect2">
|
1714
|
+
<a name="clutter-timeline-advance"></a><h3>clutter_timeline_advance ()</h3>
|
1715
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_advance (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1716
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
1717
|
+
<p>
|
1718
|
+
Advance timeline to the requested point. The point is given as a
|
1719
|
+
time in milliseconds since the timeline started.
|
1720
|
+
</p>
|
1721
|
+
<p>
|
1722
|
+
</p>
|
1723
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1724
|
+
<h3 class="title">Note</h3>
|
1725
|
+
<p>The <em class="parameter"><code>timeline</code></em> will not emit the <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a>
|
1726
|
+
signal for the given time. The first ::new-frame signal after the call to
|
1727
|
+
<a class="link" href="ClutterTimeline.html#clutter-timeline-advance" title="clutter_timeline_advance ()"><code class="function">clutter_timeline_advance()</code></a> will be emit the skipped markers.
|
1728
|
+
</p>
|
1729
|
+
</div>
|
1730
|
+
<p>
|
1731
|
+
</p>
|
1732
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1733
|
+
<colgroup>
|
1734
|
+
<col align="left" valign="top">
|
1735
|
+
<col>
|
1736
|
+
</colgroup>
|
1737
|
+
<tbody>
|
1738
|
+
<tr>
|
1739
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1740
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1741
|
+
</td>
|
1742
|
+
</tr>
|
1743
|
+
<tr>
|
1744
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
1745
|
+
<td>Time to advance to</td>
|
1746
|
+
</tr>
|
1747
|
+
</tbody>
|
1748
|
+
</table></div>
|
1749
|
+
</div>
|
1750
|
+
<hr>
|
1751
|
+
<div class="refsect2">
|
1752
|
+
<a name="clutter-timeline-get-elapsed-time"></a><h3>clutter_timeline_get_elapsed_time ()</h3>
|
1753
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_timeline_get_elapsed_time (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1754
|
+
<p>
|
1755
|
+
Request the current time position of the timeline.
|
1756
|
+
</p>
|
1757
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1758
|
+
<colgroup>
|
1759
|
+
<col align="left" valign="top">
|
1760
|
+
<col>
|
1761
|
+
</colgroup>
|
1762
|
+
<tbody>
|
1763
|
+
<tr>
|
1764
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1765
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1766
|
+
</td>
|
1767
|
+
</tr>
|
1768
|
+
<tr>
|
1769
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1770
|
+
<td>current elapsed time in milliseconds.</td>
|
1771
|
+
</tr>
|
1772
|
+
</tbody>
|
1773
|
+
</table></div>
|
1774
|
+
</div>
|
1775
|
+
<hr>
|
1776
|
+
<div class="refsect2">
|
1777
|
+
<a name="clutter-timeline-get-delta"></a><h3>clutter_timeline_get_delta ()</h3>
|
1778
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> clutter_timeline_get_delta (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1779
|
+
<p>
|
1780
|
+
Retrieves the amount of time elapsed since the last
|
1781
|
+
ClutterTimeline::new-frame signal.
|
1782
|
+
</p>
|
1783
|
+
<p>
|
1784
|
+
This function is only useful inside handlers for the ::new-frame
|
1785
|
+
signal, and its behaviour is undefined if the timeline is not
|
1786
|
+
playing.
|
1787
|
+
</p>
|
1788
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1789
|
+
<colgroup>
|
1790
|
+
<col align="left" valign="top">
|
1791
|
+
<col>
|
1792
|
+
</colgroup>
|
1793
|
+
<tbody>
|
1794
|
+
<tr>
|
1795
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1796
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1797
|
+
</td>
|
1798
|
+
</tr>
|
1799
|
+
<tr>
|
1800
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1801
|
+
<td>the amount of time in milliseconds elapsed since the
|
1802
|
+
last frame</td>
|
1803
|
+
</tr>
|
1804
|
+
</tbody>
|
1805
|
+
</table></div>
|
1806
|
+
<p class="since">Since 0.6</p>
|
1807
|
+
</div>
|
1808
|
+
<hr>
|
1809
|
+
<div class="refsect2">
|
1810
|
+
<a name="clutter-timeline-get-progress"></a><h3>clutter_timeline_get_progress ()</h3>
|
1811
|
+
<pre class="programlisting"><span class="returnvalue">gdouble</span> clutter_timeline_get_progress (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1812
|
+
<p>
|
1813
|
+
The position of the timeline in a normalized [-1, 2] interval.
|
1814
|
+
</p>
|
1815
|
+
<p>
|
1816
|
+
The return value of this function is determined by the progress
|
1817
|
+
mode set using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-mode" title="clutter_timeline_set_progress_mode ()"><code class="function">clutter_timeline_set_progress_mode()</code></a>, or by the
|
1818
|
+
progress function set using <a class="link" href="ClutterTimeline.html#clutter-timeline-set-progress-func" title="clutter_timeline_set_progress_func ()"><code class="function">clutter_timeline_set_progress_func()</code></a>.
|
1819
|
+
</p>
|
1820
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1821
|
+
<colgroup>
|
1822
|
+
<col align="left" valign="top">
|
1823
|
+
<col>
|
1824
|
+
</colgroup>
|
1825
|
+
<tbody>
|
1826
|
+
<tr>
|
1827
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1828
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1829
|
+
</td>
|
1830
|
+
</tr>
|
1831
|
+
<tr>
|
1832
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1833
|
+
<td>the normalized current position in the timeline.</td>
|
1834
|
+
</tr>
|
1835
|
+
</tbody>
|
1836
|
+
</table></div>
|
1837
|
+
<p class="since">Since 0.6</p>
|
1838
|
+
</div>
|
1839
|
+
<hr>
|
1840
|
+
<div class="refsect2">
|
1841
|
+
<a name="clutter-timeline-is-playing"></a><h3>clutter_timeline_is_playing ()</h3>
|
1842
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_is_playing (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
|
1843
|
+
<p>
|
1844
|
+
Queries state of a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>.
|
1845
|
+
</p>
|
1846
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1847
|
+
<colgroup>
|
1848
|
+
<col align="left" valign="top">
|
1849
|
+
<col>
|
1850
|
+
</colgroup>
|
1851
|
+
<tbody>
|
1852
|
+
<tr>
|
1853
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1854
|
+
<td>A <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1855
|
+
</td>
|
1856
|
+
</tr>
|
1857
|
+
<tr>
|
1858
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1859
|
+
<td>
|
1860
|
+
<code class="literal">TRUE</code> if timeline is currently playing</td>
|
1861
|
+
</tr>
|
1862
|
+
</tbody>
|
1863
|
+
</table></div>
|
1864
|
+
</div>
|
1865
|
+
<hr>
|
1866
|
+
<div class="refsect2">
|
1867
|
+
<a name="clutter-timeline-add-marker"></a><h3>clutter_timeline_add_marker ()</h3>
|
1868
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_add_marker (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1869
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>,
|
1870
|
+
<em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);</pre>
|
1871
|
+
<p>
|
1872
|
+
Adds a named marker that will be hit when the timeline has reached
|
1873
|
+
the specified <em class="parameter"><code>progress</code></em>.
|
1874
|
+
</p>
|
1875
|
+
<p>
|
1876
|
+
Markers are unique string identifiers for a given position on the
|
1877
|
+
timeline. Once <em class="parameter"><code>timeline</code></em> reaches the given <em class="parameter"><code>progress</code></em> of its duration,
|
1878
|
+
if will emit a ::marker-reached signal for each marker attached to
|
1879
|
+
that particular point.
|
1880
|
+
</p>
|
1881
|
+
<p>
|
1882
|
+
A marker can be removed with <a class="link" href="ClutterTimeline.html#clutter-timeline-remove-marker" title="clutter_timeline_remove_marker ()"><code class="function">clutter_timeline_remove_marker()</code></a>. The
|
1883
|
+
timeline can be advanced to a marker using
|
1884
|
+
<a class="link" href="ClutterTimeline.html#clutter-timeline-advance-to-marker" title="clutter_timeline_advance_to_marker ()"><code class="function">clutter_timeline_advance_to_marker()</code></a>.
|
1885
|
+
</p>
|
1886
|
+
<p>
|
1887
|
+
See also: <a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker-at-time" title="clutter_timeline_add_marker_at_time ()"><code class="function">clutter_timeline_add_marker_at_time()</code></a>
|
1888
|
+
</p>
|
1889
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1890
|
+
<colgroup>
|
1891
|
+
<col align="left" valign="top">
|
1892
|
+
<col>
|
1893
|
+
</colgroup>
|
1894
|
+
<tbody>
|
1895
|
+
<tr>
|
1896
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1897
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1898
|
+
</td>
|
1899
|
+
</tr>
|
1900
|
+
<tr>
|
1901
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
1902
|
+
<td>the unique name for this marker</td>
|
1903
|
+
</tr>
|
1904
|
+
<tr>
|
1905
|
+
<td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
|
1906
|
+
<td>the normalized value of the position of the martke</td>
|
1907
|
+
</tr>
|
1908
|
+
</tbody>
|
1909
|
+
</table></div>
|
1910
|
+
<p class="since">Since 1.14</p>
|
1911
|
+
</div>
|
1912
|
+
<hr>
|
1913
|
+
<div class="refsect2">
|
1914
|
+
<a name="clutter-timeline-add-marker-at-time"></a><h3>clutter_timeline_add_marker_at_time ()</h3>
|
1915
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_add_marker_at_time (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1916
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>,
|
1917
|
+
<em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
|
1918
|
+
<p>
|
1919
|
+
Adds a named marker that will be hit when the timeline has been
|
1920
|
+
running for <em class="parameter"><code>msecs</code></em> milliseconds.
|
1921
|
+
</p>
|
1922
|
+
<p>
|
1923
|
+
Markers are unique string identifiers for a given position on the
|
1924
|
+
timeline. Once <em class="parameter"><code>timeline</code></em> reaches the given <em class="parameter"><code>msecs</code></em>, it will emit
|
1925
|
+
a ::marker-reached signal for each marker attached to that position.
|
1926
|
+
</p>
|
1927
|
+
<p>
|
1928
|
+
A marker can be removed with <a class="link" href="ClutterTimeline.html#clutter-timeline-remove-marker" title="clutter_timeline_remove_marker ()"><code class="function">clutter_timeline_remove_marker()</code></a>. The
|
1929
|
+
timeline can be advanced to a marker using
|
1930
|
+
<a class="link" href="ClutterTimeline.html#clutter-timeline-advance-to-marker" title="clutter_timeline_advance_to_marker ()"><code class="function">clutter_timeline_advance_to_marker()</code></a>.
|
1931
|
+
</p>
|
1932
|
+
<p>
|
1933
|
+
See also: <a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker" title="clutter_timeline_add_marker ()"><code class="function">clutter_timeline_add_marker()</code></a>
|
1934
|
+
</p>
|
1935
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1936
|
+
<colgroup>
|
1937
|
+
<col align="left" valign="top">
|
1938
|
+
<col>
|
1939
|
+
</colgroup>
|
1940
|
+
<tbody>
|
1941
|
+
<tr>
|
1942
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1943
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1944
|
+
</td>
|
1945
|
+
</tr>
|
1946
|
+
<tr>
|
1947
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
1948
|
+
<td>the unique name for this marker</td>
|
1949
|
+
</tr>
|
1950
|
+
<tr>
|
1951
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
1952
|
+
<td>position of the marker in milliseconds</td>
|
1953
|
+
</tr>
|
1954
|
+
</tbody>
|
1955
|
+
</table></div>
|
1956
|
+
<p class="since">Since 0.8</p>
|
1957
|
+
</div>
|
1958
|
+
<hr>
|
1959
|
+
<div class="refsect2">
|
1960
|
+
<a name="clutter-timeline-has-marker"></a><h3>clutter_timeline_has_marker ()</h3>
|
1961
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_timeline_has_marker (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1962
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);</pre>
|
1963
|
+
<p>
|
1964
|
+
Checks whether <em class="parameter"><code>timeline</code></em> has a marker set with the given name.
|
1965
|
+
</p>
|
1966
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1967
|
+
<colgroup>
|
1968
|
+
<col align="left" valign="top">
|
1969
|
+
<col>
|
1970
|
+
</colgroup>
|
1971
|
+
<tbody>
|
1972
|
+
<tr>
|
1973
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
1974
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
1975
|
+
</td>
|
1976
|
+
</tr>
|
1977
|
+
<tr>
|
1978
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
1979
|
+
<td>the name of the marker</td>
|
1980
|
+
</tr>
|
1981
|
+
<tr>
|
1982
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1983
|
+
<td>
|
1984
|
+
<code class="literal">TRUE</code> if the marker was found</td>
|
1985
|
+
</tr>
|
1986
|
+
</tbody>
|
1987
|
+
</table></div>
|
1988
|
+
<p class="since">Since 0.8</p>
|
1989
|
+
</div>
|
1990
|
+
<hr>
|
1991
|
+
<div class="refsect2">
|
1992
|
+
<a name="clutter-timeline-list-markers"></a><h3>clutter_timeline_list_markers ()</h3>
|
1993
|
+
<pre class="programlisting"><span class="returnvalue">gchar</span> ** clutter_timeline_list_markers (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
1994
|
+
<em class="parameter"><code><span class="type">gint</span> msecs</code></em>,
|
1995
|
+
<em class="parameter"><code><span class="type">gsize</span> *n_markers</code></em>);</pre>
|
1996
|
+
<p>
|
1997
|
+
Retrieves the list of markers at time <em class="parameter"><code>msecs</code></em>. If <em class="parameter"><code>msecs</code></em> is a
|
1998
|
+
negative integer, all the markers attached to <em class="parameter"><code>timeline</code></em> will be
|
1999
|
+
returned.
|
2000
|
+
</p>
|
2001
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2002
|
+
<colgroup>
|
2003
|
+
<col align="left" valign="top">
|
2004
|
+
<col>
|
2005
|
+
</colgroup>
|
2006
|
+
<tbody>
|
2007
|
+
<tr>
|
2008
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2009
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
2010
|
+
</td>
|
2011
|
+
</tr>
|
2012
|
+
<tr>
|
2013
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
2014
|
+
<td>the time to check, or -1</td>
|
2015
|
+
</tr>
|
2016
|
+
<tr>
|
2017
|
+
<td><p><span class="term"><em class="parameter"><code>n_markers</code></em> :</span></p></td>
|
2018
|
+
<td>the number of markers returned</td>
|
2019
|
+
</tr>
|
2020
|
+
<tr>
|
2021
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2022
|
+
<td>a newly allocated, <code class="literal">NULL</code> terminated string array containing the names
|
2023
|
+
of the markers. Use <code class="function">g_strfreev()</code> when done. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1 length=n_markers]</span>
|
2024
|
+
</td>
|
2025
|
+
</tr>
|
2026
|
+
</tbody>
|
2027
|
+
</table></div>
|
2028
|
+
<p class="since">Since 0.8</p>
|
2029
|
+
</div>
|
2030
|
+
<hr>
|
2031
|
+
<div class="refsect2">
|
2032
|
+
<a name="clutter-timeline-remove-marker"></a><h3>clutter_timeline_remove_marker ()</h3>
|
2033
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_remove_marker (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
2034
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);</pre>
|
2035
|
+
<p>
|
2036
|
+
Removes <em class="parameter"><code>marker_name</code></em>, if found, from <em class="parameter"><code>timeline</code></em>.
|
2037
|
+
</p>
|
2038
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2039
|
+
<colgroup>
|
2040
|
+
<col align="left" valign="top">
|
2041
|
+
<col>
|
2042
|
+
</colgroup>
|
2043
|
+
<tbody>
|
2044
|
+
<tr>
|
2045
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2046
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
2047
|
+
</td>
|
2048
|
+
</tr>
|
2049
|
+
<tr>
|
2050
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
2051
|
+
<td>the name of the marker to remove</td>
|
2052
|
+
</tr>
|
2053
|
+
</tbody>
|
2054
|
+
</table></div>
|
2055
|
+
<p class="since">Since 0.8</p>
|
2056
|
+
</div>
|
2057
|
+
<hr>
|
2058
|
+
<div class="refsect2">
|
2059
|
+
<a name="clutter-timeline-advance-to-marker"></a><h3>clutter_timeline_advance_to_marker ()</h3>
|
2060
|
+
<pre class="programlisting"><span class="returnvalue">void</span> clutter_timeline_advance_to_marker (<em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
|
2061
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *marker_name</code></em>);</pre>
|
2062
|
+
<p>
|
2063
|
+
Advances <em class="parameter"><code>timeline</code></em> to the time of the given <em class="parameter"><code>marker_name</code></em>.
|
2064
|
+
</p>
|
2065
|
+
<p>
|
2066
|
+
</p>
|
2067
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2068
|
+
<h3 class="title">Note</h3>
|
2069
|
+
<p>Like <a class="link" href="ClutterTimeline.html#clutter-timeline-advance" title="clutter_timeline_advance ()"><code class="function">clutter_timeline_advance()</code></a>, this function will not
|
2070
|
+
emit the <a class="link" href="ClutterTimeline.html#ClutterTimeline-new-frame" title='The "new-frame" signal'><span class="type">"new-frame"</span></a> for the time where <em class="parameter"><code>marker_name</code></em>
|
2071
|
+
is set, nor it will emit <a class="link" href="ClutterTimeline.html#ClutterTimeline-marker-reached" title='The "marker-reached" signal'><span class="type">"marker-reached"</span></a> for
|
2072
|
+
<em class="parameter"><code>marker_name</code></em>.</p>
|
2073
|
+
</div>
|
2074
|
+
<p>
|
2075
|
+
</p>
|
2076
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2077
|
+
<colgroup>
|
2078
|
+
<col align="left" valign="top">
|
2079
|
+
<col>
|
2080
|
+
</colgroup>
|
2081
|
+
<tbody>
|
2082
|
+
<tr>
|
2083
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2084
|
+
<td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
|
2085
|
+
</td>
|
2086
|
+
</tr>
|
2087
|
+
<tr>
|
2088
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
2089
|
+
<td>the name of the marker</td>
|
2090
|
+
</tr>
|
2091
|
+
</tbody>
|
2092
|
+
</table></div>
|
2093
|
+
<p class="since">Since 0.8</p>
|
2094
|
+
</div>
|
2095
|
+
</div>
|
2096
|
+
<div class="refsect1">
|
2097
|
+
<a name="ClutterTimeline.property-details"></a><h2>Property Details</h2>
|
2098
|
+
<div class="refsect2">
|
2099
|
+
<a name="ClutterTimeline--auto-reverse"></a><h3>The <code class="literal">"auto-reverse"</code> property</h3>
|
2100
|
+
<pre class="programlisting"> "auto-reverse" <span class="type">gboolean</span> : Read / Write</pre>
|
2101
|
+
<p>
|
2102
|
+
If the direction of the timeline should be automatically reversed
|
2103
|
+
when reaching the end.
|
2104
|
+
</p>
|
2105
|
+
<p>Default value: FALSE</p>
|
2106
|
+
<p class="since">Since 1.6</p>
|
2107
|
+
</div>
|
2108
|
+
<hr>
|
2109
|
+
<div class="refsect2">
|
2110
|
+
<a name="ClutterTimeline--delay"></a><h3>The <code class="literal">"delay"</code> property</h3>
|
2111
|
+
<pre class="programlisting"> "delay" <span class="type">guint</span> : Read / Write</pre>
|
2112
|
+
<p>
|
2113
|
+
A delay, in milliseconds, that should be observed by the
|
2114
|
+
timeline before actually starting.
|
2115
|
+
</p>
|
2116
|
+
<p>Default value: 0</p>
|
2117
|
+
<p class="since">Since 0.4</p>
|
2118
|
+
</div>
|
2119
|
+
<hr>
|
2120
|
+
<div class="refsect2">
|
2121
|
+
<a name="ClutterTimeline--direction"></a><h3>The <code class="literal">"direction"</code> property</h3>
|
2122
|
+
<pre class="programlisting"> "direction" <a class="link" href="ClutterTimeline.html#ClutterTimelineDirection" title="enum ClutterTimelineDirection"><span class="type">ClutterTimelineDirection</span></a> : Read / Write</pre>
|
2123
|
+
<p>
|
2124
|
+
The direction of the timeline, either <a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-FORWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_FORWARD</code></a> or
|
2125
|
+
<a class="link" href="ClutterTimeline.html#CLUTTER-TIMELINE-BACKWARD:CAPS"><code class="literal">CLUTTER_TIMELINE_BACKWARD</code></a>.
|
2126
|
+
</p>
|
2127
|
+
<p>Default value: CLUTTER_TIMELINE_FORWARD</p>
|
2128
|
+
<p class="since">Since 0.6</p>
|
2129
|
+
</div>
|
2130
|
+
<hr>
|
2131
|
+
<div class="refsect2">
|
2132
|
+
<a name="ClutterTimeline--duration"></a><h3>The <code class="literal">"duration"</code> property</h3>
|
2133
|
+
<pre class="programlisting"> "duration" <span class="type">guint</span> : Read / Write</pre>
|
2134
|
+
<p>
|
2135
|
+
Duration of the timeline in milliseconds, depending on the
|
2136
|
+
ClutterTimeline:fps value.
|
2137
|
+
</p>
|
2138
|
+
<p>Default value: 1000</p>
|
2139
|
+
<p class="since">Since 0.6</p>
|
2140
|
+
</div>
|
2141
|
+
<hr>
|
2142
|
+
<div class="refsect2">
|
2143
|
+
<a name="ClutterTimeline--loop"></a><h3>The <code class="literal">"loop"</code> property</h3>
|
2144
|
+
<pre class="programlisting"> "loop" <span class="type">gboolean</span> : Read / Write</pre>
|
2145
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2146
|
+
<h3 class="title">Warning</h3>
|
2147
|
+
<p><code class="literal">ClutterTimeline:loop</code> has been deprecated since version 1.10 and should not be used in newly-written code. Use the <a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'><span class="type">"repeat-count"</span></a> property instead.</p>
|
2148
|
+
</div>
|
2149
|
+
<p>
|
2150
|
+
Whether the timeline should automatically rewind and restart.
|
2151
|
+
</p>
|
2152
|
+
<p>
|
2153
|
+
As a side effect, setting this property to <code class="literal">TRUE</code> will set the
|
2154
|
+
<a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'><span class="type">"repeat-count"</span></a> property to -1, while setting this
|
2155
|
+
property to <code class="literal">FALSE</code> will set the <a class="link" href="ClutterTimeline.html#ClutterTimeline--repeat-count" title='The "repeat-count" property'><span class="type">"repeat-count"</span></a>
|
2156
|
+
property to 0.
|
2157
|
+
</p>
|
2158
|
+
<p>Default value: FALSE</p>
|
2159
|
+
</div>
|
2160
|
+
<hr>
|
2161
|
+
<div class="refsect2">
|
2162
|
+
<a name="ClutterTimeline--progress-mode"></a><h3>The <code class="literal">"progress-mode"</code> property</h3>
|
2163
|
+
<pre class="programlisting"> "progress-mode" <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> : Read / Write</pre>
|
2164
|
+
<p>
|
2165
|
+
Controls the way a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> computes the normalized progress.
|
2166
|
+
</p>
|
2167
|
+
<p>Default value: CLUTTER_LINEAR</p>
|
2168
|
+
<p class="since">Since 1.10</p>
|
2169
|
+
</div>
|
2170
|
+
<hr>
|
2171
|
+
<div class="refsect2">
|
2172
|
+
<a name="ClutterTimeline--repeat-count"></a><h3>The <code class="literal">"repeat-count"</code> property</h3>
|
2173
|
+
<pre class="programlisting"> "repeat-count" <span class="type">gint</span> : Read / Write</pre>
|
2174
|
+
<p>
|
2175
|
+
Defines how many times the timeline should repeat.
|
2176
|
+
</p>
|
2177
|
+
<p>
|
2178
|
+
If the repeat count is 0, the timeline does not repeat.
|
2179
|
+
</p>
|
2180
|
+
<p>
|
2181
|
+
If the repeat count is set to -1, the timeline will repeat until it is
|
2182
|
+
stopped.
|
2183
|
+
</p>
|
2184
|
+
<p>Allowed values: >= G_MAXULONG</p>
|
2185
|
+
<p>Default value: 0</p>
|
2186
|
+
<p class="since">Since 1.10</p>
|
2187
|
+
</div>
|
2188
|
+
</div>
|
2189
|
+
<div class="refsect1">
|
2190
|
+
<a name="ClutterTimeline.signal-details"></a><h2>Signal Details</h2>
|
2191
|
+
<div class="refsect2">
|
2192
|
+
<a name="ClutterTimeline-completed"></a><h3>The <code class="literal">"completed"</code> signal</h3>
|
2193
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2194
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
2195
|
+
<p>
|
2196
|
+
The <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal is emitted when the timeline's
|
2197
|
+
elapsed time reaches the value of the <a class="link" href="ClutterTimeline.html#ClutterTimeline--duration" title='The "duration" property'><span class="type">"duration"</span></a>
|
2198
|
+
property.
|
2199
|
+
</p>
|
2200
|
+
<p>
|
2201
|
+
This signal will be emitted even if the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> is set to be
|
2202
|
+
repeating.
|
2203
|
+
</p>
|
2204
|
+
<p>
|
2205
|
+
If you want to get notification on whether the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> has
|
2206
|
+
been stopped or has finished its run, including its eventual repeats,
|
2207
|
+
you should use the <a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'><span class="type">"stopped"</span></a> signal instead.
|
2208
|
+
</p>
|
2209
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2210
|
+
<colgroup>
|
2211
|
+
<col align="left" valign="top">
|
2212
|
+
<col>
|
2213
|
+
</colgroup>
|
2214
|
+
<tbody>
|
2215
|
+
<tr>
|
2216
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2217
|
+
<td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> which received the signal</td>
|
2218
|
+
</tr>
|
2219
|
+
<tr>
|
2220
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2221
|
+
<td>user data set when the signal handler was connected.</td>
|
2222
|
+
</tr>
|
2223
|
+
</tbody>
|
2224
|
+
</table></div>
|
2225
|
+
</div>
|
2226
|
+
<hr>
|
2227
|
+
<div class="refsect2">
|
2228
|
+
<a name="ClutterTimeline-marker-reached"></a><h3>The <code class="literal">"marker-reached"</code> signal</h3>
|
2229
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2230
|
+
<span class="type">gchar</span> *marker_name,
|
2231
|
+
<span class="type">gint</span> msecs,
|
2232
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
|
2233
|
+
<p>
|
2234
|
+
The ::marker-reached signal is emitted each time a timeline
|
2235
|
+
reaches a marker set with
|
2236
|
+
<a class="link" href="ClutterTimeline.html#clutter-timeline-add-marker-at-time" title="clutter_timeline_add_marker_at_time ()"><code class="function">clutter_timeline_add_marker_at_time()</code></a>. This signal is detailed
|
2237
|
+
with the name of the marker as well, so it is possible to connect
|
2238
|
+
a callback to the ::marker-reached signal for a specific marker
|
2239
|
+
with:
|
2240
|
+
</p>
|
2241
|
+
<p>
|
2242
|
+
</p>
|
2243
|
+
<div class="informalexample">
|
2244
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2245
|
+
<tbody>
|
2246
|
+
<tr>
|
2247
|
+
<td class="listing_lines" align="right"><pre>1
|
2248
|
+
2
|
2249
|
+
3
|
2250
|
+
4
|
2251
|
+
5
|
2252
|
+
6
|
2253
|
+
7
|
2254
|
+
8
|
2255
|
+
9</pre></td>
|
2256
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="ClutterTimeline.html#clutter-timeline-add-marker-at-time">clutter_timeline_add_marker_at_time</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"foo"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">500</span><span class="symbol">);</span>
|
2257
|
+
<span class="function"><a href="ClutterTimeline.html#clutter-timeline-add-marker-at-time">clutter_timeline_add_marker_at_time</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"bar"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">750</span><span class="symbol">);</span>
|
2258
|
+
|
2259
|
+
<span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"marker-reached"</span><span class="symbol">,</span>
|
2260
|
+
<span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">each_marker_reached</span><span class="symbol">),</span><span class="normal"> NULL</span><span class="symbol">);</span>
|
2261
|
+
<span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"marker-reached::foo"</span><span class="symbol">,</span>
|
2262
|
+
<span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">foo_marker_reached</span><span class="symbol">),</span><span class="normal"> NULL</span><span class="symbol">);</span>
|
2263
|
+
<span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">timeline</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"marker-reached::bar"</span><span class="symbol">,</span>
|
2264
|
+
<span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">bar_marker_reached</span><span class="symbol">),</span><span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
|
2265
|
+
</tr>
|
2266
|
+
</tbody>
|
2267
|
+
</table>
|
2268
|
+
</div>
|
2269
|
+
|
2270
|
+
<p>
|
2271
|
+
</p>
|
2272
|
+
<p>
|
2273
|
+
In the example, the first callback will be invoked for both
|
2274
|
+
the "foo" and "bar" marker, while the second and third callbacks
|
2275
|
+
will be invoked for the "foo" or "bar" markers, respectively.
|
2276
|
+
</p>
|
2277
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2278
|
+
<colgroup>
|
2279
|
+
<col align="left" valign="top">
|
2280
|
+
<col>
|
2281
|
+
</colgroup>
|
2282
|
+
<tbody>
|
2283
|
+
<tr>
|
2284
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2285
|
+
<td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> which received the signal</td>
|
2286
|
+
</tr>
|
2287
|
+
<tr>
|
2288
|
+
<td><p><span class="term"><em class="parameter"><code>marker_name</code></em> :</span></p></td>
|
2289
|
+
<td>the name of the marker reached</td>
|
2290
|
+
</tr>
|
2291
|
+
<tr>
|
2292
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
2293
|
+
<td>the elapsed time</td>
|
2294
|
+
</tr>
|
2295
|
+
<tr>
|
2296
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2297
|
+
<td>user data set when the signal handler was connected.</td>
|
2298
|
+
</tr>
|
2299
|
+
</tbody>
|
2300
|
+
</table></div>
|
2301
|
+
<p class="since">Since 0.8</p>
|
2302
|
+
</div>
|
2303
|
+
<hr>
|
2304
|
+
<div class="refsect2">
|
2305
|
+
<a name="ClutterTimeline-new-frame"></a><h3>The <code class="literal">"new-frame"</code> signal</h3>
|
2306
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2307
|
+
<span class="type">gint</span> msecs,
|
2308
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
2309
|
+
<p>
|
2310
|
+
The ::new-frame signal is emitted for each timeline running
|
2311
|
+
timeline before a new frame is drawn to give animations a chance
|
2312
|
+
to update the scene.
|
2313
|
+
</p>
|
2314
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2315
|
+
<colgroup>
|
2316
|
+
<col align="left" valign="top">
|
2317
|
+
<col>
|
2318
|
+
</colgroup>
|
2319
|
+
<tbody>
|
2320
|
+
<tr>
|
2321
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2322
|
+
<td>the timeline which received the signal</td>
|
2323
|
+
</tr>
|
2324
|
+
<tr>
|
2325
|
+
<td><p><span class="term"><em class="parameter"><code>msecs</code></em> :</span></p></td>
|
2326
|
+
<td>the elapsed time between 0 and duration</td>
|
2327
|
+
</tr>
|
2328
|
+
<tr>
|
2329
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2330
|
+
<td>user data set when the signal handler was connected.</td>
|
2331
|
+
</tr>
|
2332
|
+
</tbody>
|
2333
|
+
</table></div>
|
2334
|
+
</div>
|
2335
|
+
<hr>
|
2336
|
+
<div class="refsect2">
|
2337
|
+
<a name="ClutterTimeline-paused"></a><h3>The <code class="literal">"paused"</code> signal</h3>
|
2338
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2339
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
2340
|
+
<p>
|
2341
|
+
The ::paused signal is emitted when <a class="link" href="ClutterTimeline.html#clutter-timeline-pause" title="clutter_timeline_pause ()"><code class="function">clutter_timeline_pause()</code></a> is invoked.
|
2342
|
+
</p>
|
2343
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2344
|
+
<colgroup>
|
2345
|
+
<col align="left" valign="top">
|
2346
|
+
<col>
|
2347
|
+
</colgroup>
|
2348
|
+
<tbody>
|
2349
|
+
<tr>
|
2350
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2351
|
+
<td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> which received the signal</td>
|
2352
|
+
</tr>
|
2353
|
+
<tr>
|
2354
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2355
|
+
<td>user data set when the signal handler was connected.</td>
|
2356
|
+
</tr>
|
2357
|
+
</tbody>
|
2358
|
+
</table></div>
|
2359
|
+
</div>
|
2360
|
+
<hr>
|
2361
|
+
<div class="refsect2">
|
2362
|
+
<a name="ClutterTimeline-started"></a><h3>The <code class="literal">"started"</code> signal</h3>
|
2363
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2364
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
2365
|
+
<p>
|
2366
|
+
The ::started signal is emitted when the timeline starts its run.
|
2367
|
+
This might be as soon as <a class="link" href="ClutterTimeline.html#clutter-timeline-start" title="clutter_timeline_start ()"><code class="function">clutter_timeline_start()</code></a> is invoked or
|
2368
|
+
after the delay set in the ClutterTimeline:delay property has
|
2369
|
+
expired.
|
2370
|
+
</p>
|
2371
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2372
|
+
<colgroup>
|
2373
|
+
<col align="left" valign="top">
|
2374
|
+
<col>
|
2375
|
+
</colgroup>
|
2376
|
+
<tbody>
|
2377
|
+
<tr>
|
2378
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2379
|
+
<td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> which received the signal</td>
|
2380
|
+
</tr>
|
2381
|
+
<tr>
|
2382
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2383
|
+
<td>user data set when the signal handler was connected.</td>
|
2384
|
+
</tr>
|
2385
|
+
</tbody>
|
2386
|
+
</table></div>
|
2387
|
+
</div>
|
2388
|
+
<hr>
|
2389
|
+
<div class="refsect2">
|
2390
|
+
<a name="ClutterTimeline-stopped"></a><h3>The <code class="literal">"stopped"</code> signal</h3>
|
2391
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline,
|
2392
|
+
<span class="type">gboolean</span> is_finished,
|
2393
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
2394
|
+
<p>
|
2395
|
+
The <a class="link" href="ClutterTimeline.html#ClutterTimeline-stopped" title='The "stopped" signal'><span class="type">"stopped"</span></a> signal is emitted when the timeline
|
2396
|
+
has been stopped, either because <a class="link" href="ClutterTimeline.html#clutter-timeline-stop" title="clutter_timeline_stop ()"><code class="function">clutter_timeline_stop()</code></a> has been
|
2397
|
+
called, or because it has been exhausted.
|
2398
|
+
</p>
|
2399
|
+
<p>
|
2400
|
+
This is different from the <a class="link" href="ClutterTimeline.html#ClutterTimeline-completed" title='The "completed" signal'><span class="type">"completed"</span></a> signal,
|
2401
|
+
which gets emitted after every repeat finishes.
|
2402
|
+
</p>
|
2403
|
+
<p>
|
2404
|
+
If the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> has is marked as infinitely repeating,
|
2405
|
+
this signal will never be emitted.
|
2406
|
+
</p>
|
2407
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2408
|
+
<colgroup>
|
2409
|
+
<col align="left" valign="top">
|
2410
|
+
<col>
|
2411
|
+
</colgroup>
|
2412
|
+
<tbody>
|
2413
|
+
<tr>
|
2414
|
+
<td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
|
2415
|
+
<td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> that emitted the signal</td>
|
2416
|
+
</tr>
|
2417
|
+
<tr>
|
2418
|
+
<td><p><span class="term"><em class="parameter"><code>is_finished</code></em> :</span></p></td>
|
2419
|
+
<td>
|
2420
|
+
<code class="literal">TRUE</code> if the signal was emitted at the end of the
|
2421
|
+
timeline.</td>
|
2422
|
+
</tr>
|
2423
|
+
<tr>
|
2424
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2425
|
+
<td>user data set when the signal handler was connected.</td>
|
2426
|
+
</tr>
|
2427
|
+
</tbody>
|
2428
|
+
</table></div>
|
2429
|
+
<p class="since">Since 1.12</p>
|
2430
|
+
</div>
|
2431
|
+
</div>
|
2432
|
+
<div class="refsect1">
|
2433
|
+
<a name="ClutterTimeline.see-also"></a><h2>See Also</h2>
|
2434
|
+
<a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>, <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>, <a class="link" href="ClutterState.html" title="ClutterState"><span class="type">ClutterState</span></a>
|
2435
|
+
</div>
|
2436
|
+
</div>
|
2437
|
+
<div class="footer">
|
2438
|
+
<hr>
|
2439
|
+
Generated by GTK-Doc V1.18.1</div>
|
2440
|
+
</body>
|
2441
|
+
</html>
|