clutter 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (744) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +147 -0
  3. data/lib/clutter.rb +169 -0
  4. data/lib/clutter/actor-iter.rb +33 -0
  5. data/lib/clutter/actor.rb +34 -0
  6. data/lib/clutter/animatable.rb +26 -0
  7. data/lib/clutter/brightness-contrast-effect.rb +44 -0
  8. data/lib/clutter/cairo.rb +24 -0
  9. data/lib/clutter/clutter.rb +25 -0
  10. data/lib/clutter/color.rb +83 -0
  11. data/lib/clutter/event.rb +21 -0
  12. data/lib/clutter/point.rb +25 -0
  13. data/lib/clutter/text-buffer.rb +36 -0
  14. data/lib/clutter/text.rb +23 -0
  15. data/lib/clutter/threads.rb +38 -0
  16. data/sample/basic-actor.rb +123 -0
  17. data/sample/bin-layout.rb +213 -0
  18. data/sample/box-layout.rb +194 -0
  19. data/sample/canvas.rb +115 -0
  20. data/sample/constraints.rb +79 -0
  21. data/sample/drag-action.rb +175 -0
  22. data/sample/drop-action.rb +196 -0
  23. data/sample/easing-modes.rb +141 -0
  24. data/sample/flow-layout.rb +119 -0
  25. data/sample/grid-layout.rb +237 -0
  26. data/sample/image-content.rb +86 -0
  27. data/sample/pan-action.rb +98 -0
  28. data/sample/redhand.png +0 -0
  29. data/sample/rounded-rectangle.rb +88 -0
  30. data/sample/scroll-actor.rb +103 -0
  31. data/test/clutter-test-utils.rb +38 -0
  32. data/test/run-test.rb +59 -0
  33. data/test/test-clutter-actor.rb +242 -0
  34. data/test/test-clutter-blur-effect.rb +27 -0
  35. data/test/test-clutter-brightness-contrast-effect.rb +56 -0
  36. data/test/test-clutter-canvas.rb +43 -0
  37. data/test/test-clutter-color.rb +50 -0
  38. data/test/test-clutter-colorize-effect.rb +31 -0
  39. data/test/test-clutter-desaturate-effect.rb +30 -0
  40. data/test/test-clutter-feature.rb +34 -0
  41. data/test/test-clutter-flow-layout.rb +83 -0
  42. data/test/test-clutter-page-turn-effect.rb +46 -0
  43. data/test/test-clutter-property-transiton.rb +30 -0
  44. data/test/test-clutter-shader-effect.rb +65 -0
  45. data/test/test-clutter-text-buffer.rb +72 -0
  46. data/test/test-clutter-timeline.rb +59 -0
  47. data/vendor/local/bin/json-glib-format.exe +0 -0
  48. data/vendor/local/bin/json-glib-validate.exe +0 -0
  49. data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
  50. data/vendor/local/bin/libcogl-20.dll +0 -0
  51. data/vendor/local/bin/libcogl-pango-20.dll +0 -0
  52. data/vendor/local/bin/libcogl-path-20.dll +0 -0
  53. data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
  54. data/vendor/local/include/clutter-1.0/cally/cally-actor.h +160 -0
  55. data/vendor/local/include/clutter-1.0/cally/cally-clone.h +84 -0
  56. data/vendor/local/include/clutter-1.0/cally/cally-factory.h +117 -0
  57. data/vendor/local/include/clutter-1.0/cally/cally-group.h +87 -0
  58. data/vendor/local/include/clutter-1.0/cally/cally-main.h +44 -0
  59. data/vendor/local/include/clutter-1.0/cally/cally-rectangle.h +84 -0
  60. data/vendor/local/include/clutter-1.0/cally/cally-root.h +84 -0
  61. data/vendor/local/include/clutter-1.0/cally/cally-stage.h +84 -0
  62. data/vendor/local/include/clutter-1.0/cally/cally-text.h +84 -0
  63. data/vendor/local/include/clutter-1.0/cally/cally-texture.h +84 -0
  64. data/vendor/local/include/clutter-1.0/cally/cally-util.h +84 -0
  65. data/vendor/local/include/clutter-1.0/cally/cally.h +40 -0
  66. data/vendor/local/include/clutter-1.0/clutter/clutter-action.h +111 -0
  67. data/vendor/local/include/clutter-1.0/clutter/clutter-actor-meta.h +119 -0
  68. data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +836 -0
  69. data/vendor/local/include/clutter-1.0/clutter/clutter-align-constraint.h +77 -0
  70. data/vendor/local/include/clutter-1.0/clutter/clutter-animatable.h +121 -0
  71. data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +83 -0
  72. data/vendor/local/include/clutter-1.0/clutter/clutter-bin-layout.h +86 -0
  73. data/vendor/local/include/clutter-1.0/clutter/clutter-bind-constraint.h +77 -0
  74. data/vendor/local/include/clutter-1.0/clutter/clutter-binding-pool.h +135 -0
  75. data/vendor/local/include/clutter-1.0/clutter/clutter-blur-effect.h +59 -0
  76. data/vendor/local/include/clutter-1.0/clutter/clutter-box-layout.h +168 -0
  77. data/vendor/local/include/clutter-1.0/clutter/clutter-brightness-contrast-effect.h +88 -0
  78. data/vendor/local/include/clutter-1.0/clutter/clutter-cairo.h +61 -0
  79. data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +106 -0
  80. data/vendor/local/include/clutter-1.0/clutter/clutter-child-meta.h +122 -0
  81. data/vendor/local/include/clutter-1.0/clutter/clutter-click-action.h +120 -0
  82. data/vendor/local/include/clutter-1.0/clutter/clutter-clone.h +94 -0
  83. data/vendor/local/include/clutter-1.0/clutter/clutter-cogl-compat.h +52 -0
  84. data/vendor/local/include/clutter-1.0/clutter/clutter-color-static.h +79 -0
  85. data/vendor/local/include/clutter-1.0/clutter/clutter-color.h +200 -0
  86. data/vendor/local/include/clutter-1.0/clutter/clutter-colorize-effect.h +67 -0
  87. data/vendor/local/include/clutter-1.0/clutter/clutter-config.h +19 -0
  88. data/vendor/local/include/clutter-1.0/clutter/clutter-constraint.h +120 -0
  89. data/vendor/local/include/clutter-1.0/clutter/clutter-container.h +196 -0
  90. data/vendor/local/include/clutter-1.0/clutter/clutter-content.h +103 -0
  91. data/vendor/local/include/clutter-1.0/clutter/clutter-deform-effect.h +117 -0
  92. data/vendor/local/include/clutter-1.0/clutter/clutter-deprecated.h +44 -0
  93. data/vendor/local/include/clutter-1.0/clutter/clutter-desaturate-effect.h +65 -0
  94. data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +110 -0
  95. data/vendor/local/include/clutter-1.0/clutter/clutter-drag-action.h +152 -0
  96. data/vendor/local/include/clutter-1.0/clutter/clutter-drop-action.h +115 -0
  97. data/vendor/local/include/clutter-1.0/clutter/clutter-effect.h +130 -0
  98. data/vendor/local/include/clutter-1.0/clutter/clutter-enum-types.h +190 -0
  99. data/vendor/local/include/clutter-1.0/clutter/clutter-enums.h +1385 -0
  100. data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +588 -0
  101. data/vendor/local/include/clutter-1.0/clutter/clutter-feature.h +42 -0
  102. data/vendor/local/include/clutter-1.0/clutter/clutter-fixed-layout.h +82 -0
  103. data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +129 -0
  104. data/vendor/local/include/clutter-1.0/clutter/clutter-gesture-action.h +179 -0
  105. data/vendor/local/include/clutter-1.0/clutter/clutter-grid-layout.h +161 -0
  106. data/vendor/local/include/clutter-1.0/clutter/clutter-group.h +96 -0
  107. data/vendor/local/include/clutter-1.0/clutter/clutter-image.h +141 -0
  108. data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +140 -0
  109. data/vendor/local/include/clutter-1.0/clutter/clutter-interval.h +159 -0
  110. data/vendor/local/include/clutter-1.0/clutter/clutter-keyframe-transition.h +120 -0
  111. data/vendor/local/include/clutter-1.0/clutter/clutter-keysyms.h +2304 -0
  112. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +227 -0
  113. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-meta.h +103 -0
  114. data/vendor/local/include/clutter-1.0/clutter/clutter-list-model.h +91 -0
  115. data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +327 -0
  116. data/vendor/local/include/clutter-1.0/clutter/clutter-main.h +184 -0
  117. data/vendor/local/include/clutter-1.0/clutter/clutter-marshal.h +273 -0
  118. data/vendor/local/include/clutter-1.0/clutter/clutter-model.h +422 -0
  119. data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +122 -0
  120. data/vendor/local/include/clutter-1.0/clutter/clutter-page-turn-effect.h +80 -0
  121. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-node.h +102 -0
  122. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-nodes.h +150 -0
  123. data/vendor/local/include/clutter-1.0/clutter/clutter-pan-action.h +147 -0
  124. data/vendor/local/include/clutter-1.0/clutter/clutter-path-constraint.h +72 -0
  125. data/vendor/local/include/clutter-1.0/clutter/clutter-path.h +181 -0
  126. data/vendor/local/include/clutter-1.0/clutter/clutter-property-transition.h +91 -0
  127. data/vendor/local/include/clutter-1.0/clutter/clutter-rotate-action.h +100 -0
  128. data/vendor/local/include/clutter-1.0/clutter/clutter-script.h +220 -0
  129. data/vendor/local/include/clutter-1.0/clutter/clutter-scriptable.h +112 -0
  130. data/vendor/local/include/clutter-1.0/clutter/clutter-scroll-actor.h +97 -0
  131. data/vendor/local/include/clutter-1.0/clutter/clutter-settings.h +27 -0
  132. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-effect.h +121 -0
  133. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-types.h +104 -0
  134. data/vendor/local/include/clutter-1.0/clutter/clutter-snap-constraint.h +81 -0
  135. data/vendor/local/include/clutter-1.0/clutter/clutter-stage-manager.h +86 -0
  136. data/vendor/local/include/clutter-1.0/clutter/clutter-stage.h +250 -0
  137. data/vendor/local/include/clutter-1.0/clutter/clutter-swipe-action.h +109 -0
  138. data/vendor/local/include/clutter-1.0/clutter/clutter-tap-action.h +102 -0
  139. data/vendor/local/include/clutter-1.0/clutter/clutter-test-utils.h +164 -0
  140. data/vendor/local/include/clutter-1.0/clutter/clutter-text-buffer.h +172 -0
  141. data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +307 -0
  142. data/vendor/local/include/clutter-1.0/clutter/clutter-texture.h +130 -0
  143. data/vendor/local/include/clutter-1.0/clutter/clutter-timeline.h +226 -0
  144. data/vendor/local/include/clutter-1.0/clutter/clutter-transition-group.h +91 -0
  145. data/vendor/local/include/clutter-1.0/clutter/clutter-transition.h +132 -0
  146. data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +773 -0
  147. data/vendor/local/include/clutter-1.0/clutter/clutter-units.h +184 -0
  148. data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +329 -0
  149. data/vendor/local/include/clutter-1.0/clutter/clutter-zoom-action.h +114 -0
  150. data/vendor/local/include/clutter-1.0/clutter/clutter.h +117 -0
  151. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-actor.h +161 -0
  152. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-alpha.h +144 -0
  153. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animatable.h +47 -0
  154. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animation.h +206 -0
  155. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animator.h +186 -0
  156. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-backend.h +64 -0
  157. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-depth.h +101 -0
  158. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-ellipse.h +159 -0
  159. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-opacity.h +115 -0
  160. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-path.h +135 -0
  161. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-rotate.h +119 -0
  162. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-scale.h +107 -0
  163. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour.h +170 -0
  164. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-bin-layout.h +56 -0
  165. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-box.h +143 -0
  166. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-cairo-texture.h +139 -0
  167. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-container.h +93 -0
  168. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-fixed.h +98 -0
  169. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-frame-source.h +49 -0
  170. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-group.h +62 -0
  171. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-input-device.h +41 -0
  172. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-keysyms.h +2306 -0
  173. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-main.h +96 -0
  174. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-media.h +121 -0
  175. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-rectangle.h +117 -0
  176. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-score.h +144 -0
  177. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-shader.h +182 -0
  178. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage-manager.h +42 -0
  179. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage.h +102 -0
  180. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-state.h +187 -0
  181. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-table-layout.h +172 -0
  182. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-texture.h +138 -0
  183. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeline.h +41 -0
  184. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeout-pool.h +69 -0
  185. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-util.h +40 -0
  186. data/vendor/local/include/clutter-1.0/clutter/win32/clutter-win32.h +63 -0
  187. data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +298 -0
  188. data/vendor/local/include/cogl/cogl-path/cogl-path-enum-types.h +20 -0
  189. data/vendor/local/include/cogl/cogl-path/cogl-path-types.h +85 -0
  190. data/vendor/local/include/cogl/cogl-path/cogl-path.h +68 -0
  191. data/vendor/local/include/cogl/cogl-path/cogl1-path-functions.h +467 -0
  192. data/vendor/local/include/cogl/cogl-path/cogl2-path-functions.h +545 -0
  193. data/vendor/local/include/cogl/cogl/cogl-atlas-texture.h +258 -0
  194. data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +152 -0
  195. data/vendor/local/include/cogl/cogl/cogl-attribute.h +558 -0
  196. data/vendor/local/include/cogl/cogl/cogl-auto-texture.h +221 -0
  197. data/vendor/local/include/cogl/cogl/cogl-bitmap.h +336 -0
  198. data/vendor/local/include/cogl/cogl/cogl-buffer.h +324 -0
  199. data/vendor/local/include/cogl/cogl/cogl-clip-state.h +266 -0
  200. data/vendor/local/include/cogl/cogl/cogl-clutter.h +54 -0
  201. data/vendor/local/include/cogl/cogl/cogl-color.h +604 -0
  202. data/vendor/local/include/cogl/cogl/cogl-context.h +401 -0
  203. data/vendor/local/include/cogl/cogl/cogl-defines.h +58 -0
  204. data/vendor/local/include/cogl/cogl/cogl-deprecated.h +43 -0
  205. data/vendor/local/include/cogl/cogl/cogl-depth-state.h +270 -0
  206. data/vendor/local/include/cogl/cogl/cogl-display.h +234 -0
  207. data/vendor/local/include/cogl/cogl/cogl-enum-types.h +99 -0
  208. data/vendor/local/include/cogl/cogl/cogl-error.h +185 -0
  209. data/vendor/local/include/cogl/cogl/cogl-euler.h +269 -0
  210. data/vendor/local/include/cogl/cogl/cogl-fence.h +143 -0
  211. data/vendor/local/include/cogl/cogl/cogl-fixed.h +811 -0
  212. data/vendor/local/include/cogl/cogl/cogl-frame-info.h +148 -0
  213. data/vendor/local/include/cogl/cogl/cogl-framebuffer-deprecated.h +264 -0
  214. data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +1818 -0
  215. data/vendor/local/include/cogl/cogl/cogl-gles2-types.h +474 -0
  216. data/vendor/local/include/cogl/cogl/cogl-gles2.h +420 -0
  217. data/vendor/local/include/cogl/cogl/cogl-glib-source.h +97 -0
  218. data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +107 -0
  219. data/vendor/local/include/cogl/cogl/cogl-indices.h +165 -0
  220. data/vendor/local/include/cogl/cogl/cogl-macros.h +273 -0
  221. data/vendor/local/include/cogl/cogl/cogl-material-compat.h +1391 -0
  222. data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +645 -0
  223. data/vendor/local/include/cogl/cogl/cogl-matrix.h +821 -0
  224. data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +194 -0
  225. data/vendor/local/include/cogl/cogl/cogl-object.h +251 -0
  226. data/vendor/local/include/cogl/cogl/cogl-offscreen.h +172 -0
  227. data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +125 -0
  228. data/vendor/local/include/cogl/cogl/cogl-onscreen.h +1012 -0
  229. data/vendor/local/include/cogl/cogl/cogl-output.h +261 -0
  230. data/vendor/local/include/cogl/cogl/cogl-pango.h +40 -0
  231. data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +620 -0
  232. data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +980 -0
  233. data/vendor/local/include/cogl/cogl/cogl-pipeline.h +194 -0
  234. data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +138 -0
  235. data/vendor/local/include/cogl/cogl/cogl-poll.h +200 -0
  236. data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +111 -0
  237. data/vendor/local/include/cogl/cogl/cogl-primitive.h +942 -0
  238. data/vendor/local/include/cogl/cogl/cogl-primitives.h +197 -0
  239. data/vendor/local/include/cogl/cogl/cogl-quaternion.h +564 -0
  240. data/vendor/local/include/cogl/cogl/cogl-renderer.h +446 -0
  241. data/vendor/local/include/cogl/cogl/cogl-shader.h +704 -0
  242. data/vendor/local/include/cogl/cogl/cogl-snippet.h +866 -0
  243. data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +136 -0
  244. data/vendor/local/include/cogl/cogl/cogl-swap-chain.h +71 -0
  245. data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +78 -0
  246. data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +301 -0
  247. data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +234 -0
  248. data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +204 -0
  249. data/vendor/local/include/cogl/cogl/cogl-texture-deprecated.h +105 -0
  250. data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +218 -0
  251. data/vendor/local/include/cogl/cogl/cogl-texture.h +524 -0
  252. data/vendor/local/include/cogl/cogl/cogl-type-casts.h +53 -0
  253. data/vendor/local/include/cogl/cogl/cogl-types.h +925 -0
  254. data/vendor/local/include/cogl/cogl/cogl-vector.h +356 -0
  255. data/vendor/local/include/cogl/cogl/cogl-version.h +348 -0
  256. data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +451 -0
  257. data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +123 -0
  258. data/vendor/local/include/cogl/cogl/cogl.h +194 -0
  259. data/vendor/local/include/cogl/cogl/cogl1-context.h +862 -0
  260. data/vendor/local/include/cogl/cogl/cogl2-experimental.h +37 -0
  261. data/vendor/local/include/cogl/cogl/deprecated/cogl-auto-texture.h +221 -0
  262. data/vendor/local/include/cogl/cogl/deprecated/cogl-clip-state.h +266 -0
  263. data/vendor/local/include/cogl/cogl/deprecated/cogl-clutter.h +54 -0
  264. data/vendor/local/include/cogl/cogl/deprecated/cogl-fixed.h +811 -0
  265. data/vendor/local/include/cogl/cogl/deprecated/cogl-framebuffer-deprecated.h +264 -0
  266. data/vendor/local/include/cogl/cogl/deprecated/cogl-material-compat.h +1391 -0
  267. data/vendor/local/include/cogl/cogl/deprecated/cogl-shader.h +704 -0
  268. data/vendor/local/include/cogl/cogl/deprecated/cogl-texture-deprecated.h +105 -0
  269. data/vendor/local/include/cogl/cogl/deprecated/cogl-type-casts.h +53 -0
  270. data/vendor/local/include/cogl/cogl/deprecated/cogl-vertex-buffer.h +451 -0
  271. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-core-functions.h +198 -0
  272. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-gles2-functions.h +43 -0
  273. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-glsl-functions.h +286 -0
  274. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h +148 -0
  275. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h +186 -0
  276. data/vendor/local/include/json-glib-1.0/json-glib/json-builder.h +120 -0
  277. data/vendor/local/include/json-glib-1.0/json-glib/json-enum-types.h +41 -0
  278. data/vendor/local/include/json-glib-1.0/json-glib/json-generator.h +120 -0
  279. data/vendor/local/include/json-glib-1.0/json-glib/json-glib.h +47 -0
  280. data/vendor/local/include/json-glib-1.0/json-glib/json-gobject.h +199 -0
  281. data/vendor/local/include/json-glib-1.0/json-glib/json-gvariant.h +53 -0
  282. data/vendor/local/include/json-glib-1.0/json-glib/json-parser.h +188 -0
  283. data/vendor/local/include/json-glib-1.0/json-glib/json-path.h +102 -0
  284. data/vendor/local/include/json-glib-1.0/json-glib/json-reader.h +171 -0
  285. data/vendor/local/include/json-glib-1.0/json-glib/json-types.h +445 -0
  286. data/vendor/local/include/json-glib-1.0/json-glib/json-version-macros.h +135 -0
  287. data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +102 -0
  288. data/vendor/local/lib/girepository-1.0/Cally-1.0.typelib +0 -0
  289. data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
  290. data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
  291. data/vendor/local/lib/girepository-1.0/Cogl-2.0.typelib +0 -0
  292. data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
  293. data/vendor/local/lib/girepository-1.0/CoglPango-2.0.typelib +0 -0
  294. data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
  295. data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
  296. data/vendor/local/lib/libclutter-1.0.la +41 -0
  297. data/vendor/local/lib/libcogl-pango.dll.a +0 -0
  298. data/vendor/local/lib/libcogl-pango.la +41 -0
  299. data/vendor/local/lib/libcogl-path.dll.a +0 -0
  300. data/vendor/local/lib/libcogl-path.la +41 -0
  301. data/vendor/local/lib/libcogl.dll.a +0 -0
  302. data/vendor/local/lib/libcogl.la +41 -0
  303. data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
  304. data/vendor/local/lib/libjson-glib-1.0.la +41 -0
  305. data/vendor/local/lib/pkgconfig/cally-1.0.pc +13 -0
  306. data/vendor/local/lib/pkgconfig/clutter-1.0.pc +24 -0
  307. data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +24 -0
  308. data/vendor/local/lib/pkgconfig/cogl-1.0.pc +13 -0
  309. data/vendor/local/lib/pkgconfig/cogl-2.0-experimental.pc +13 -0
  310. data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +13 -0
  311. data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +13 -0
  312. data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +13 -0
  313. data/vendor/local/lib/pkgconfig/cogl-path-1.0.pc +13 -0
  314. data/vendor/local/lib/pkgconfig/cogl-path-2.0-experimental.pc +13 -0
  315. data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +11 -0
  316. data/vendor/local/share/cogl/examples-data/crate.jpg +0 -0
  317. data/vendor/local/share/gir-1.0/Cally-1.0.gir +681 -0
  318. data/vendor/local/share/gir-1.0/Clutter-1.0.gir +70493 -0
  319. data/vendor/local/share/gir-1.0/Cogl-1.0.gir +8197 -0
  320. data/vendor/local/share/gir-1.0/Cogl-2.0.gir +20369 -0
  321. data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +333 -0
  322. data/vendor/local/share/gir-1.0/CoglPango-2.0.gir +331 -0
  323. data/vendor/local/share/gir-1.0/Json-1.0.gir +4742 -0
  324. data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +509 -0
  325. data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +155 -0
  326. data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +154 -0
  327. data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +154 -0
  328. data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +133 -0
  329. data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +159 -0
  330. data/vendor/local/share/gtk-doc/html/cally/CallyText.html +154 -0
  331. data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +154 -0
  332. data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +102 -0
  333. data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +187 -0
  334. data/vendor/local/share/gtk-doc/html/cally/cally.devhelp2 +73 -0
  335. data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +41 -0
  336. data/vendor/local/share/gtk-doc/html/cally/callybase.html +71 -0
  337. data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +45 -0
  338. data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +64 -0
  339. data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +39 -0
  340. data/vendor/local/share/gtk-doc/html/cally/ch01.html +53 -0
  341. data/vendor/local/share/gtk-doc/html/cally/ch02.html +41 -0
  342. data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +96 -0
  343. data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
  344. data/vendor/local/share/gtk-doc/html/cally/index.html +103 -0
  345. data/vendor/local/share/gtk-doc/html/cally/index.sgml +121 -0
  346. data/vendor/local/share/gtk-doc/html/cally/ix01.html +193 -0
  347. data/vendor/local/share/gtk-doc/html/cally/ix02.html +31 -0
  348. data/vendor/local/share/gtk-doc/html/cally/ix03.html +185 -0
  349. data/vendor/local/share/gtk-doc/html/cally/ix04.html +39 -0
  350. data/vendor/local/share/gtk-doc/html/cally/left-insensitive.png +0 -0
  351. data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
  352. data/vendor/local/share/gtk-doc/html/cally/license.html +58 -0
  353. data/vendor/local/share/gtk-doc/html/cally/right-insensitive.png +0 -0
  354. data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
  355. data/vendor/local/share/gtk-doc/html/cally/style.css +476 -0
  356. data/vendor/local/share/gtk-doc/html/cally/up-insensitive.png +0 -0
  357. data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
  358. data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +109 -0
  359. data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +15797 -0
  360. data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +396 -0
  361. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +494 -0
  362. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +816 -0
  363. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +497 -0
  364. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +1406 -0
  365. data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +855 -0
  366. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +802 -0
  367. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +313 -0
  368. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +1041 -0
  369. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +319 -0
  370. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +502 -0
  371. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +744 -0
  372. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +476 -0
  373. data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +481 -0
  374. data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +598 -0
  375. data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +116 -0
  376. data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +726 -0
  377. data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +1471 -0
  378. data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +480 -0
  379. data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +873 -0
  380. data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +488 -0
  381. data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +287 -0
  382. data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +667 -0
  383. data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +258 -0
  384. data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +239 -0
  385. data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +208 -0
  386. data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +1611 -0
  387. data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +367 -0
  388. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +418 -0
  389. data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +242 -0
  390. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +492 -0
  391. data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +1120 -0
  392. data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +498 -0
  393. data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +469 -0
  394. data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +125 -0
  395. data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +928 -0
  396. data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +1321 -0
  397. data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +1020 -0
  398. data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +272 -0
  399. data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +527 -0
  400. data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +1805 -0
  401. data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +616 -0
  402. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +1280 -0
  403. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +189 -0
  404. data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +222 -0
  405. data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +1053 -0
  406. data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +2052 -0
  407. data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +779 -0
  408. data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +452 -0
  409. data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +428 -0
  410. data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +671 -0
  411. data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +946 -0
  412. data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +1576 -0
  413. data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +407 -0
  414. data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +261 -0
  415. data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +484 -0
  416. data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +216 -0
  417. data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +1018 -0
  418. data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +1421 -0
  419. data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +364 -0
  420. data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +385 -0
  421. data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +376 -0
  422. data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +693 -0
  423. data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +526 -0
  424. data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +2751 -0
  425. data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +1823 -0
  426. data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +333 -0
  427. data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +1393 -0
  428. data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +219 -0
  429. data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +3871 -0
  430. data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +906 -0
  431. data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +2085 -0
  432. data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +2864 -0
  433. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +684 -0
  434. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +264 -0
  435. data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +474 -0
  436. data/vendor/local/share/gtk-doc/html/clutter/actor-box.png +0 -0
  437. data/vendor/local/share/gtk-doc/html/clutter/actor-example.png +0 -0
  438. data/vendor/local/share/gtk-doc/html/clutter/animator-key-frames.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +95 -0
  440. data/vendor/local/share/gtk-doc/html/clutter/bin-layout.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/clutter/box-layout.png +0 -0
  442. data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +275 -0
  443. data/vendor/local/share/gtk-doc/html/clutter/ch01.html +65 -0
  444. data/vendor/local/share/gtk-doc/html/clutter/ch02.html +44 -0
  445. data/vendor/local/share/gtk-doc/html/clutter/ch03.html +47 -0
  446. data/vendor/local/share/gtk-doc/html/clutter/ch04.html +59 -0
  447. data/vendor/local/share/gtk-doc/html/clutter/ch05.html +44 -0
  448. data/vendor/local/share/gtk-doc/html/clutter/ch06.html +57 -0
  449. data/vendor/local/share/gtk-doc/html/clutter/ch07.html +38 -0
  450. data/vendor/local/share/gtk-doc/html/clutter/ch08.html +38 -0
  451. data/vendor/local/share/gtk-doc/html/clutter/ch09.html +53 -0
  452. data/vendor/local/share/gtk-doc/html/clutter/ch10.html +78 -0
  453. data/vendor/local/share/gtk-doc/html/clutter/ch11.html +38 -0
  454. data/vendor/local/share/gtk-doc/html/clutter/ch12.html +41 -0
  455. data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +4244 -0
  456. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +268 -0
  457. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +454 -0
  458. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +442 -0
  459. data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +1644 -0
  460. data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +211 -0
  461. data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +3454 -0
  462. data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +232 -0
  463. data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +297 -0
  464. data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +2112 -0
  465. data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +2213 -0
  466. data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +200 -0
  467. data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +992 -0
  468. data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +411 -0
  469. data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +1236 -0
  470. data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +418 -0
  471. data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +1006 -0
  472. data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +661 -0
  473. data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +1221 -0
  474. data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +578 -0
  475. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +106 -0
  476. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-specific-support.html +289 -0
  477. data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +241 -0
  478. data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +916 -0
  479. data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +77 -0
  480. data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +2403 -0
  481. data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +65 -0
  482. data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +74 -0
  483. data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +195 -0
  484. data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +37 -0
  485. data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +118 -0
  486. data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +184 -0
  487. data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +37 -0
  488. data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +105 -0
  489. data/vendor/local/share/gtk-doc/html/clutter/constraints-example.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +93 -0
  491. data/vendor/local/share/gtk-doc/html/clutter/easing-modes.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/clutter/event-flow.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/clutter/flow-layout.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/clutter/go01.html +126 -0
  495. data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/clutter/index.html +454 -0
  497. data/vendor/local/share/gtk-doc/html/clutter/index.sgml +3165 -0
  498. data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +56 -0
  499. data/vendor/local/share/gtk-doc/html/clutter/ix01.html +8982 -0
  500. data/vendor/local/share/gtk-doc/html/clutter/ix02.html +2198 -0
  501. data/vendor/local/share/gtk-doc/html/clutter/ix03.html +457 -0
  502. data/vendor/local/share/gtk-doc/html/clutter/ix04.html +578 -0
  503. data/vendor/local/share/gtk-doc/html/clutter/ix05.html +952 -0
  504. data/vendor/local/share/gtk-doc/html/clutter/ix06.html +637 -0
  505. data/vendor/local/share/gtk-doc/html/clutter/ix07.html +1525 -0
  506. data/vendor/local/share/gtk-doc/html/clutter/ix08.html +815 -0
  507. data/vendor/local/share/gtk-doc/html/clutter/ix09.html +1000 -0
  508. data/vendor/local/share/gtk-doc/html/clutter/ix10.html +364 -0
  509. data/vendor/local/share/gtk-doc/html/clutter/ix11.html +361 -0
  510. data/vendor/local/share/gtk-doc/html/clutter/ix12.html +1085 -0
  511. data/vendor/local/share/gtk-doc/html/clutter/ix13.html +979 -0
  512. data/vendor/local/share/gtk-doc/html/clutter/ix14.html +101 -0
  513. data/vendor/local/share/gtk-doc/html/clutter/left-insensitive.png +0 -0
  514. data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
  515. data/vendor/local/share/gtk-doc/html/clutter/license.html +58 -0
  516. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +223 -0
  517. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +197 -0
  518. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +154 -0
  519. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +155 -0
  520. data/vendor/local/share/gtk-doc/html/clutter/migration.html +49 -0
  521. data/vendor/local/share/gtk-doc/html/clutter/offscreen-redirect.png +0 -0
  522. data/vendor/local/share/gtk-doc/html/clutter/path-alpha-func.png +0 -0
  523. data/vendor/local/share/gtk-doc/html/clutter/pt09.html +31 -0
  524. data/vendor/local/share/gtk-doc/html/clutter/right-insensitive.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
  526. data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +378 -0
  527. data/vendor/local/share/gtk-doc/html/clutter/style.css +476 -0
  528. data/vendor/local/share/gtk-doc/html/clutter/table-layout.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/clutter/up-insensitive.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +36 -0
  532. data/vendor/local/share/gtk-doc/html/json-glib/JsonBuilder.html +676 -0
  533. data/vendor/local/share/gtk-doc/html/json-glib/JsonGenerator.html +660 -0
  534. data/vendor/local/share/gtk-doc/html/json-glib/JsonParser.html +1144 -0
  535. data/vendor/local/share/gtk-doc/html/json-glib/JsonPath.html +512 -0
  536. data/vendor/local/share/gtk-doc/html/json-glib/JsonReader.html +1140 -0
  537. data/vendor/local/share/gtk-doc/html/json-glib/annotation-glossary.html +66 -0
  538. data/vendor/local/share/gtk-doc/html/json-glib/ch01.html +41 -0
  539. data/vendor/local/share/gtk-doc/html/json-glib/ch02.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/json-glib/ch03.html +38 -0
  541. data/vendor/local/share/gtk-doc/html/json-glib/ch05.html +40 -0
  542. data/vendor/local/share/gtk-doc/html/json-glib/home.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/json-glib/index.html +134 -0
  544. data/vendor/local/share/gtk-doc/html/json-glib/index.sgml +327 -0
  545. data/vendor/local/share/gtk-doc/html/json-glib/ix01.html +965 -0
  546. data/vendor/local/share/gtk-doc/html/json-glib/ix02.html +49 -0
  547. data/vendor/local/share/gtk-doc/html/json-glib/ix03.html +56 -0
  548. data/vendor/local/share/gtk-doc/html/json-glib/ix04.html +49 -0
  549. data/vendor/local/share/gtk-doc/html/json-glib/ix05.html +181 -0
  550. data/vendor/local/share/gtk-doc/html/json-glib/ix06.html +116 -0
  551. data/vendor/local/share/gtk-doc/html/json-glib/ix07.html +156 -0
  552. data/vendor/local/share/gtk-doc/html/json-glib/ix08.html +132 -0
  553. data/vendor/local/share/gtk-doc/html/json-glib/json-advanced.html +50 -0
  554. data/vendor/local/share/gtk-doc/html/json-glib/json-base.html +61 -0
  555. data/vendor/local/share/gtk-doc/html/json-glib/json-format-tool.html +84 -0
  556. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html +491 -0
  557. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html +385 -0
  558. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html +1188 -0
  559. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html +318 -0
  560. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html +1803 -0
  561. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html +1369 -0
  562. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html +582 -0
  563. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +215 -0
  564. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.devhelp2 +277 -0
  565. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.html +38 -0
  566. data/vendor/local/share/gtk-doc/html/json-glib/json-streams.html +63 -0
  567. data/vendor/local/share/gtk-doc/html/json-glib/json-tools.html +45 -0
  568. data/vendor/local/share/gtk-doc/html/json-glib/json-validate-tool.html +72 -0
  569. data/vendor/local/share/gtk-doc/html/json-glib/left-insensitive.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/json-glib/left.png +0 -0
  571. data/vendor/local/share/gtk-doc/html/json-glib/license.html +58 -0
  572. data/vendor/local/share/gtk-doc/html/json-glib/right-insensitive.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/json-glib/right.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/json-glib/style.css +476 -0
  575. data/vendor/local/share/gtk-doc/html/json-glib/tools.html +38 -0
  576. data/vendor/local/share/gtk-doc/html/json-glib/up-insensitive.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/json-glib/up.png +0 -0
  578. data/vendor/local/share/license/clutter/COPYING +502 -0
  579. data/vendor/local/share/license/cogl/COPYING +107 -0
  580. data/vendor/local/share/license/json-glib/COPYING +504 -0
  581. data/vendor/local/share/locale/an/LC_MESSAGES/clutter-1.0.mo +0 -0
  582. data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
  583. data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
  584. data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
  585. data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
  586. data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
  587. data/vendor/local/share/locale/as/LC_MESSAGES/json-glib-1.0.mo +0 -0
  588. data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
  589. data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
  590. data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
  591. data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
  592. data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
  593. data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
  594. data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
  595. data/vendor/local/share/locale/bg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  596. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  597. data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
  598. data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
  599. data/vendor/local/share/locale/ca/LC_MESSAGES/json-glib-1.0.mo +0 -0
  600. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
  601. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
  602. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/json-glib-1.0.mo +0 -0
  603. data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
  604. data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
  605. data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
  606. data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
  607. data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
  608. data/vendor/local/share/locale/da/LC_MESSAGES/json-glib-1.0.mo +0 -0
  609. data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
  610. data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
  611. data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
  612. data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
  613. data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
  614. data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
  615. data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
  616. data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
  617. data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
  618. data/vendor/local/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +0 -0
  619. data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
  620. data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
  621. data/vendor/local/share/locale/eo/LC_MESSAGES/json-glib-1.0.mo +0 -0
  622. data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
  623. data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
  624. data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
  625. data/vendor/local/share/locale/et/LC_MESSAGES/json-glib-1.0.mo +0 -0
  626. data/vendor/local/share/locale/eu/LC_MESSAGES/clutter-1.0.mo +0 -0
  627. data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
  628. data/vendor/local/share/locale/eu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  629. data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
  630. data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
  631. data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
  632. data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
  633. data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
  634. data/vendor/local/share/locale/fr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  635. data/vendor/local/share/locale/fur/LC_MESSAGES/json-glib-1.0.mo +0 -0
  636. data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
  637. data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
  638. data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  639. data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
  640. data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
  641. data/vendor/local/share/locale/he/LC_MESSAGES/json-glib-1.0.mo +0 -0
  642. data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
  643. data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
  644. data/vendor/local/share/locale/hi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  645. data/vendor/local/share/locale/hu/LC_MESSAGES/clutter-1.0.mo +0 -0
  646. data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
  647. data/vendor/local/share/locale/hu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  648. data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
  649. data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
  650. data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
  651. data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
  652. data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
  653. data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
  654. data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
  655. data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
  656. data/vendor/local/share/locale/ja/LC_MESSAGES/json-glib-1.0.mo +0 -0
  657. data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
  658. data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
  659. data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
  660. data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
  661. data/vendor/local/share/locale/ko/LC_MESSAGES/clutter-1.0.mo +0 -0
  662. data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
  663. data/vendor/local/share/locale/ko/LC_MESSAGES/json-glib-1.0.mo +0 -0
  664. data/vendor/local/share/locale/ky/LC_MESSAGES/json-glib-1.0.mo +0 -0
  665. data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
  666. data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
  667. data/vendor/local/share/locale/lt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  668. data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
  669. data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
  670. data/vendor/local/share/locale/lv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  671. data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
  672. data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
  673. data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
  674. data/vendor/local/share/locale/ml/LC_MESSAGES/json-glib-1.0.mo +0 -0
  675. data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
  676. data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
  677. data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
  678. data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
  679. data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
  680. data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
  681. data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
  682. data/vendor/local/share/locale/or/LC_MESSAGES/json-glib-1.0.mo +0 -0
  683. data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
  684. data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
  685. data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
  686. data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
  687. data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
  688. data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  689. data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
  690. data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
  691. data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
  692. data/vendor/local/share/locale/pt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  693. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
  694. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
  695. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
  696. data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
  697. data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
  698. data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
  699. data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
  700. data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
  701. data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
  702. data/vendor/local/share/locale/sk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  703. data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
  704. data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
  705. data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  706. data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
  707. data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
  708. data/vendor/local/share/locale/sr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  709. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
  710. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
  711. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/json-glib-1.0.mo +0 -0
  712. data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
  713. data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
  714. data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  715. data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
  716. data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
  717. data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
  718. data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
  719. data/vendor/local/share/locale/te/LC_MESSAGES/json-glib-1.0.mo +0 -0
  720. data/vendor/local/share/locale/tg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  721. data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
  722. data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
  723. data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
  724. data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  725. data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
  726. data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
  727. data/vendor/local/share/locale/ug/LC_MESSAGES/json-glib-1.0.mo +0 -0
  728. data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
  729. data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
  730. data/vendor/local/share/locale/uk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  731. data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
  732. data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
  733. data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  734. data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
  735. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
  736. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
  737. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  738. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
  739. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
  740. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/json-glib-1.0.mo +0 -0
  741. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
  742. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
  743. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/json-glib-1.0.mo +0 -0
  744. metadata +869 -0
@@ -0,0 +1,2213 @@
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>Clutter Reference Manual: Implicit Animations</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="deprecated.html" title="Part IX. Deprecated Classes">
9
+ <link rel="prev" href="ClutterAlpha.html" title="ClutterAlpha">
10
+ <link rel="next" href="ClutterAnimator.html" title="ClutterAnimator">
11
+ <meta name="generator" content="GTK-Doc V1.20.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="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#clutter-Implicit-Animations.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#clutter-Implicit-Animations.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#clutter-Implicit-Animations.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#clutter-Implicit-Animations.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22
+ <a href="#clutter-Implicit-Animations.signals" class="shortcut">Signals</a></span>
23
+ </td>
24
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25
+ <td><a accesskey="u" href="deprecated.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
26
+ <td><a accesskey="p" href="ClutterAlpha.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27
+ <td><a accesskey="n" href="ClutterAnimator.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28
+ </tr></table>
29
+ <div class="refentry">
30
+ <a name="clutter-Implicit-Animations"></a><div class="titlepage"></div>
31
+ <div class="refnamediv"><table width="100%"><tr>
32
+ <td valign="top">
33
+ <h2><span class="refentrytitle"><a name="clutter-Implicit-Animations.top_of_page"></a>Implicit Animations</span></h2>
34
+ <p>Implicit Animations — Simple implicit animations</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="clutter-Implicit-Animations.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="function_type">
48
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-new" title="clutter_animation_new ()">clutter_animation_new</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <span class="returnvalue">void</span>
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-object" title="clutter_animation_set_object ()">clutter_animation_set_object</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <span class="returnvalue">GObject</span> *
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-object" title="clutter_animation_get_object ()">clutter_animation_get_object</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="function_type">
72
+ <span class="returnvalue">void</span>
73
+ </td>
74
+ <td class="function_name">
75
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-mode" title="clutter_animation_set_mode ()">clutter_animation_set_mode</a> <span class="c_punctuation">()</span>
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td class="function_type">
80
+ <span class="returnvalue">gulong</span>
81
+ </td>
82
+ <td class="function_name">
83
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-mode" title="clutter_animation_get_mode ()">clutter_animation_get_mode</a> <span class="c_punctuation">()</span>
84
+ </td>
85
+ </tr>
86
+ <tr>
87
+ <td class="function_type">
88
+ <span class="returnvalue">void</span>
89
+ </td>
90
+ <td class="function_name">
91
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-duration" title="clutter_animation_set_duration ()">clutter_animation_set_duration</a> <span class="c_punctuation">()</span>
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <td class="function_type">
96
+ <span class="returnvalue">guint</span>
97
+ </td>
98
+ <td class="function_name">
99
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-duration" title="clutter_animation_get_duration ()">clutter_animation_get_duration</a> <span class="c_punctuation">()</span>
100
+ </td>
101
+ </tr>
102
+ <tr>
103
+ <td class="function_type">
104
+ <span class="returnvalue">void</span>
105
+ </td>
106
+ <td class="function_name">
107
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-loop" title="clutter_animation_set_loop ()">clutter_animation_set_loop</a> <span class="c_punctuation">()</span>
108
+ </td>
109
+ </tr>
110
+ <tr>
111
+ <td class="function_type">
112
+ <span class="returnvalue">gboolean</span>
113
+ </td>
114
+ <td class="function_name">
115
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-loop" title="clutter_animation_get_loop ()">clutter_animation_get_loop</a> <span class="c_punctuation">()</span>
116
+ </td>
117
+ </tr>
118
+ <tr>
119
+ <td class="function_type">
120
+ <span class="returnvalue">void</span>
121
+ </td>
122
+ <td class="function_name">
123
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-timeline" title="clutter_animation_set_timeline ()">clutter_animation_set_timeline</a> <span class="c_punctuation">()</span>
124
+ </td>
125
+ </tr>
126
+ <tr>
127
+ <td class="function_type">
128
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> *
129
+ </td>
130
+ <td class="function_name">
131
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-timeline" title="clutter_animation_get_timeline ()">clutter_animation_get_timeline</a> <span class="c_punctuation">()</span>
132
+ </td>
133
+ </tr>
134
+ <tr>
135
+ <td class="function_type">
136
+ <span class="returnvalue">void</span>
137
+ </td>
138
+ <td class="function_name">
139
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-alpha" title="clutter_animation_set_alpha ()">clutter_animation_set_alpha</a> <span class="c_punctuation">()</span>
140
+ </td>
141
+ </tr>
142
+ <tr>
143
+ <td class="function_type">
144
+ <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="returnvalue">ClutterAlpha</span></a> *
145
+ </td>
146
+ <td class="function_name">
147
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-alpha" title="clutter_animation_get_alpha ()">clutter_animation_get_alpha</a> <span class="c_punctuation">()</span>
148
+ </td>
149
+ </tr>
150
+ <tr>
151
+ <td class="function_type">
152
+ <span class="returnvalue">void</span>
153
+ </td>
154
+ <td class="function_name">
155
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-completed" title="clutter_animation_completed ()">clutter_animation_completed</a> <span class="c_punctuation">()</span>
156
+ </td>
157
+ </tr>
158
+ <tr>
159
+ <td class="function_type">
160
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
161
+ </td>
162
+ <td class="function_name">
163
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-bind" title="clutter_animation_bind ()">clutter_animation_bind</a> <span class="c_punctuation">()</span>
164
+ </td>
165
+ </tr>
166
+ <tr>
167
+ <td class="function_type">
168
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
169
+ </td>
170
+ <td class="function_name">
171
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-bind-interval" title="clutter_animation_bind_interval ()">clutter_animation_bind_interval</a> <span class="c_punctuation">()</span>
172
+ </td>
173
+ </tr>
174
+ <tr>
175
+ <td class="function_type">
176
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
177
+ </td>
178
+ <td class="function_name">
179
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-update" title="clutter_animation_update ()">clutter_animation_update</a> <span class="c_punctuation">()</span>
180
+ </td>
181
+ </tr>
182
+ <tr>
183
+ <td class="function_type">
184
+ <span class="returnvalue">void</span>
185
+ </td>
186
+ <td class="function_name">
187
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-update-interval" title="clutter_animation_update_interval ()">clutter_animation_update_interval</a> <span class="c_punctuation">()</span>
188
+ </td>
189
+ </tr>
190
+ <tr>
191
+ <td class="function_type">
192
+ <span class="returnvalue">gboolean</span>
193
+ </td>
194
+ <td class="function_name">
195
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-has-property" title="clutter_animation_has_property ()">clutter_animation_has_property</a> <span class="c_punctuation">()</span>
196
+ </td>
197
+ </tr>
198
+ <tr>
199
+ <td class="function_type">
200
+ <span class="returnvalue">void</span>
201
+ </td>
202
+ <td class="function_name">
203
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-unbind-property" title="clutter_animation_unbind_property ()">clutter_animation_unbind_property</a> <span class="c_punctuation">()</span>
204
+ </td>
205
+ </tr>
206
+ <tr>
207
+ <td class="function_type">
208
+ <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="returnvalue">ClutterInterval</span></a> *
209
+ </td>
210
+ <td class="function_name">
211
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-interval" title="clutter_animation_get_interval ()">clutter_animation_get_interval</a> <span class="c_punctuation">()</span>
212
+ </td>
213
+ </tr>
214
+ <tr>
215
+ <td class="function_type">
216
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
217
+ </td>
218
+ <td class="function_name">
219
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()">clutter_actor_animate</a> <span class="c_punctuation">()</span>
220
+ </td>
221
+ </tr>
222
+ <tr>
223
+ <td class="function_type">
224
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
225
+ </td>
226
+ <td class="function_name">
227
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timeline" title="clutter_actor_animate_with_timeline ()">clutter_actor_animate_with_timeline</a> <span class="c_punctuation">()</span>
228
+ </td>
229
+ </tr>
230
+ <tr>
231
+ <td class="function_type">
232
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
233
+ </td>
234
+ <td class="function_name">
235
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-alpha" title="clutter_actor_animate_with_alpha ()">clutter_actor_animate_with_alpha</a> <span class="c_punctuation">()</span>
236
+ </td>
237
+ </tr>
238
+ <tr>
239
+ <td class="function_type">
240
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
241
+ </td>
242
+ <td class="function_name">
243
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animatev" title="clutter_actor_animatev ()">clutter_actor_animatev</a> <span class="c_punctuation">()</span>
244
+ </td>
245
+ </tr>
246
+ <tr>
247
+ <td class="function_type">
248
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
249
+ </td>
250
+ <td class="function_name">
251
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timelinev" title="clutter_actor_animate_with_timelinev ()">clutter_actor_animate_with_timelinev</a> <span class="c_punctuation">()</span>
252
+ </td>
253
+ </tr>
254
+ <tr>
255
+ <td class="function_type">
256
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
257
+ </td>
258
+ <td class="function_name">
259
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-alphav" title="clutter_actor_animate_with_alphav ()">clutter_actor_animate_with_alphav</a> <span class="c_punctuation">()</span>
260
+ </td>
261
+ </tr>
262
+ <tr>
263
+ <td class="function_type">
264
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
265
+ </td>
266
+ <td class="function_name">
267
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-get-animation" title="clutter_actor_get_animation ()">clutter_actor_get_animation</a> <span class="c_punctuation">()</span>
268
+ </td>
269
+ </tr>
270
+ <tr>
271
+ <td class="function_type">
272
+ <span class="returnvalue">void</span>
273
+ </td>
274
+ <td class="function_name">
275
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-detach-animation" title="clutter_actor_detach_animation ()">clutter_actor_detach_animation</a> <span class="c_punctuation">()</span>
276
+ </td>
277
+ </tr>
278
+ </tbody>
279
+ </table></div>
280
+ </div>
281
+ <div class="refsect1">
282
+ <a name="clutter-Implicit-Animations.properties"></a><h2>Properties</h2>
283
+ <div class="informaltable"><table border="0">
284
+ <colgroup>
285
+ <col width="150px" class="properties_type">
286
+ <col width="300px" class="properties_name">
287
+ <col width="200px" class="properties_flags">
288
+ </colgroup>
289
+ <tbody>
290
+ <tr>
291
+ <td class="property_type">
292
+ <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> *</td>
293
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--alpha" title="The “alpha” property">alpha</a></td>
294
+ <td class="property_flags">Read / Write</td>
295
+ </tr>
296
+ <tr>
297
+ <td class="property_type"><span class="type">guint</span></td>
298
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--duration" title="The “duration” property">duration</a></td>
299
+ <td class="property_flags">Read / Write</td>
300
+ </tr>
301
+ <tr>
302
+ <td class="property_type"><span class="type">gboolean</span></td>
303
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--loop" title="The “loop” property">loop</a></td>
304
+ <td class="property_flags">Read / Write</td>
305
+ </tr>
306
+ <tr>
307
+ <td class="property_type"><span class="type">gulong</span></td>
308
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--mode" title="The “mode” property">mode</a></td>
309
+ <td class="property_flags">Read / Write</td>
310
+ </tr>
311
+ <tr>
312
+ <td class="property_type">
313
+ <span class="type">GObject</span> *</td>
314
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--object" title="The “object” property">object</a></td>
315
+ <td class="property_flags">Read / Write</td>
316
+ </tr>
317
+ <tr>
318
+ <td class="property_type">
319
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *</td>
320
+ <td class="property_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--timeline" title="The “timeline” property">timeline</a></td>
321
+ <td class="property_flags">Read / Write</td>
322
+ </tr>
323
+ </tbody>
324
+ </table></div>
325
+ </div>
326
+ <div class="refsect1">
327
+ <a name="clutter-Implicit-Animations.signals"></a><h2>Signals</h2>
328
+ <div class="informaltable"><table border="0">
329
+ <colgroup>
330
+ <col width="150px" class="signals_return">
331
+ <col width="300px" class="signals_name">
332
+ <col width="200px" class="signals_flags">
333
+ </colgroup>
334
+ <tbody>
335
+ <tr>
336
+ <td class="signal_type"><span class="returnvalue">void</span></td>
337
+ <td class="signal_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal">completed</a></td>
338
+ <td class="signal_flags">Run Last</td>
339
+ </tr>
340
+ <tr>
341
+ <td class="signal_type"><span class="returnvalue">void</span></td>
342
+ <td class="signal_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-started" title="The “started” signal">started</a></td>
343
+ <td class="signal_flags">Run Last</td>
344
+ </tr>
345
+ </tbody>
346
+ </table></div>
347
+ </div>
348
+ <a name="ClutterAnimation"></a><div class="refsect1">
349
+ <a name="clutter-Implicit-Animations.other"></a><h2>Types and Values</h2>
350
+ <div class="informaltable"><table width="100%" border="0">
351
+ <colgroup>
352
+ <col width="150px" class="name">
353
+ <col class="description">
354
+ </colgroup>
355
+ <tbody>
356
+ <tr>
357
+ <td class="datatype_keyword"> </td>
358
+ <td class="function_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-struct" title="ClutterAnimation">ClutterAnimation</a></td>
359
+ </tr>
360
+ <tr>
361
+ <td class="datatype_keyword">struct</td>
362
+ <td class="function_name"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimationClass" title="struct ClutterAnimationClass">ClutterAnimationClass</a></td>
363
+ </tr>
364
+ </tbody>
365
+ </table></div>
366
+ </div>
367
+ <div class="refsect1">
368
+ <a name="clutter-Implicit-Animations.object-hierarchy"></a><h2>Object Hierarchy</h2>
369
+ <pre class="screen"> GObject
370
+ <span class="lineart">╰──</span> ClutterAnimation
371
+ </pre>
372
+ </div>
373
+ <div class="refsect1">
374
+ <a name="clutter-Implicit-Animations.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
375
+ <p>
376
+ ClutterAnimation implements
377
+ <a class="link" href="ClutterScriptable.html" title="ClutterScriptable">ClutterScriptable</a>.</p>
378
+ </div>
379
+ <div class="refsect1">
380
+ <a name="clutter-Implicit-Animations.description"></a><h2>Description</h2>
381
+ <p><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> is an object providing simple, implicit animations
382
+ for <span class="type">GObjects</span>.</p>
383
+ <p><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> instances will bind one or more <span class="type">GObject</span> properties
384
+ belonging to a <span class="type">GObject</span> to a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>, and will then use a
385
+ <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> to interpolate the property between the initial and final
386
+ values of the interval.</p>
387
+ <p>The duration of the animation is set using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-duration" title="clutter_animation_set_duration ()"><code class="function">clutter_animation_set_duration()</code></a>.
388
+ The easing mode of the animation is set using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-mode" title="clutter_animation_set_mode ()"><code class="function">clutter_animation_set_mode()</code></a>.</p>
389
+ <p>If you want to control the animation you should retrieve the
390
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-timeline" title="clutter_animation_get_timeline ()"><code class="function">clutter_animation_get_timeline()</code></a> and then
391
+ use <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> functions like <a class="link" href="ClutterTimeline.html#clutter-timeline-start" title="clutter_timeline_start ()"><code class="function">clutter_timeline_start()</code></a>,
392
+ <a class="link" href="ClutterTimeline.html#clutter-timeline-pause" title="clutter_timeline_pause ()"><code class="function">clutter_timeline_pause()</code></a> or <a class="link" href="ClutterTimeline.html#clutter-timeline-stop" title="clutter_timeline_stop ()"><code class="function">clutter_timeline_stop()</code></a>.</p>
393
+ <p>A <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will emit the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> signal
394
+ when the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by the animation is completed; unlike
395
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>, though, the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> will not be
396
+ emitted if <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--loop" title="The “loop” property"><span class="type">“loop”</span></a> is set to <code class="literal">TRUE</code> - that is, a looping
397
+ animation never completes.</p>
398
+ <p>If your animation depends on user control you can force its completion
399
+ using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-completed" title="clutter_animation_completed ()"><code class="function">clutter_animation_completed()</code></a>.</p>
400
+ <p>If the <span class="type">GObject</span> instance bound to a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> implements the
401
+ <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> interface it is possible for that instance to
402
+ control the way the initial and final states are interpolated.</p>
403
+ <p><a href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimations</span></a> are distinguished from <a href="ClutterBehaviour.html"><span class="type">ClutterBehaviours</span></a>
404
+ because the former can only control <span class="type">GObject</span> properties of a single
405
+ <span class="type">GObject</span> instance, while the latter can control multiple properties
406
+ using accessor functions inside the <a class="link" href="ClutterBehaviour.html" title="ClutterBehaviour"><span class="type">ClutterBehaviour</span></a>
407
+ <code class="literal">alpha_notify</code> virtual function, and can control multiple <a href="ClutterActor.html"><span class="type">ClutterActors</span></a>
408
+ as well.</p>
409
+ <p>For convenience, it is possible to use the <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>
410
+ function call which will take care of setting up and tearing down
411
+ a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> instance and animate an actor between its current
412
+ state and the specified final state.</p>
413
+ <p><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> is available since Clutter 1.0.</p>
414
+ <p><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> has been deprecated in Clutter 1.12.</p>
415
+ <div class="refsect3">
416
+ <a name="id-1.10.3.10.13"></a><h4>Defining ClutterAnimationMode inside ClutterScript</h4>
417
+ <p>When defining a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> inside a ClutterScript
418
+ file or string the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--mode" title="The “mode” property"><span class="type">“mode”</span></a> can be defined either
419
+ using the <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> enumeration values through their
420
+ "nick" (the short string used inside <span class="type">GEnumValue</span>), their numeric
421
+ id, or using the following strings:</p>
422
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
423
+ <li class="listitem"><p>easeInQuad, easeOutQuad, easeInOutQuad</p></li>
424
+ <li class="listitem"><p>easeInCubic, easeOutCubic, easeInOutCubic</p></li>
425
+ <li class="listitem"><p>easeInQuart, easeOutQuart, easeInOutQuart</p></li>
426
+ <li class="listitem"><p>easeInQuint, easeOutQuint, easeInOutQuint</p></li>
427
+ <li class="listitem"><p>easeInSine, easeOutSine, easeInOutSine</p></li>
428
+ <li class="listitem"><p>easeInExpo, easeOutExpo, easeInOutExpo</p></li>
429
+ <li class="listitem"><p>easeInCirc, easeOutCirc, easeInOutCirc</p></li>
430
+ <li class="listitem"><p>easeInElastic, easeOutElastic, easeInOutElastic</p></li>
431
+ <li class="listitem"><p>easeInBack, easeOutBack, easeInOutBack</p></li>
432
+ <li class="listitem"><p>easeInBounce, easeOutBounce, easeInOutBounce</p></li>
433
+ </ul></div>
434
+ </div>
435
+ </div>
436
+ <div class="refsect1">
437
+ <a name="clutter-Implicit-Animations.functions_details"></a><h2>Functions</h2>
438
+ <div class="refsect2">
439
+ <a name="clutter-animation-new"></a><h3>clutter_animation_new ()</h3>
440
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
441
+ clutter_animation_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
442
+ <div class="warning">
443
+ <p><code class="literal">clutter_animation_new</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
444
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
445
+ </div>
446
+ <p>Creates a new <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> instance. You should set the
447
+ <span class="type">GObject</span> to be animated using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-object" title="clutter_animation_set_object ()"><code class="function">clutter_animation_set_object()</code></a>,
448
+ set the duration with <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-duration" title="clutter_animation_set_duration ()"><code class="function">clutter_animation_set_duration()</code></a> and the
449
+ easing mode using <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-mode" title="clutter_animation_set_mode ()"><code class="function">clutter_animation_set_mode()</code></a>.</p>
450
+ <p>Use <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-bind" title="clutter_animation_bind ()"><code class="function">clutter_animation_bind()</code></a> or <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-bind-interval" title="clutter_animation_bind_interval ()"><code class="function">clutter_animation_bind_interval()</code></a>
451
+ to define the properties to be animated. The interval and the
452
+ animated properties can be updated at runtime.</p>
453
+ <p>The <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> and relative family of functions provide
454
+ an easy way to animate a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and automatically manage the
455
+ lifetime of a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> instance, so you should consider using
456
+ those functions instead of manually creating an animation.</p>
457
+ <div class="refsect3">
458
+ <a name="id-1.10.3.11.2.9"></a><h4>Returns</h4>
459
+ <p> the newly created <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>. Use <code class="function">g_object_unref()</code>
460
+ to release the associated resources</p>
461
+ <p></p>
462
+ </div>
463
+ <p class="since">Since 1.0</p>
464
+ </div>
465
+ <hr>
466
+ <div class="refsect2">
467
+ <a name="clutter-animation-set-object"></a><h3>clutter_animation_set_object ()</h3>
468
+ <pre class="programlisting"><span class="returnvalue">void</span>
469
+ clutter_animation_set_object (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
470
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>);</pre>
471
+ <div class="warning">
472
+ <p><code class="literal">clutter_animation_set_object</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
473
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
474
+ </div>
475
+ <p>Attaches <em class="parameter"><code>animation</code></em>
476
+ to <em class="parameter"><code>object</code></em>
477
+ . The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will take a
478
+ reference on <em class="parameter"><code>object</code></em>
479
+ .</p>
480
+ <div class="refsect3">
481
+ <a name="id-1.10.3.11.3.7"></a><h4>Parameters</h4>
482
+ <div class="informaltable"><table width="100%" border="0">
483
+ <colgroup>
484
+ <col width="150px" class="parameters_name">
485
+ <col class="parameters_description">
486
+ <col width="200px" class="parameters_annotations">
487
+ </colgroup>
488
+ <tbody>
489
+ <tr>
490
+ <td class="parameter_name"><p>animation</p></td>
491
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
492
+ <td class="parameter_annotations"> </td>
493
+ </tr>
494
+ <tr>
495
+ <td class="parameter_name"><p>object</p></td>
496
+ <td class="parameter_description"><p>a <span class="type">GObject</span></p></td>
497
+ <td class="parameter_annotations"> </td>
498
+ </tr>
499
+ </tbody>
500
+ </table></div>
501
+ </div>
502
+ <p class="since">Since 1.0</p>
503
+ </div>
504
+ <hr>
505
+ <div class="refsect2">
506
+ <a name="clutter-animation-get-object"></a><h3>clutter_animation_get_object ()</h3>
507
+ <pre class="programlisting"><span class="returnvalue">GObject</span> *
508
+ clutter_animation_get_object (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
509
+ <div class="warning">
510
+ <p><code class="literal">clutter_animation_get_object</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
511
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
512
+ </div>
513
+ <p>Retrieves the <span class="type">GObject</span> attached to <em class="parameter"><code>animation</code></em>
514
+ .</p>
515
+ <div class="refsect3">
516
+ <a name="id-1.10.3.11.4.7"></a><h4>Parameters</h4>
517
+ <div class="informaltable"><table width="100%" border="0">
518
+ <colgroup>
519
+ <col width="150px" class="parameters_name">
520
+ <col class="parameters_description">
521
+ <col width="200px" class="parameters_annotations">
522
+ </colgroup>
523
+ <tbody><tr>
524
+ <td class="parameter_name"><p>animation</p></td>
525
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
526
+ <td class="parameter_annotations"> </td>
527
+ </tr></tbody>
528
+ </table></div>
529
+ </div>
530
+ <div class="refsect3">
531
+ <a name="id-1.10.3.11.4.8"></a><h4>Returns</h4>
532
+ <p> a <span class="type">GObject</span>. </p>
533
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
534
+ </div>
535
+ <p class="since">Since 1.0</p>
536
+ </div>
537
+ <hr>
538
+ <div class="refsect2">
539
+ <a name="clutter-animation-set-mode"></a><h3>clutter_animation_set_mode ()</h3>
540
+ <pre class="programlisting"><span class="returnvalue">void</span>
541
+ clutter_animation_set_mode (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
542
+ <em class="parameter"><code><span class="type">gulong</span> mode</code></em>);</pre>
543
+ <div class="warning">
544
+ <p><code class="literal">clutter_animation_set_mode</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
545
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
546
+ </div>
547
+ <p>Sets the animation <em class="parameter"><code>mode</code></em>
548
+ of <em class="parameter"><code>animation</code></em>
549
+ . The animation <em class="parameter"><code>mode</code></em>
550
+ is
551
+ a logical id, either coming from the <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a> enumeration
552
+ or the return value of <a class="link" href="ClutterAlpha.html#clutter-alpha-register-func" title="clutter_alpha_register_func ()"><code class="function">clutter_alpha_register_func()</code></a>.</p>
553
+ <p>This function will also set <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--alpha" title="The “alpha” property"><span class="type">“alpha”</span></a> if needed.</p>
554
+ <div class="refsect3">
555
+ <a name="id-1.10.3.11.5.8"></a><h4>Parameters</h4>
556
+ <div class="informaltable"><table width="100%" border="0">
557
+ <colgroup>
558
+ <col width="150px" class="parameters_name">
559
+ <col class="parameters_description">
560
+ <col width="200px" class="parameters_annotations">
561
+ </colgroup>
562
+ <tbody>
563
+ <tr>
564
+ <td class="parameter_name"><p>animation</p></td>
565
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
566
+ <td class="parameter_annotations"> </td>
567
+ </tr>
568
+ <tr>
569
+ <td class="parameter_name"><p>mode</p></td>
570
+ <td class="parameter_description"><p>an animation mode logical id</p></td>
571
+ <td class="parameter_annotations"> </td>
572
+ </tr>
573
+ </tbody>
574
+ </table></div>
575
+ </div>
576
+ <p class="since">Since 1.0</p>
577
+ </div>
578
+ <hr>
579
+ <div class="refsect2">
580
+ <a name="clutter-animation-get-mode"></a><h3>clutter_animation_get_mode ()</h3>
581
+ <pre class="programlisting"><span class="returnvalue">gulong</span>
582
+ clutter_animation_get_mode (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
583
+ <div class="warning">
584
+ <p><code class="literal">clutter_animation_get_mode</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
585
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
586
+ </div>
587
+ <p>Retrieves the animation mode of <em class="parameter"><code>animation</code></em>
588
+ , as set by
589
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-set-mode" title="clutter_animation_set_mode ()"><code class="function">clutter_animation_set_mode()</code></a>.</p>
590
+ <div class="refsect3">
591
+ <a name="id-1.10.3.11.6.7"></a><h4>Parameters</h4>
592
+ <div class="informaltable"><table width="100%" border="0">
593
+ <colgroup>
594
+ <col width="150px" class="parameters_name">
595
+ <col class="parameters_description">
596
+ <col width="200px" class="parameters_annotations">
597
+ </colgroup>
598
+ <tbody><tr>
599
+ <td class="parameter_name"><p>animation</p></td>
600
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
601
+ <td class="parameter_annotations"> </td>
602
+ </tr></tbody>
603
+ </table></div>
604
+ </div>
605
+ <div class="refsect3">
606
+ <a name="id-1.10.3.11.6.8"></a><h4>Returns</h4>
607
+ <p> the mode for the animation</p>
608
+ <p></p>
609
+ </div>
610
+ <p class="since">Since 1.0</p>
611
+ </div>
612
+ <hr>
613
+ <div class="refsect2">
614
+ <a name="clutter-animation-set-duration"></a><h3>clutter_animation_set_duration ()</h3>
615
+ <pre class="programlisting"><span class="returnvalue">void</span>
616
+ clutter_animation_set_duration (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
617
+ <em class="parameter"><code><span class="type">guint</span> msecs</code></em>);</pre>
618
+ <div class="warning">
619
+ <p><code class="literal">clutter_animation_set_duration</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
620
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
621
+ </div>
622
+ <p>Sets the duration of <em class="parameter"><code>animation</code></em>
623
+ in milliseconds.</p>
624
+ <p>This function will set <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--alpha" title="The “alpha” property"><span class="type">“alpha”</span></a> and
625
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--timeline" title="The “timeline” property"><span class="type">“timeline”</span></a> if needed.</p>
626
+ <div class="refsect3">
627
+ <a name="id-1.10.3.11.7.8"></a><h4>Parameters</h4>
628
+ <div class="informaltable"><table width="100%" border="0">
629
+ <colgroup>
630
+ <col width="150px" class="parameters_name">
631
+ <col class="parameters_description">
632
+ <col width="200px" class="parameters_annotations">
633
+ </colgroup>
634
+ <tbody>
635
+ <tr>
636
+ <td class="parameter_name"><p>animation</p></td>
637
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
638
+ <td class="parameter_annotations"> </td>
639
+ </tr>
640
+ <tr>
641
+ <td class="parameter_name"><p>msecs</p></td>
642
+ <td class="parameter_description"><p>the duration in milliseconds</p></td>
643
+ <td class="parameter_annotations"> </td>
644
+ </tr>
645
+ </tbody>
646
+ </table></div>
647
+ </div>
648
+ <p class="since">Since 1.0</p>
649
+ </div>
650
+ <hr>
651
+ <div class="refsect2">
652
+ <a name="clutter-animation-get-duration"></a><h3>clutter_animation_get_duration ()</h3>
653
+ <pre class="programlisting"><span class="returnvalue">guint</span>
654
+ clutter_animation_get_duration (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
655
+ <div class="warning">
656
+ <p><code class="literal">clutter_animation_get_duration</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
657
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
658
+ </div>
659
+ <p>Retrieves the duration of <em class="parameter"><code>animation</code></em>
660
+ , in milliseconds.</p>
661
+ <div class="refsect3">
662
+ <a name="id-1.10.3.11.8.7"></a><h4>Parameters</h4>
663
+ <div class="informaltable"><table width="100%" border="0">
664
+ <colgroup>
665
+ <col width="150px" class="parameters_name">
666
+ <col class="parameters_description">
667
+ <col width="200px" class="parameters_annotations">
668
+ </colgroup>
669
+ <tbody><tr>
670
+ <td class="parameter_name"><p>animation</p></td>
671
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
672
+ <td class="parameter_annotations"> </td>
673
+ </tr></tbody>
674
+ </table></div>
675
+ </div>
676
+ <div class="refsect3">
677
+ <a name="id-1.10.3.11.8.8"></a><h4>Returns</h4>
678
+ <p> the duration of the animation</p>
679
+ <p></p>
680
+ </div>
681
+ <p class="since">Since 1.0</p>
682
+ </div>
683
+ <hr>
684
+ <div class="refsect2">
685
+ <a name="clutter-animation-set-loop"></a><h3>clutter_animation_set_loop ()</h3>
686
+ <pre class="programlisting"><span class="returnvalue">void</span>
687
+ clutter_animation_set_loop (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
688
+ <em class="parameter"><code><span class="type">gboolean</span> loop</code></em>);</pre>
689
+ <div class="warning">
690
+ <p><code class="literal">clutter_animation_set_loop</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
691
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
692
+ </div>
693
+ <p>Sets whether <em class="parameter"><code>animation</code></em>
694
+ should loop over itself once finished.</p>
695
+ <p>A looping <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will not emit the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a>
696
+ signal when finished.</p>
697
+ <p>This function will set <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--alpha" title="The “alpha” property"><span class="type">“alpha”</span></a> and
698
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--timeline" title="The “timeline” property"><span class="type">“timeline”</span></a> if needed.</p>
699
+ <div class="refsect3">
700
+ <a name="id-1.10.3.11.9.9"></a><h4>Parameters</h4>
701
+ <div class="informaltable"><table width="100%" border="0">
702
+ <colgroup>
703
+ <col width="150px" class="parameters_name">
704
+ <col class="parameters_description">
705
+ <col width="200px" class="parameters_annotations">
706
+ </colgroup>
707
+ <tbody>
708
+ <tr>
709
+ <td class="parameter_name"><p>animation</p></td>
710
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
711
+ <td class="parameter_annotations"> </td>
712
+ </tr>
713
+ <tr>
714
+ <td class="parameter_name"><p>loop</p></td>
715
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the animation should loop</p></td>
716
+ <td class="parameter_annotations"> </td>
717
+ </tr>
718
+ </tbody>
719
+ </table></div>
720
+ </div>
721
+ <p class="since">Since 1.0</p>
722
+ </div>
723
+ <hr>
724
+ <div class="refsect2">
725
+ <a name="clutter-animation-get-loop"></a><h3>clutter_animation_get_loop ()</h3>
726
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
727
+ clutter_animation_get_loop (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
728
+ <div class="warning">
729
+ <p><code class="literal">clutter_animation_get_loop</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
730
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
731
+ </div>
732
+ <p>Retrieves whether <em class="parameter"><code>animation</code></em>
733
+ is looping.</p>
734
+ <div class="refsect3">
735
+ <a name="id-1.10.3.11.10.7"></a><h4>Parameters</h4>
736
+ <div class="informaltable"><table width="100%" border="0">
737
+ <colgroup>
738
+ <col width="150px" class="parameters_name">
739
+ <col class="parameters_description">
740
+ <col width="200px" class="parameters_annotations">
741
+ </colgroup>
742
+ <tbody><tr>
743
+ <td class="parameter_name"><p>animation</p></td>
744
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
745
+ <td class="parameter_annotations"> </td>
746
+ </tr></tbody>
747
+ </table></div>
748
+ </div>
749
+ <div class="refsect3">
750
+ <a name="id-1.10.3.11.10.8"></a><h4>Returns</h4>
751
+ <p> <code class="literal">TRUE</code> if the animation is looping</p>
752
+ <p></p>
753
+ </div>
754
+ <p class="since">Since 1.0</p>
755
+ </div>
756
+ <hr>
757
+ <div class="refsect2">
758
+ <a name="clutter-animation-set-timeline"></a><h3>clutter_animation_set_timeline ()</h3>
759
+ <pre class="programlisting"><span class="returnvalue">void</span>
760
+ clutter_animation_set_timeline (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
761
+ <em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
762
+ <div class="warning">
763
+ <p><code class="literal">clutter_animation_set_timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
764
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
765
+ </div>
766
+ <p>Sets the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by <em class="parameter"><code>animation</code></em>
767
+ .</p>
768
+ <p>This function will take a reference on the passed <em class="parameter"><code>timeline</code></em>
769
+ .</p>
770
+ <div class="refsect3">
771
+ <a name="id-1.10.3.11.11.8"></a><h4>Parameters</h4>
772
+ <div class="informaltable"><table width="100%" border="0">
773
+ <colgroup>
774
+ <col width="150px" class="parameters_name">
775
+ <col class="parameters_description">
776
+ <col width="200px" class="parameters_annotations">
777
+ </colgroup>
778
+ <tbody>
779
+ <tr>
780
+ <td class="parameter_name"><p>animation</p></td>
781
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
782
+ <td class="parameter_annotations"> </td>
783
+ </tr>
784
+ <tr>
785
+ <td class="parameter_name"><p>timeline</p></td>
786
+ <td class="parameter_description"><p> a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>, or <code class="literal">NULL</code> to unset the
787
+ current <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>. </p></td>
788
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
789
+ </tr>
790
+ </tbody>
791
+ </table></div>
792
+ </div>
793
+ <p class="since">Since 1.0</p>
794
+ </div>
795
+ <hr>
796
+ <div class="refsect2">
797
+ <a name="clutter-animation-get-timeline"></a><h3>clutter_animation_get_timeline ()</h3>
798
+ <pre class="programlisting"><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> *
799
+ clutter_animation_get_timeline (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
800
+ <div class="warning">
801
+ <p><code class="literal">clutter_animation_get_timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
802
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
803
+ </div>
804
+ <p>Retrieves the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by <em class="parameter"><code>animation</code></em>
805
+ </p>
806
+ <div class="refsect3">
807
+ <a name="id-1.10.3.11.12.7"></a><h4>Parameters</h4>
808
+ <div class="informaltable"><table width="100%" border="0">
809
+ <colgroup>
810
+ <col width="150px" class="parameters_name">
811
+ <col class="parameters_description">
812
+ <col width="200px" class="parameters_annotations">
813
+ </colgroup>
814
+ <tbody><tr>
815
+ <td class="parameter_name"><p>animation</p></td>
816
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
817
+ <td class="parameter_annotations"> </td>
818
+ </tr></tbody>
819
+ </table></div>
820
+ </div>
821
+ <div class="refsect3">
822
+ <a name="id-1.10.3.11.12.8"></a><h4>Returns</h4>
823
+ <p> the timeline used by the animation. </p>
824
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
825
+ </div>
826
+ <p class="since">Since 1.0</p>
827
+ </div>
828
+ <hr>
829
+ <div class="refsect2">
830
+ <a name="clutter-animation-set-alpha"></a><h3>clutter_animation_set_alpha ()</h3>
831
+ <pre class="programlisting"><span class="returnvalue">void</span>
832
+ clutter_animation_set_alpha (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
833
+ <em class="parameter"><code><a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> *alpha</code></em>);</pre>
834
+ <div class="warning">
835
+ <p><code class="literal">clutter_animation_set_alpha</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
836
+ <p>Use <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-timeline" title="clutter_animation_get_timeline ()"><code class="function">clutter_animation_get_timeline()</code></a> and
837
+ <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> instead.</p>
838
+ </div>
839
+ <p>Sets <em class="parameter"><code>alpha</code></em>
840
+ as the <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> used by <em class="parameter"><code>animation</code></em>
841
+ .</p>
842
+ <p>If <em class="parameter"><code>alpha</code></em>
843
+ is not <code class="literal">NULL</code>, the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will take ownership
844
+ of the <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> instance.</p>
845
+ <div class="refsect3">
846
+ <a name="id-1.10.3.11.13.8"></a><h4>Parameters</h4>
847
+ <div class="informaltable"><table width="100%" border="0">
848
+ <colgroup>
849
+ <col width="150px" class="parameters_name">
850
+ <col class="parameters_description">
851
+ <col width="200px" class="parameters_annotations">
852
+ </colgroup>
853
+ <tbody>
854
+ <tr>
855
+ <td class="parameter_name"><p>animation</p></td>
856
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
857
+ <td class="parameter_annotations"> </td>
858
+ </tr>
859
+ <tr>
860
+ <td class="parameter_name"><p>alpha</p></td>
861
+ <td class="parameter_description"><p>a <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a>, or <code class="literal">NULL</code> to unset the current <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a></p></td>
862
+ <td class="parameter_annotations"> </td>
863
+ </tr>
864
+ </tbody>
865
+ </table></div>
866
+ </div>
867
+ <p class="since">Since 1.0</p>
868
+ </div>
869
+ <hr>
870
+ <div class="refsect2">
871
+ <a name="clutter-animation-get-alpha"></a><h3>clutter_animation_get_alpha ()</h3>
872
+ <pre class="programlisting"><a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="returnvalue">ClutterAlpha</span></a> *
873
+ clutter_animation_get_alpha (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
874
+ <div class="warning">
875
+ <p><code class="literal">clutter_animation_get_alpha</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
876
+ <p>Use <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-get-timeline" title="clutter_animation_get_timeline ()"><code class="function">clutter_animation_get_timeline()</code></a> and
877
+ <a class="link" href="ClutterTimeline.html#clutter-timeline-get-progress-mode" title="clutter_timeline_get_progress_mode ()"><code class="function">clutter_timeline_get_progress_mode()</code></a> instead.</p>
878
+ </div>
879
+ <p>Retrieves the <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> used by <em class="parameter"><code>animation</code></em>
880
+ .</p>
881
+ <div class="refsect3">
882
+ <a name="id-1.10.3.11.14.7"></a><h4>Parameters</h4>
883
+ <div class="informaltable"><table width="100%" border="0">
884
+ <colgroup>
885
+ <col width="150px" class="parameters_name">
886
+ <col class="parameters_description">
887
+ <col width="200px" class="parameters_annotations">
888
+ </colgroup>
889
+ <tbody><tr>
890
+ <td class="parameter_name"><p>animation</p></td>
891
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
892
+ <td class="parameter_annotations"> </td>
893
+ </tr></tbody>
894
+ </table></div>
895
+ </div>
896
+ <div class="refsect3">
897
+ <a name="id-1.10.3.11.14.8"></a><h4>Returns</h4>
898
+ <p> the alpha object used by the animation. </p>
899
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
900
+ </div>
901
+ <p class="since">Since 1.0</p>
902
+ </div>
903
+ <hr>
904
+ <div class="refsect2">
905
+ <a name="clutter-animation-completed"></a><h3>clutter_animation_completed ()</h3>
906
+ <pre class="programlisting"><span class="returnvalue">void</span>
907
+ clutter_animation_completed (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>);</pre>
908
+ <div class="warning">
909
+ <p><code class="literal">clutter_animation_completed</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
910
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
911
+ </div>
912
+ <p>Emits the ::completed signal on <em class="parameter"><code>animation</code></em>
913
+ </p>
914
+ <p>When using this function with a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> created
915
+ by the <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> family of functions, <em class="parameter"><code>animation</code></em>
916
+
917
+ will be unreferenced and it will not be valid anymore,
918
+ unless <code class="function">g_object_ref()</code> was called before calling this function
919
+ or unless a reference was taken inside a handler for the
920
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> signal</p>
921
+ <div class="refsect3">
922
+ <a name="id-1.10.3.11.15.8"></a><h4>Parameters</h4>
923
+ <div class="informaltable"><table width="100%" border="0">
924
+ <colgroup>
925
+ <col width="150px" class="parameters_name">
926
+ <col class="parameters_description">
927
+ <col width="200px" class="parameters_annotations">
928
+ </colgroup>
929
+ <tbody><tr>
930
+ <td class="parameter_name"><p>animation</p></td>
931
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
932
+ <td class="parameter_annotations"> </td>
933
+ </tr></tbody>
934
+ </table></div>
935
+ </div>
936
+ <p class="since">Since 1.0</p>
937
+ </div>
938
+ <hr>
939
+ <div class="refsect2">
940
+ <a name="clutter-animation-bind"></a><h3>clutter_animation_bind ()</h3>
941
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
942
+ clutter_animation_bind (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
943
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
944
+ <em class="parameter"><code>const <span class="type">GValue</span> *final</code></em>);</pre>
945
+ <div class="warning">
946
+ <p><code class="literal">clutter_animation_bind</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
947
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
948
+ </div>
949
+ <p>Adds a single property with name <em class="parameter"><code>property_name</code></em>
950
+ to the
951
+ animation <em class="parameter"><code>animation</code></em>
952
+ . For more information about animations,
953
+ see <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>.</p>
954
+ <p>This method returns the animation primarily to make chained
955
+ calls convenient in language bindings.</p>
956
+ <div class="refsect3">
957
+ <a name="id-1.10.3.11.16.8"></a><h4>Parameters</h4>
958
+ <div class="informaltable"><table width="100%" border="0">
959
+ <colgroup>
960
+ <col width="150px" class="parameters_name">
961
+ <col class="parameters_description">
962
+ <col width="200px" class="parameters_annotations">
963
+ </colgroup>
964
+ <tbody>
965
+ <tr>
966
+ <td class="parameter_name"><p>animation</p></td>
967
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
968
+ <td class="parameter_annotations"> </td>
969
+ </tr>
970
+ <tr>
971
+ <td class="parameter_name"><p>property_name</p></td>
972
+ <td class="parameter_description"><p>the property to control</p></td>
973
+ <td class="parameter_annotations"> </td>
974
+ </tr>
975
+ <tr>
976
+ <td class="parameter_name"><p>final</p></td>
977
+ <td class="parameter_description"><p>The final value of the property</p></td>
978
+ <td class="parameter_annotations"> </td>
979
+ </tr>
980
+ </tbody>
981
+ </table></div>
982
+ </div>
983
+ <div class="refsect3">
984
+ <a name="id-1.10.3.11.16.9"></a><h4>Returns</h4>
985
+ <p> The animation itself. </p>
986
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
987
+ </div>
988
+ <p class="since">Since 1.0</p>
989
+ </div>
990
+ <hr>
991
+ <div class="refsect2">
992
+ <a name="clutter-animation-bind-interval"></a><h3>clutter_animation_bind_interval ()</h3>
993
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
994
+ clutter_animation_bind_interval (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
995
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
996
+ <em class="parameter"><code><a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> *interval</code></em>);</pre>
997
+ <div class="warning">
998
+ <p><code class="literal">clutter_animation_bind_interval</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
999
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1000
+ </div>
1001
+ <p>Binds <em class="parameter"><code>interval</code></em>
1002
+ to the <em class="parameter"><code>property_name</code></em>
1003
+ of the <span class="type">GObject</span>
1004
+ attached to <em class="parameter"><code>animation</code></em>
1005
+ . The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will take
1006
+ ownership of the passed <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>. For more information
1007
+ about animations, see <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>.</p>
1008
+ <p>If you need to update the interval instance use
1009
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-animation-update-interval" title="clutter_animation_update_interval ()"><code class="function">clutter_animation_update_interval()</code></a> instead.</p>
1010
+ <div class="refsect3">
1011
+ <a name="id-1.10.3.11.17.8"></a><h4>Parameters</h4>
1012
+ <div class="informaltable"><table width="100%" border="0">
1013
+ <colgroup>
1014
+ <col width="150px" class="parameters_name">
1015
+ <col class="parameters_description">
1016
+ <col width="200px" class="parameters_annotations">
1017
+ </colgroup>
1018
+ <tbody>
1019
+ <tr>
1020
+ <td class="parameter_name"><p>animation</p></td>
1021
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1022
+ <td class="parameter_annotations"> </td>
1023
+ </tr>
1024
+ <tr>
1025
+ <td class="parameter_name"><p>property_name</p></td>
1026
+ <td class="parameter_description"><p>the property to control</p></td>
1027
+ <td class="parameter_annotations"> </td>
1028
+ </tr>
1029
+ <tr>
1030
+ <td class="parameter_name"><p>interval</p></td>
1031
+ <td class="parameter_description"><p> a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>. </p></td>
1032
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></td>
1033
+ </tr>
1034
+ </tbody>
1035
+ </table></div>
1036
+ </div>
1037
+ <div class="refsect3">
1038
+ <a name="id-1.10.3.11.17.9"></a><h4>Returns</h4>
1039
+ <p> The animation itself. </p>
1040
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1041
+ </div>
1042
+ <p class="since">Since 1.0</p>
1043
+ </div>
1044
+ <hr>
1045
+ <div class="refsect2">
1046
+ <a name="clutter-animation-update"></a><h3>clutter_animation_update ()</h3>
1047
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1048
+ clutter_animation_update (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
1049
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
1050
+ <em class="parameter"><code>const <span class="type">GValue</span> *final</code></em>);</pre>
1051
+ <div class="warning">
1052
+ <p><code class="literal">clutter_animation_update</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1053
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1054
+ </div>
1055
+ <p>Updates the <em class="parameter"><code>final</code></em>
1056
+ value of the interval for <em class="parameter"><code>property_name</code></em>
1057
+ </p>
1058
+ <div class="refsect3">
1059
+ <a name="id-1.10.3.11.18.7"></a><h4>Parameters</h4>
1060
+ <div class="informaltable"><table width="100%" border="0">
1061
+ <colgroup>
1062
+ <col width="150px" class="parameters_name">
1063
+ <col class="parameters_description">
1064
+ <col width="200px" class="parameters_annotations">
1065
+ </colgroup>
1066
+ <tbody>
1067
+ <tr>
1068
+ <td class="parameter_name"><p>animation</p></td>
1069
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1070
+ <td class="parameter_annotations"> </td>
1071
+ </tr>
1072
+ <tr>
1073
+ <td class="parameter_name"><p>property_name</p></td>
1074
+ <td class="parameter_description"><p>name of the property</p></td>
1075
+ <td class="parameter_annotations"> </td>
1076
+ </tr>
1077
+ <tr>
1078
+ <td class="parameter_name"><p>final</p></td>
1079
+ <td class="parameter_description"><p>The final value of the property</p></td>
1080
+ <td class="parameter_annotations"> </td>
1081
+ </tr>
1082
+ </tbody>
1083
+ </table></div>
1084
+ </div>
1085
+ <div class="refsect3">
1086
+ <a name="id-1.10.3.11.18.8"></a><h4>Returns</h4>
1087
+ <p> The animation itself. </p>
1088
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1089
+ </div>
1090
+ <p class="since">Since 1.0</p>
1091
+ </div>
1092
+ <hr>
1093
+ <div class="refsect2">
1094
+ <a name="clutter-animation-update-interval"></a><h3>clutter_animation_update_interval ()</h3>
1095
+ <pre class="programlisting"><span class="returnvalue">void</span>
1096
+ clutter_animation_update_interval (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
1097
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
1098
+ <em class="parameter"><code><a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> *interval</code></em>);</pre>
1099
+ <div class="warning">
1100
+ <p><code class="literal">clutter_animation_update_interval</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1101
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1102
+ </div>
1103
+ <p>Changes the <em class="parameter"><code>interval</code></em>
1104
+ for <em class="parameter"><code>property_name</code></em>
1105
+ . The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>
1106
+ will take ownership of the passed <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>.</p>
1107
+ <div class="refsect3">
1108
+ <a name="id-1.10.3.11.19.7"></a><h4>Parameters</h4>
1109
+ <div class="informaltable"><table width="100%" border="0">
1110
+ <colgroup>
1111
+ <col width="150px" class="parameters_name">
1112
+ <col class="parameters_description">
1113
+ <col width="200px" class="parameters_annotations">
1114
+ </colgroup>
1115
+ <tbody>
1116
+ <tr>
1117
+ <td class="parameter_name"><p>animation</p></td>
1118
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1119
+ <td class="parameter_annotations"> </td>
1120
+ </tr>
1121
+ <tr>
1122
+ <td class="parameter_name"><p>property_name</p></td>
1123
+ <td class="parameter_description"><p>name of the property</p></td>
1124
+ <td class="parameter_annotations"> </td>
1125
+ </tr>
1126
+ <tr>
1127
+ <td class="parameter_name"><p>interval</p></td>
1128
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a></p></td>
1129
+ <td class="parameter_annotations"> </td>
1130
+ </tr>
1131
+ </tbody>
1132
+ </table></div>
1133
+ </div>
1134
+ <p class="since">Since 1.0</p>
1135
+ </div>
1136
+ <hr>
1137
+ <div class="refsect2">
1138
+ <a name="clutter-animation-has-property"></a><h3>clutter_animation_has_property ()</h3>
1139
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1140
+ clutter_animation_has_property (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
1141
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
1142
+ <div class="warning">
1143
+ <p><code class="literal">clutter_animation_has_property</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1144
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1145
+ </div>
1146
+ <p>Checks whether <em class="parameter"><code>animation</code></em>
1147
+ is controlling <em class="parameter"><code>property_name</code></em>
1148
+ .</p>
1149
+ <div class="refsect3">
1150
+ <a name="id-1.10.3.11.20.7"></a><h4>Parameters</h4>
1151
+ <div class="informaltable"><table width="100%" border="0">
1152
+ <colgroup>
1153
+ <col width="150px" class="parameters_name">
1154
+ <col class="parameters_description">
1155
+ <col width="200px" class="parameters_annotations">
1156
+ </colgroup>
1157
+ <tbody>
1158
+ <tr>
1159
+ <td class="parameter_name"><p>animation</p></td>
1160
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1161
+ <td class="parameter_annotations"> </td>
1162
+ </tr>
1163
+ <tr>
1164
+ <td class="parameter_name"><p>property_name</p></td>
1165
+ <td class="parameter_description"><p>name of the property</p></td>
1166
+ <td class="parameter_annotations"> </td>
1167
+ </tr>
1168
+ </tbody>
1169
+ </table></div>
1170
+ </div>
1171
+ <div class="refsect3">
1172
+ <a name="id-1.10.3.11.20.8"></a><h4>Returns</h4>
1173
+ <p> <code class="literal">TRUE</code> if the property is animated by the
1174
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>, <code class="literal">FALSE</code> otherwise</p>
1175
+ <p></p>
1176
+ </div>
1177
+ <p class="since">Since 1.0</p>
1178
+ </div>
1179
+ <hr>
1180
+ <div class="refsect2">
1181
+ <a name="clutter-animation-unbind-property"></a><h3>clutter_animation_unbind_property ()</h3>
1182
+ <pre class="programlisting"><span class="returnvalue">void</span>
1183
+ clutter_animation_unbind_property (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
1184
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
1185
+ <div class="warning">
1186
+ <p><code class="literal">clutter_animation_unbind_property</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1187
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1188
+ </div>
1189
+ <p>Removes <em class="parameter"><code>property_name</code></em>
1190
+ from the list of animated properties.</p>
1191
+ <div class="refsect3">
1192
+ <a name="id-1.10.3.11.21.7"></a><h4>Parameters</h4>
1193
+ <div class="informaltable"><table width="100%" border="0">
1194
+ <colgroup>
1195
+ <col width="150px" class="parameters_name">
1196
+ <col class="parameters_description">
1197
+ <col width="200px" class="parameters_annotations">
1198
+ </colgroup>
1199
+ <tbody>
1200
+ <tr>
1201
+ <td class="parameter_name"><p>animation</p></td>
1202
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1203
+ <td class="parameter_annotations"> </td>
1204
+ </tr>
1205
+ <tr>
1206
+ <td class="parameter_name"><p>property_name</p></td>
1207
+ <td class="parameter_description"><p>name of the property</p></td>
1208
+ <td class="parameter_annotations"> </td>
1209
+ </tr>
1210
+ </tbody>
1211
+ </table></div>
1212
+ </div>
1213
+ <p class="since">Since 1.0</p>
1214
+ </div>
1215
+ <hr>
1216
+ <div class="refsect2">
1217
+ <a name="clutter-animation-get-interval"></a><h3>clutter_animation_get_interval ()</h3>
1218
+ <pre class="programlisting"><a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="returnvalue">ClutterInterval</span></a> *
1219
+ clutter_animation_get_interval (<em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
1220
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
1221
+ <div class="warning">
1222
+ <p><code class="literal">clutter_animation_get_interval</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1223
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
1224
+ </div>
1225
+ <p>Retrieves the <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> associated to <em class="parameter"><code>property_name</code></em>
1226
+
1227
+ inside <em class="parameter"><code>animation</code></em>
1228
+ .</p>
1229
+ <div class="refsect3">
1230
+ <a name="id-1.10.3.11.22.7"></a><h4>Parameters</h4>
1231
+ <div class="informaltable"><table width="100%" border="0">
1232
+ <colgroup>
1233
+ <col width="150px" class="parameters_name">
1234
+ <col class="parameters_description">
1235
+ <col width="200px" class="parameters_annotations">
1236
+ </colgroup>
1237
+ <tbody>
1238
+ <tr>
1239
+ <td class="parameter_name"><p>animation</p></td>
1240
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a></p></td>
1241
+ <td class="parameter_annotations"> </td>
1242
+ </tr>
1243
+ <tr>
1244
+ <td class="parameter_name"><p>property_name</p></td>
1245
+ <td class="parameter_description"><p>name of the property</p></td>
1246
+ <td class="parameter_annotations"> </td>
1247
+ </tr>
1248
+ </tbody>
1249
+ </table></div>
1250
+ </div>
1251
+ <div class="refsect3">
1252
+ <a name="id-1.10.3.11.22.8"></a><h4>Returns</h4>
1253
+ <p> a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> or <code class="literal">NULL</code> if no
1254
+ property with the same name was found. The returned interval is
1255
+ owned by the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> and should not be unreferenced. </p>
1256
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1257
+ </div>
1258
+ <p class="since">Since 1.0</p>
1259
+ </div>
1260
+ <hr>
1261
+ <div class="refsect2">
1262
+ <a name="clutter-actor-animate"></a><h3>clutter_actor_animate ()</h3>
1263
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1264
+ clutter_actor_animate (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1265
+ <em class="parameter"><code><span class="type">gulong</span> mode</code></em>,
1266
+ <em class="parameter"><code><span class="type">guint</span> duration</code></em>,
1267
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
1268
+ <em class="parameter"><code>...</code></em>);</pre>
1269
+ <div class="warning">
1270
+ <p><code class="literal">clutter_actor_animate</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1271
+ <p>Use the implicit transition for animatable properties
1272
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead.</p>
1273
+ </div>
1274
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1275
+ between the current
1276
+ value for each property and a new final value. The animation has a
1277
+ definite duration and a speed given by the <em class="parameter"><code>mode</code></em>
1278
+ .</p>
1279
+ <p>For example, this:</p>
1280
+ <div class="informalexample">
1281
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1282
+ <tbody>
1283
+ <tr>
1284
+ <td class="listing_lines" align="right"><pre>1
1285
+ 2
1286
+ 3
1287
+ 4</pre></td>
1288
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">rectangle</span><span class="symbol">,</span><span class="normal"> CLUTTER_LINEAR</span><span class="symbol">,</span><span class="normal"> </span><span class="number">250</span><span class="symbol">,</span>
1289
+ <span class="normal"> </span><span class="string">"width"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1290
+ <span class="normal"> </span><span class="string">"height"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1291
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1292
+ </tr>
1293
+ </tbody>
1294
+ </table>
1295
+ </div>
1296
+
1297
+ <p></p>
1298
+ <p>will make width and height properties of the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> "rectangle"
1299
+ grow linearly between the current value and 100 pixels, in 250 milliseconds.</p>
1300
+ <p>The animation <em class="parameter"><code>mode</code></em>
1301
+ is a logical id, either from the <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a>
1302
+ enumeration of from <a class="link" href="ClutterAlpha.html#clutter-alpha-register-func" title="clutter_alpha_register_func ()"><code class="function">clutter_alpha_register_func()</code></a>.</p>
1303
+ <p>All the properties specified will be animated between the current value
1304
+ and the final value. If a property should be set at the beginning of
1305
+ the animation but not updated during the animation, it should be prefixed
1306
+ by the "fixed::" string, for instance:</p>
1307
+ <div class="informalexample">
1308
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1309
+ <tbody>
1310
+ <tr>
1311
+ <td class="listing_lines" align="right"><pre>1
1312
+ 2
1313
+ 3
1314
+ 4</pre></td>
1315
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_SINE</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100</span><span class="symbol">,</span>
1316
+ <span class="normal"> </span><span class="string">"rotation-angle-z"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">360.0</span><span class="symbol">,</span>
1317
+ <span class="normal"> </span><span class="string">"fixed::rotation-center-z"</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">center</span><span class="symbol">,</span>
1318
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1319
+ </tr>
1320
+ </tbody>
1321
+ </table>
1322
+ </div>
1323
+
1324
+ <p></p>
1325
+ <p>Will animate the "rotation-angle-z" property between the current value
1326
+ and 360 degrees, and set the "rotation-center-z" property to the fixed
1327
+ value of the <a class="link" href="clutter-Base-geometric-types.html#ClutterVertex" title="struct ClutterVertex"><span class="type">ClutterVertex</span></a> "center".</p>
1328
+ <p>This function will implicitly create a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object which
1329
+ will be assigned to the <em class="parameter"><code>actor</code></em>
1330
+ and will be returned to the developer
1331
+ to control the animation or to know when the animation has been
1332
+ completed.</p>
1333
+ <p>If a name argument starts with "signal::", "signal-after::",
1334
+ "signal-swapped::" or "signal-swapped-after::" the two following arguments
1335
+ are used as callback function and data for a signal handler installed on
1336
+ the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object for the specified signal name, for instance:</p>
1337
+ <div class="informalexample">
1338
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1339
+ <tbody>
1340
+ <tr>
1341
+ <td class="listing_lines" align="right"><pre>1
1342
+ 2
1343
+ 3
1344
+ 4
1345
+ 5
1346
+ 6
1347
+ 7
1348
+ 8
1349
+ 9
1350
+ 10
1351
+ 11</pre></td>
1352
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
1353
+ <span class="function">on_animation_completed</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">ClutterAnimation</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">animation</span><span class="symbol">,</span>
1354
+ <span class="normal"> </span><span class="usertype">ClutterActor</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">actor</span><span class="symbol">)</span>
1355
+ <span class="cbracket">{</span>
1356
+ <span class="normal"> </span><span class="function"><a href="ClutterActor.html#clutter-actor-hide">clutter_actor_hide</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">);</span>
1357
+ <span class="cbracket">}</span>
1358
+
1359
+ <span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100</span><span class="symbol">,</span>
1360
+ <span class="normal"> </span><span class="string">"opacity"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">,</span>
1361
+ <span class="normal"> </span><span class="string">"signal::completed"</span><span class="symbol">,</span><span class="normal"> on_animation_completed</span><span class="symbol">,</span><span class="normal"> actor</span><span class="symbol">,</span>
1362
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1363
+ </tr>
1364
+ </tbody>
1365
+ </table>
1366
+ </div>
1367
+
1368
+ <p></p>
1369
+ <p>or, to automatically destroy an actor at the end of the animation:</p>
1370
+ <div class="informalexample">
1371
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1372
+ <tbody>
1373
+ <tr>
1374
+ <td class="listing_lines" align="right"><pre>1
1375
+ 2
1376
+ 3
1377
+ 4
1378
+ 5
1379
+ 6</pre></td>
1380
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100</span><span class="symbol">,</span>
1381
+ <span class="normal"> </span><span class="string">"opacity"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">,</span>
1382
+ <span class="normal"> </span><span class="string">"signal-swapped-after::completed"</span><span class="symbol">,</span>
1383
+ <span class="normal"> <a href="ClutterActor.html#clutter-actor-destroy">clutter_actor_destroy</a></span><span class="symbol">,</span>
1384
+ <span class="normal"> actor</span><span class="symbol">,</span>
1385
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1386
+ </tr>
1387
+ </tbody>
1388
+ </table>
1389
+ </div>
1390
+
1391
+ <p></p>
1392
+ <p>The "signal::" modifier is the equivalent of using <code class="function">g_signal_connect()</code>;
1393
+ the "signal-after::" modifier is the equivalent of using
1394
+ <code class="function">g_signal_connect_after()</code> or <code class="function">g_signal_connect_data()</code> with the
1395
+ <code class="literal">G_CONNECT_AFTER</code>; the "signal-swapped::" modifier is the equivalent
1396
+ of using <code class="function">g_signal_connect_swapped()</code> or <code class="function">g_signal_connect_data()</code> with the
1397
+ <code class="literal">G_CONNECT_SWAPPED</code> flah; finally, the "signal-swapped-after::" modifier
1398
+ is the equivalent of using <code class="function">g_signal_connect_data()</code> with both the
1399
+ <code class="literal">G_CONNECT_AFTER</code> and <code class="literal">G_CONNECT_SWAPPED</code> flags. The <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>
1400
+ function will not keep track of multiple connections to the same signal,
1401
+ so it is your responsability to avoid them when calling
1402
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> multiple times on the same actor.</p>
1403
+ <p>Calling this function on an actor that is already being animated
1404
+ will cause the current animation to change with the new final values,
1405
+ the new easing mode and the new duration - that is, this code:</p>
1406
+ <div class="informalexample">
1407
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1408
+ <tbody>
1409
+ <tr>
1410
+ <td class="listing_lines" align="right"><pre>1
1411
+ 2
1412
+ 3
1413
+ 4
1414
+ 5
1415
+ 6
1416
+ 7
1417
+ 8
1418
+ 9</pre></td>
1419
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_LINEAR</span><span class="symbol">,</span><span class="normal"> </span><span class="number">250</span><span class="symbol">,</span>
1420
+ <span class="normal"> </span><span class="string">"width"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1421
+ <span class="normal"> </span><span class="string">"height"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1422
+ <span class="normal"> NULL</span><span class="symbol">);</span>
1423
+ <span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">500</span><span class="symbol">,</span>
1424
+ <span class="normal"> </span><span class="string">"x"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1425
+ <span class="normal"> </span><span class="string">"y"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1426
+ <span class="normal"> </span><span class="string">"width"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">200.0</span><span class="symbol">,</span>
1427
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1428
+ </tr>
1429
+ </tbody>
1430
+ </table>
1431
+ </div>
1432
+
1433
+ <p></p>
1434
+ <p>is the equivalent of:</p>
1435
+ <div class="informalexample">
1436
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1437
+ <tbody>
1438
+ <tr>
1439
+ <td class="listing_lines" align="right"><pre>1
1440
+ 2
1441
+ 3
1442
+ 4
1443
+ 5
1444
+ 6</pre></td>
1445
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">500</span><span class="symbol">,</span>
1446
+ <span class="normal"> </span><span class="string">"x"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1447
+ <span class="normal"> </span><span class="string">"y"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1448
+ <span class="normal"> </span><span class="string">"width"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">200.0</span><span class="symbol">,</span>
1449
+ <span class="normal"> </span><span class="string">"height"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1450
+ <span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
1451
+ </tr>
1452
+ </tbody>
1453
+ </table>
1454
+ </div>
1455
+
1456
+ <p></p>
1457
+ <p>Unless the animation is looping, the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> created by
1458
+ <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> will become invalid as soon as it is
1459
+ complete.</p>
1460
+ <p>Since the created <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> instance attached to <em class="parameter"><code>actor</code></em>
1461
+
1462
+ is guaranteed to be valid throughout the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a>
1463
+ signal emission chain, you will not be able to create a new animation
1464
+ using <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> on the same <em class="parameter"><code>actor</code></em>
1465
+ from within the
1466
+ <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> signal handler unless you use
1467
+ <code class="function">g_signal_connect_after()</code> to connect the callback function, for instance:</p>
1468
+ <div class="informalexample">
1469
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1470
+ <tbody>
1471
+ <tr>
1472
+ <td class="listing_lines" align="right"><pre>1
1473
+ 2
1474
+ 3
1475
+ 4
1476
+ 5
1477
+ 6
1478
+ 7
1479
+ 8
1480
+ 9
1481
+ 10
1482
+ 11
1483
+ 12
1484
+ 13
1485
+ 14
1486
+ 15
1487
+ 16
1488
+ 17
1489
+ 18
1490
+ 19</pre></td>
1491
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
1492
+ <span class="function">on_animation_completed</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">ClutterAnimation</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">animation</span><span class="symbol">,</span>
1493
+ <span class="normal"> </span><span class="usertype">ClutterActor</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">actor</span><span class="symbol">)</span>
1494
+ <span class="cbracket">{</span>
1495
+ <span class="normal"> </span><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_OUT_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">250</span><span class="symbol">,</span>
1496
+ <span class="normal"> </span><span class="string">"x"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">500.0</span><span class="symbol">,</span>
1497
+ <span class="normal"> </span><span class="string">"y"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">500.0</span><span class="symbol">,</span>
1498
+ <span class="normal"> NULL</span><span class="symbol">);</span>
1499
+ <span class="cbracket">}</span>
1500
+
1501
+ <span class="normal"> </span><span class="symbol">...</span>
1502
+ <span class="normal"> animation </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="clutter-Implicit-Animations.html#clutter-actor-animate">clutter_actor_animate</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> CLUTTER_EASE_IN_CUBIC</span><span class="symbol">,</span><span class="normal"> </span><span class="number">250</span><span class="symbol">,</span>
1503
+ <span class="normal"> </span><span class="string">"x"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1504
+ <span class="normal"> </span><span class="string">"y"</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100.0</span><span class="symbol">,</span>
1505
+ <span class="normal"> NULL</span><span class="symbol">);</span>
1506
+ <span class="normal"> </span><span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">animation</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"completed"</span><span class="symbol">,</span>
1507
+ <span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">on_animation_completed</span><span class="symbol">),</span>
1508
+ <span class="normal"> actor</span><span class="symbol">);</span>
1509
+ <span class="normal"> </span><span class="symbol">...</span></pre></td>
1510
+ </tr>
1511
+ </tbody>
1512
+ </table>
1513
+ </div>
1514
+
1515
+ <p></p>
1516
+ <div class="refsect3">
1517
+ <a name="id-1.10.3.11.23.34"></a><h4>Parameters</h4>
1518
+ <div class="informaltable"><table width="100%" border="0">
1519
+ <colgroup>
1520
+ <col width="150px" class="parameters_name">
1521
+ <col class="parameters_description">
1522
+ <col width="200px" class="parameters_annotations">
1523
+ </colgroup>
1524
+ <tbody>
1525
+ <tr>
1526
+ <td class="parameter_name"><p>actor</p></td>
1527
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1528
+ <td class="parameter_annotations"> </td>
1529
+ </tr>
1530
+ <tr>
1531
+ <td class="parameter_name"><p>mode</p></td>
1532
+ <td class="parameter_description"><p>an animation mode logical id</p></td>
1533
+ <td class="parameter_annotations"> </td>
1534
+ </tr>
1535
+ <tr>
1536
+ <td class="parameter_name"><p>duration</p></td>
1537
+ <td class="parameter_description"><p>duration of the animation, in milliseconds</p></td>
1538
+ <td class="parameter_annotations"> </td>
1539
+ </tr>
1540
+ <tr>
1541
+ <td class="parameter_name"><p>first_property_name</p></td>
1542
+ <td class="parameter_description"><p>the name of a property</p></td>
1543
+ <td class="parameter_annotations"> </td>
1544
+ </tr>
1545
+ <tr>
1546
+ <td class="parameter_name"><p>...</p></td>
1547
+ <td class="parameter_description"><p>a <code class="literal">NULL</code> terminated list of property names and
1548
+ property values</p></td>
1549
+ <td class="parameter_annotations"> </td>
1550
+ </tr>
1551
+ </tbody>
1552
+ </table></div>
1553
+ </div>
1554
+ <div class="refsect3">
1555
+ <a name="id-1.10.3.11.23.35"></a><h4>Returns</h4>
1556
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is
1557
+ owned by the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with
1558
+ <code class="function">g_object_unref()</code>. </p>
1559
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1560
+ </div>
1561
+ <p class="since">Since 1.0</p>
1562
+ </div>
1563
+ <hr>
1564
+ <div class="refsect2">
1565
+ <a name="clutter-actor-animate-with-timeline"></a><h3>clutter_actor_animate_with_timeline ()</h3>
1566
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1567
+ clutter_actor_animate_with_timeline (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1568
+ <em class="parameter"><code><span class="type">gulong</span> mode</code></em>,
1569
+ <em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
1570
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
1571
+ <em class="parameter"><code>...</code></em>);</pre>
1572
+ <div class="warning">
1573
+ <p><code class="literal">clutter_actor_animate_with_timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1574
+ <p>Use the implicit transition for animatable properties
1575
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead.</p>
1576
+ </div>
1577
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1578
+ between the current
1579
+ value for each property and a new final value. The animation has a
1580
+ definite duration given by <em class="parameter"><code>timeline</code></em>
1581
+ and a speed given by the <em class="parameter"><code>mode</code></em>
1582
+ .</p>
1583
+ <p>See <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> for further details.</p>
1584
+ <p>This function is useful if you want to use an existing timeline
1585
+ to animate <em class="parameter"><code>actor</code></em>
1586
+ .</p>
1587
+ <div class="refsect3">
1588
+ <a name="id-1.10.3.11.24.9"></a><h4>Parameters</h4>
1589
+ <div class="informaltable"><table width="100%" border="0">
1590
+ <colgroup>
1591
+ <col width="150px" class="parameters_name">
1592
+ <col class="parameters_description">
1593
+ <col width="200px" class="parameters_annotations">
1594
+ </colgroup>
1595
+ <tbody>
1596
+ <tr>
1597
+ <td class="parameter_name"><p>actor</p></td>
1598
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1599
+ <td class="parameter_annotations"> </td>
1600
+ </tr>
1601
+ <tr>
1602
+ <td class="parameter_name"><p>mode</p></td>
1603
+ <td class="parameter_description"><p>an animation mode logical id</p></td>
1604
+ <td class="parameter_annotations"> </td>
1605
+ </tr>
1606
+ <tr>
1607
+ <td class="parameter_name"><p>timeline</p></td>
1608
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a></p></td>
1609
+ <td class="parameter_annotations"> </td>
1610
+ </tr>
1611
+ <tr>
1612
+ <td class="parameter_name"><p>first_property_name</p></td>
1613
+ <td class="parameter_description"><p>the name of a property</p></td>
1614
+ <td class="parameter_annotations"> </td>
1615
+ </tr>
1616
+ <tr>
1617
+ <td class="parameter_name"><p>...</p></td>
1618
+ <td class="parameter_description"><p>a <code class="literal">NULL</code> terminated list of property names and
1619
+ property values</p></td>
1620
+ <td class="parameter_annotations"> </td>
1621
+ </tr>
1622
+ </tbody>
1623
+ </table></div>
1624
+ </div>
1625
+ <div class="refsect3">
1626
+ <a name="id-1.10.3.11.24.10"></a><h4>Returns</h4>
1627
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is
1628
+ owned by the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with
1629
+ <code class="function">g_object_unref()</code>. </p>
1630
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1631
+ </div>
1632
+ <p class="since">Since 1.0</p>
1633
+ </div>
1634
+ <hr>
1635
+ <div class="refsect2">
1636
+ <a name="clutter-actor-animate-with-alpha"></a><h3>clutter_actor_animate_with_alpha ()</h3>
1637
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1638
+ clutter_actor_animate_with_alpha (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1639
+ <em class="parameter"><code><a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> *alpha</code></em>,
1640
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
1641
+ <em class="parameter"><code>...</code></em>);</pre>
1642
+ <div class="warning">
1643
+ <p><code class="literal">clutter_actor_animate_with_alpha</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
1644
+ <p>Use <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timeline" title="clutter_actor_animate_with_timeline ()"><code class="function">clutter_actor_animate_with_timeline()</code></a> instead</p>
1645
+ </div>
1646
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1647
+ between the current
1648
+ value for each property and a new final value. The animation has a
1649
+ definite behaviour given by the passed <em class="parameter"><code>alpha</code></em>
1650
+ .</p>
1651
+ <p>See <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> for further details.</p>
1652
+ <p>This function is useful if you want to use an existing <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a>
1653
+ to animate <em class="parameter"><code>actor</code></em>
1654
+ .</p>
1655
+ <div class="refsect3">
1656
+ <a name="id-1.10.3.11.25.9"></a><h4>Parameters</h4>
1657
+ <div class="informaltable"><table width="100%" border="0">
1658
+ <colgroup>
1659
+ <col width="150px" class="parameters_name">
1660
+ <col class="parameters_description">
1661
+ <col width="200px" class="parameters_annotations">
1662
+ </colgroup>
1663
+ <tbody>
1664
+ <tr>
1665
+ <td class="parameter_name"><p>actor</p></td>
1666
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1667
+ <td class="parameter_annotations"> </td>
1668
+ </tr>
1669
+ <tr>
1670
+ <td class="parameter_name"><p>alpha</p></td>
1671
+ <td class="parameter_description"><p>a <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a></p></td>
1672
+ <td class="parameter_annotations"> </td>
1673
+ </tr>
1674
+ <tr>
1675
+ <td class="parameter_name"><p>first_property_name</p></td>
1676
+ <td class="parameter_description"><p>the name of a property</p></td>
1677
+ <td class="parameter_annotations"> </td>
1678
+ </tr>
1679
+ <tr>
1680
+ <td class="parameter_name"><p>...</p></td>
1681
+ <td class="parameter_description"><p>a <code class="literal">NULL</code> terminated list of property names and
1682
+ property values</p></td>
1683
+ <td class="parameter_annotations"> </td>
1684
+ </tr>
1685
+ </tbody>
1686
+ </table></div>
1687
+ </div>
1688
+ <div class="refsect3">
1689
+ <a name="id-1.10.3.11.25.10"></a><h4>Returns</h4>
1690
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is owned by the
1691
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with <code class="function">g_object_unref()</code>. </p>
1692
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1693
+ </div>
1694
+ <p class="since">Since 1.0</p>
1695
+ </div>
1696
+ <hr>
1697
+ <div class="refsect2">
1698
+ <a name="clutter-actor-animatev"></a><h3>clutter_actor_animatev ()</h3>
1699
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1700
+ clutter_actor_animatev (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1701
+ <em class="parameter"><code><span class="type">gulong</span> mode</code></em>,
1702
+ <em class="parameter"><code><span class="type">guint</span> duration</code></em>,
1703
+ <em class="parameter"><code><span class="type">gint</span> n_properties</code></em>,
1704
+ <em class="parameter"><code>const <span class="type">gchar</span> * const properties[]</code></em>,
1705
+ <em class="parameter"><code>const <span class="type">GValue</span> *values</code></em>);</pre>
1706
+ <div class="warning">
1707
+ <p><code class="literal">clutter_actor_animatev</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1708
+ <p>Use the implicit transition for animatable properties
1709
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead.</p>
1710
+ </div>
1711
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1712
+ between the current
1713
+ value for each property and a new final value. The animation has a
1714
+ definite duration and a speed given by the <em class="parameter"><code>mode</code></em>
1715
+ .</p>
1716
+ <p>This is the vector-based variant of <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>, useful
1717
+ for language bindings.</p>
1718
+ <p>Unlike <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>, this function will not
1719
+ allow you to specify "signal::" names and callbacks.</p>
1720
+ <div class="refsect3">
1721
+ <a name="id-1.10.3.11.26.9"></a><h4>Parameters</h4>
1722
+ <div class="informaltable"><table width="100%" border="0">
1723
+ <colgroup>
1724
+ <col width="150px" class="parameters_name">
1725
+ <col class="parameters_description">
1726
+ <col width="200px" class="parameters_annotations">
1727
+ </colgroup>
1728
+ <tbody>
1729
+ <tr>
1730
+ <td class="parameter_name"><p>actor</p></td>
1731
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1732
+ <td class="parameter_annotations"> </td>
1733
+ </tr>
1734
+ <tr>
1735
+ <td class="parameter_name"><p>mode</p></td>
1736
+ <td class="parameter_description"><p>an animation mode logical id</p></td>
1737
+ <td class="parameter_annotations"> </td>
1738
+ </tr>
1739
+ <tr>
1740
+ <td class="parameter_name"><p>duration</p></td>
1741
+ <td class="parameter_description"><p>duration of the animation, in milliseconds</p></td>
1742
+ <td class="parameter_annotations"> </td>
1743
+ </tr>
1744
+ <tr>
1745
+ <td class="parameter_name"><p>n_properties</p></td>
1746
+ <td class="parameter_description"><p>number of property names and values</p></td>
1747
+ <td class="parameter_annotations"> </td>
1748
+ </tr>
1749
+ <tr>
1750
+ <td class="parameter_name"><p>properties</p></td>
1751
+ <td class="parameter_description"><p> a vector
1752
+ containing the property names to set. </p></td>
1753
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></td>
1754
+ </tr>
1755
+ <tr>
1756
+ <td class="parameter_name"><p>values</p></td>
1757
+ <td class="parameter_description"><p> a vector containing the
1758
+ property values to set. </p></td>
1759
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties]</span></td>
1760
+ </tr>
1761
+ </tbody>
1762
+ </table></div>
1763
+ </div>
1764
+ <div class="refsect3">
1765
+ <a name="id-1.10.3.11.26.10"></a><h4>Returns</h4>
1766
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is
1767
+ owned by the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with
1768
+ <code class="function">g_object_unref()</code>. </p>
1769
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1770
+ </div>
1771
+ <p class="since">Since 1.0</p>
1772
+ </div>
1773
+ <hr>
1774
+ <div class="refsect2">
1775
+ <a name="clutter-actor-animate-with-timelinev"></a><h3>clutter_actor_animate_with_timelinev ()</h3>
1776
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1777
+ clutter_actor_animate_with_timelinev (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1778
+ <em class="parameter"><code><span class="type">gulong</span> mode</code></em>,
1779
+ <em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>,
1780
+ <em class="parameter"><code><span class="type">gint</span> n_properties</code></em>,
1781
+ <em class="parameter"><code>const <span class="type">gchar</span> * const properties[]</code></em>,
1782
+ <em class="parameter"><code>const <span class="type">GValue</span> *values</code></em>);</pre>
1783
+ <div class="warning">
1784
+ <p><code class="literal">clutter_actor_animate_with_timelinev</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1785
+ <p>Use the implicit transition for animatable properties
1786
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead.</p>
1787
+ </div>
1788
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1789
+ between the current
1790
+ value for each property and a new final value. The animation has a
1791
+ definite duration given by <em class="parameter"><code>timeline</code></em>
1792
+ and a speed given by the <em class="parameter"><code>mode</code></em>
1793
+ .</p>
1794
+ <p>See <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> for further details.</p>
1795
+ <p>This function is useful if you want to use an existing timeline
1796
+ to animate <em class="parameter"><code>actor</code></em>
1797
+ .</p>
1798
+ <p>This is the vector-based variant of <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timeline" title="clutter_actor_animate_with_timeline ()"><code class="function">clutter_actor_animate_with_timeline()</code></a>,
1799
+ useful for language bindings.</p>
1800
+ <p>Unlike <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timeline" title="clutter_actor_animate_with_timeline ()"><code class="function">clutter_actor_animate_with_timeline()</code></a>, this function
1801
+ will not allow you to specify "signal::" names and callbacks.</p>
1802
+ <div class="refsect3">
1803
+ <a name="id-1.10.3.11.27.11"></a><h4>Parameters</h4>
1804
+ <div class="informaltable"><table width="100%" border="0">
1805
+ <colgroup>
1806
+ <col width="150px" class="parameters_name">
1807
+ <col class="parameters_description">
1808
+ <col width="200px" class="parameters_annotations">
1809
+ </colgroup>
1810
+ <tbody>
1811
+ <tr>
1812
+ <td class="parameter_name"><p>actor</p></td>
1813
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1814
+ <td class="parameter_annotations"> </td>
1815
+ </tr>
1816
+ <tr>
1817
+ <td class="parameter_name"><p>mode</p></td>
1818
+ <td class="parameter_description"><p>an animation mode logical id</p></td>
1819
+ <td class="parameter_annotations"> </td>
1820
+ </tr>
1821
+ <tr>
1822
+ <td class="parameter_name"><p>timeline</p></td>
1823
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a></p></td>
1824
+ <td class="parameter_annotations"> </td>
1825
+ </tr>
1826
+ <tr>
1827
+ <td class="parameter_name"><p>n_properties</p></td>
1828
+ <td class="parameter_description"><p>number of property names and values</p></td>
1829
+ <td class="parameter_annotations"> </td>
1830
+ </tr>
1831
+ <tr>
1832
+ <td class="parameter_name"><p>properties</p></td>
1833
+ <td class="parameter_description"><p> a vector
1834
+ containing the property names to set. </p></td>
1835
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></td>
1836
+ </tr>
1837
+ <tr>
1838
+ <td class="parameter_name"><p>values</p></td>
1839
+ <td class="parameter_description"><p> a vector containing the
1840
+ property values to set. </p></td>
1841
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties]</span></td>
1842
+ </tr>
1843
+ </tbody>
1844
+ </table></div>
1845
+ </div>
1846
+ <div class="refsect3">
1847
+ <a name="id-1.10.3.11.27.12"></a><h4>Returns</h4>
1848
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is
1849
+ owned by the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with
1850
+ <code class="function">g_object_unref()</code>. </p>
1851
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1852
+ </div>
1853
+ <p class="since">Since 1.0</p>
1854
+ </div>
1855
+ <hr>
1856
+ <div class="refsect2">
1857
+ <a name="clutter-actor-animate-with-alphav"></a><h3>clutter_actor_animate_with_alphav ()</h3>
1858
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1859
+ clutter_actor_animate_with_alphav (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>,
1860
+ <em class="parameter"><code><a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> *alpha</code></em>,
1861
+ <em class="parameter"><code><span class="type">gint</span> n_properties</code></em>,
1862
+ <em class="parameter"><code>const <span class="type">gchar</span> * const properties[]</code></em>,
1863
+ <em class="parameter"><code>const <span class="type">GValue</span> *values</code></em>);</pre>
1864
+ <div class="warning">
1865
+ <p><code class="literal">clutter_actor_animate_with_alphav</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
1866
+ <p>Use <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-timelinev" title="clutter_actor_animate_with_timelinev ()"><code class="function">clutter_actor_animate_with_timelinev()</code></a> instead</p>
1867
+ </div>
1868
+ <p>Animates the given list of properties of <em class="parameter"><code>actor</code></em>
1869
+ between the current
1870
+ value for each property and a new final value. The animation has a
1871
+ definite behaviour given by the passed <em class="parameter"><code>alpha</code></em>
1872
+ .</p>
1873
+ <p>See <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a> for further details.</p>
1874
+ <p>This function is useful if you want to use an existing <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a>
1875
+ to animate <em class="parameter"><code>actor</code></em>
1876
+ .</p>
1877
+ <p>This is the vector-based variant of <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-alpha" title="clutter_actor_animate_with_alpha ()"><code class="function">clutter_actor_animate_with_alpha()</code></a>,
1878
+ useful for language bindings.</p>
1879
+ <p>Unlike <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate-with-alpha" title="clutter_actor_animate_with_alpha ()"><code class="function">clutter_actor_animate_with_alpha()</code></a>, this function will
1880
+ not allow you to specify "signal::" names and callbacks.</p>
1881
+ <div class="refsect3">
1882
+ <a name="id-1.10.3.11.28.11"></a><h4>Parameters</h4>
1883
+ <div class="informaltable"><table width="100%" border="0">
1884
+ <colgroup>
1885
+ <col width="150px" class="parameters_name">
1886
+ <col class="parameters_description">
1887
+ <col width="200px" class="parameters_annotations">
1888
+ </colgroup>
1889
+ <tbody>
1890
+ <tr>
1891
+ <td class="parameter_name"><p>actor</p></td>
1892
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1893
+ <td class="parameter_annotations"> </td>
1894
+ </tr>
1895
+ <tr>
1896
+ <td class="parameter_name"><p>alpha</p></td>
1897
+ <td class="parameter_description"><p>a <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a></p></td>
1898
+ <td class="parameter_annotations"> </td>
1899
+ </tr>
1900
+ <tr>
1901
+ <td class="parameter_name"><p>n_properties</p></td>
1902
+ <td class="parameter_description"><p>number of property names and values</p></td>
1903
+ <td class="parameter_annotations"> </td>
1904
+ </tr>
1905
+ <tr>
1906
+ <td class="parameter_name"><p>properties</p></td>
1907
+ <td class="parameter_description"><p> a vector
1908
+ containing the property names to set. </p></td>
1909
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></td>
1910
+ </tr>
1911
+ <tr>
1912
+ <td class="parameter_name"><p>values</p></td>
1913
+ <td class="parameter_description"><p> a vector containing the
1914
+ property values to set. </p></td>
1915
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties]</span></td>
1916
+ </tr>
1917
+ </tbody>
1918
+ </table></div>
1919
+ </div>
1920
+ <div class="refsect3">
1921
+ <a name="id-1.10.3.11.28.12"></a><h4>Returns</h4>
1922
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> object. The object is owned by the
1923
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> and should not be unreferenced with <code class="function">g_object_unref()</code>. </p>
1924
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1925
+ </div>
1926
+ <p class="since">Since 1.0</p>
1927
+ </div>
1928
+ <hr>
1929
+ <div class="refsect2">
1930
+ <a name="clutter-actor-get-animation"></a><h3>clutter_actor_get_animation ()</h3>
1931
+ <pre class="programlisting"><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="returnvalue">ClutterAnimation</span></a> *
1932
+ clutter_actor_get_animation (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>);</pre>
1933
+ <div class="warning">
1934
+ <p><code class="literal">clutter_actor_get_animation</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1935
+ <p>Use the implicit transition for animatable properties
1936
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead, and <a class="link" href="ClutterActor.html#clutter-actor-get-transition" title="clutter_actor_get_transition ()"><code class="function">clutter_actor_get_transition()</code></a> to retrieve
1937
+ the transition.</p>
1938
+ </div>
1939
+ <p>Retrieves the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> used by <em class="parameter"><code>actor</code></em>
1940
+ , if <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>
1941
+ has been called on <em class="parameter"><code>actor</code></em>
1942
+ .</p>
1943
+ <div class="refsect3">
1944
+ <a name="id-1.10.3.11.29.7"></a><h4>Parameters</h4>
1945
+ <div class="informaltable"><table width="100%" border="0">
1946
+ <colgroup>
1947
+ <col width="150px" class="parameters_name">
1948
+ <col class="parameters_description">
1949
+ <col width="200px" class="parameters_annotations">
1950
+ </colgroup>
1951
+ <tbody><tr>
1952
+ <td class="parameter_name"><p>actor</p></td>
1953
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1954
+ <td class="parameter_annotations"> </td>
1955
+ </tr></tbody>
1956
+ </table></div>
1957
+ </div>
1958
+ <div class="refsect3">
1959
+ <a name="id-1.10.3.11.29.8"></a><h4>Returns</h4>
1960
+ <p> a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>, or <code class="literal">NULL</code>. </p>
1961
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1962
+ </div>
1963
+ <p class="since">Since 1.0</p>
1964
+ </div>
1965
+ <hr>
1966
+ <div class="refsect2">
1967
+ <a name="clutter-actor-detach-animation"></a><h3>clutter_actor_detach_animation ()</h3>
1968
+ <pre class="programlisting"><span class="returnvalue">void</span>
1969
+ clutter_actor_detach_animation (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>);</pre>
1970
+ <div class="warning">
1971
+ <p><code class="literal">clutter_actor_detach_animation</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
1972
+ <p>Use the implicit transition for animatable properties
1973
+ in <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> instead, and <a class="link" href="ClutterActor.html#clutter-actor-remove-transition" title="clutter_actor_remove_transition ()"><code class="function">clutter_actor_remove_transition()</code></a> to
1974
+ remove the transition.</p>
1975
+ </div>
1976
+ <p>Detaches the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> used by <em class="parameter"><code>actor</code></em>
1977
+ , if <a class="link" href="clutter-Implicit-Animations.html#clutter-actor-animate" title="clutter_actor_animate ()"><code class="function">clutter_actor_animate()</code></a>
1978
+ has been called on <em class="parameter"><code>actor</code></em>
1979
+ .</p>
1980
+ <p>Once the animation has been detached, it loses a reference. If it was
1981
+ the only reference then the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> becomes invalid.</p>
1982
+ <p>The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> signal will not be emitted.</p>
1983
+ <div class="refsect3">
1984
+ <a name="id-1.10.3.11.30.9"></a><h4>Parameters</h4>
1985
+ <div class="informaltable"><table width="100%" border="0">
1986
+ <colgroup>
1987
+ <col width="150px" class="parameters_name">
1988
+ <col class="parameters_description">
1989
+ <col width="200px" class="parameters_annotations">
1990
+ </colgroup>
1991
+ <tbody><tr>
1992
+ <td class="parameter_name"><p>actor</p></td>
1993
+ <td class="parameter_description"><p>a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
1994
+ <td class="parameter_annotations"> </td>
1995
+ </tr></tbody>
1996
+ </table></div>
1997
+ </div>
1998
+ <p class="since">Since 1.4</p>
1999
+ </div>
2000
+ </div>
2001
+ <div class="refsect1">
2002
+ <a name="clutter-Implicit-Animations.other_details"></a><h2>Types and Values</h2>
2003
+ <div class="refsect2">
2004
+ <a name="ClutterAnimation-struct"></a><h3>ClutterAnimation</h3>
2005
+ <pre class="programlisting">typedef struct _ClutterAnimation ClutterAnimation;</pre>
2006
+ <p>The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> structure contains only private data and should
2007
+ be accessed using the provided functions.</p>
2008
+ <p class="since">Since 1.0</p>
2009
+ </div>
2010
+ <hr>
2011
+ <div class="refsect2">
2012
+ <a name="ClutterAnimationClass"></a><h3>struct ClutterAnimationClass</h3>
2013
+ <pre class="programlisting">struct ClutterAnimationClass {
2014
+ void (* started) (ClutterAnimation *animation);
2015
+ void (* completed) (ClutterAnimation *animation);
2016
+ };
2017
+ </pre>
2018
+ <p>The <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimationClass" title="struct ClutterAnimationClass"><span class="type">ClutterAnimationClass</span></a> structure contains only private data and
2019
+ should be accessed using the provided functions.</p>
2020
+ <div class="refsect3">
2021
+ <a name="id-1.10.3.12.3.5"></a><h4>Members</h4>
2022
+ <div class="informaltable"><table width="100%" border="0">
2023
+ <colgroup>
2024
+ <col width="300px" class="struct_members_name">
2025
+ <col class="struct_members_description">
2026
+ <col width="200px" class="struct_members_annotations">
2027
+ </colgroup>
2028
+ <tbody>
2029
+ <tr>
2030
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterAnimationClass.started"></a>started</code></em> ()</p></td>
2031
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-started" title="The “started” signal"><span class="type">“started”</span></a> signal</p></td>
2032
+ <td class="struct_member_annotations"> </td>
2033
+ </tr>
2034
+ <tr>
2035
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterAnimationClass.completed"></a>completed</code></em> ()</p></td>
2036
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation-completed" title="The “completed” signal"><span class="type">“completed”</span></a> signal</p></td>
2037
+ <td class="struct_member_annotations"> </td>
2038
+ </tr>
2039
+ </tbody>
2040
+ </table></div>
2041
+ </div>
2042
+ <p class="since">Since 1.0</p>
2043
+ </div>
2044
+ </div>
2045
+ <div class="refsect1">
2046
+ <a name="clutter-Implicit-Animations.property-details"></a><h2>Property Details</h2>
2047
+ <div class="refsect2">
2048
+ <a name="ClutterAnimation--alpha"></a><h3>The <code class="literal">“alpha”</code> property</h3>
2049
+ <pre class="programlisting"> “alpha” <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> *</pre>
2050
+ <p>The <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a> used by the animation.</p>
2051
+ <div class="warning">
2052
+ <p><code class="literal">ClutterAnimation:alpha</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
2053
+ <p>Use the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation--timeline" title="The “timeline” property"><span class="type">“timeline”</span></a> property and
2054
+ the <a class="link" href="ClutterTimeline.html#ClutterTimeline--progress-mode" title="The “progress-mode” property"><span class="type">“progress-mode”</span></a> property instead.</p>
2055
+ </div>
2056
+ <p>Flags: Read / Write</p>
2057
+ <p class="since">Since 1.0</p>
2058
+ </div>
2059
+ <hr>
2060
+ <div class="refsect2">
2061
+ <a name="ClutterAnimation--duration"></a><h3>The <code class="literal">“duration”</code> property</h3>
2062
+ <pre class="programlisting"> “duration” <span class="type">guint</span></pre>
2063
+ <p>The duration of the animation, expressed in milliseconds.</p>
2064
+ <div class="warning">
2065
+ <p><code class="literal">ClutterAnimation:duration</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2066
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2067
+ </div>
2068
+ <p>Flags: Read / Write</p>
2069
+ <p>Default value: 0</p>
2070
+ <p class="since">Since 1.0</p>
2071
+ </div>
2072
+ <hr>
2073
+ <div class="refsect2">
2074
+ <a name="ClutterAnimation--loop"></a><h3>The <code class="literal">“loop”</code> property</h3>
2075
+ <pre class="programlisting"> “loop” <span class="type">gboolean</span></pre>
2076
+ <p>Whether the animation should loop.</p>
2077
+ <div class="warning">
2078
+ <p><code class="literal">ClutterAnimation:loop</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2079
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2080
+ </div>
2081
+ <p>Flags: Read / Write</p>
2082
+ <p>Default value: FALSE</p>
2083
+ <p class="since">Since 1.0</p>
2084
+ </div>
2085
+ <hr>
2086
+ <div class="refsect2">
2087
+ <a name="ClutterAnimation--mode"></a><h3>The <code class="literal">“mode”</code> property</h3>
2088
+ <pre class="programlisting"> “mode” <span class="type">gulong</span></pre>
2089
+ <p>The animation mode, either a value from <a class="link" href="ClutterTimeline.html#ClutterAnimationMode" title="enum ClutterAnimationMode"><span class="type">ClutterAnimationMode</span></a>
2090
+ or a value returned by <a class="link" href="ClutterAlpha.html#clutter-alpha-register-func" title="clutter_alpha_register_func ()"><code class="function">clutter_alpha_register_func()</code></a>. The
2091
+ default value is <a class="link" href="ClutterTimeline.html#CLUTTER-LINEAR:CAPS"><code class="literal">CLUTTER_LINEAR</code></a>.</p>
2092
+ <div class="warning">
2093
+ <p><code class="literal">ClutterAnimation:mode</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2094
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2095
+ </div>
2096
+ <p>Flags: Read / Write</p>
2097
+ <p class="since">Since 1.0</p>
2098
+ </div>
2099
+ <hr>
2100
+ <div class="refsect2">
2101
+ <a name="ClutterAnimation--object"></a><h3>The <code class="literal">“object”</code> property</h3>
2102
+ <pre class="programlisting"> “object” <span class="type">GObject</span> *</pre>
2103
+ <p>The <span class="type">GObject</span> to which the animation applies.</p>
2104
+ <div class="warning">
2105
+ <p><code class="literal">ClutterAnimation:object</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2106
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2107
+ </div>
2108
+ <p>Flags: Read / Write</p>
2109
+ <p class="since">Since 1.0</p>
2110
+ </div>
2111
+ <hr>
2112
+ <div class="refsect2">
2113
+ <a name="ClutterAnimation--timeline"></a><h3>The <code class="literal">“timeline”</code> property</h3>
2114
+ <pre class="programlisting"> “timeline” <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *</pre>
2115
+ <p>The <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by the animation.</p>
2116
+ <div class="warning">
2117
+ <p><code class="literal">ClutterAnimation:timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2118
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2119
+ </div>
2120
+ <p>Flags: Read / Write</p>
2121
+ <p class="since">Since 1.0</p>
2122
+ </div>
2123
+ </div>
2124
+ <div class="refsect1">
2125
+ <a name="clutter-Implicit-Animations.signal-details"></a><h2>Signal Details</h2>
2126
+ <div class="refsect2">
2127
+ <a name="ClutterAnimation-completed"></a><h3>The <code class="literal">“completed”</code> signal</h3>
2128
+ <pre class="programlisting"><span class="returnvalue">void</span>
2129
+ user_function (<a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation,
2130
+ <span class="type">gpointer</span> user_data)</pre>
2131
+ <p>The ::completed signal is emitted once the animation has
2132
+ been completed.</p>
2133
+ <p>The <em class="parameter"><code>animation</code></em>
2134
+ instance is guaranteed to be valid for the entire
2135
+ duration of the signal emission chain.</p>
2136
+ <div class="warning">
2137
+ <p><code class="literal">ClutterAnimation::completed</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2138
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2139
+ </div>
2140
+ <div class="refsect3">
2141
+ <a name="id-1.10.3.14.2.8"></a><h4>Parameters</h4>
2142
+ <div class="informaltable"><table width="100%" border="0">
2143
+ <colgroup>
2144
+ <col width="150px" class="parameters_name">
2145
+ <col class="parameters_description">
2146
+ <col width="200px" class="parameters_annotations">
2147
+ </colgroup>
2148
+ <tbody>
2149
+ <tr>
2150
+ <td class="parameter_name"><p>animation</p></td>
2151
+ <td class="parameter_description"><p>the animation that emitted the signal</p></td>
2152
+ <td class="parameter_annotations"> </td>
2153
+ </tr>
2154
+ <tr>
2155
+ <td class="parameter_name"><p>user_data</p></td>
2156
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
2157
+ <td class="parameter_annotations"> </td>
2158
+ </tr>
2159
+ </tbody>
2160
+ </table></div>
2161
+ </div>
2162
+ <p>Flags: Run Last</p>
2163
+ <p class="since">Since 1.0</p>
2164
+ </div>
2165
+ <hr>
2166
+ <div class="refsect2">
2167
+ <a name="ClutterAnimation-started"></a><h3>The <code class="literal">“started”</code> signal</h3>
2168
+ <pre class="programlisting"><span class="returnvalue">void</span>
2169
+ user_function (<a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation,
2170
+ <span class="type">gpointer</span> user_data)</pre>
2171
+ <p>The ::started signal is emitted once the animation has been
2172
+ started</p>
2173
+ <div class="warning">
2174
+ <p><code class="literal">ClutterAnimation::started</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
2175
+ <p>Use <a class="link" href="ClutterPropertyTransition.html" title="ClutterPropertyTransition"><span class="type">ClutterPropertyTransition</span></a> instead</p>
2176
+ </div>
2177
+ <div class="refsect3">
2178
+ <a name="id-1.10.3.14.3.7"></a><h4>Parameters</h4>
2179
+ <div class="informaltable"><table width="100%" border="0">
2180
+ <colgroup>
2181
+ <col width="150px" class="parameters_name">
2182
+ <col class="parameters_description">
2183
+ <col width="200px" class="parameters_annotations">
2184
+ </colgroup>
2185
+ <tbody>
2186
+ <tr>
2187
+ <td class="parameter_name"><p>animation</p></td>
2188
+ <td class="parameter_description"><p>the animation that emitted the signal</p></td>
2189
+ <td class="parameter_annotations"> </td>
2190
+ </tr>
2191
+ <tr>
2192
+ <td class="parameter_name"><p>user_data</p></td>
2193
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
2194
+ <td class="parameter_annotations"> </td>
2195
+ </tr>
2196
+ </tbody>
2197
+ </table></div>
2198
+ </div>
2199
+ <p>Flags: Run Last</p>
2200
+ <p class="since">Since 1.0</p>
2201
+ </div>
2202
+ </div>
2203
+ <div class="refsect1">
2204
+ <a name="clutter-Implicit-Animations.see-also"></a><h2>See Also</h2>
2205
+ <p><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>, <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>, <a class="link" href="ClutterAlpha.html" title="ClutterAlpha"><span class="type">ClutterAlpha</span></a>,
2206
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a></p>
2207
+ </div>
2208
+ </div>
2209
+ <div class="footer">
2210
+ <hr>
2211
+ Generated by GTK-Doc V1.20.1</div>
2212
+ </body>
2213
+ </html>