clutter 2.0.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (656) hide show
  1. data/Rakefile +129 -0
  2. data/lib/clutter.rb +145 -0
  3. data/lib/clutter/actor-iter.rb +33 -0
  4. data/lib/clutter/actor.rb +34 -0
  5. data/lib/clutter/animatable.rb +26 -0
  6. data/lib/clutter/cairo.rb +24 -0
  7. data/lib/clutter/color.rb +55 -0
  8. data/lib/clutter/event.rb +21 -0
  9. data/lib/clutter/point.rb +25 -0
  10. data/lib/clutter/text.rb +23 -0
  11. data/lib/clutter/threads.rb +38 -0
  12. data/sample/basic-actor.rb +125 -0
  13. data/sample/bin-layout.rb +215 -0
  14. data/sample/box-layout.rb +196 -0
  15. data/sample/canvas.rb +117 -0
  16. data/sample/constraints.rb +81 -0
  17. data/sample/drag-action.rb +177 -0
  18. data/sample/drop-action.rb +198 -0
  19. data/sample/easing-modes.rb +145 -0
  20. data/sample/flow-layout.rb +121 -0
  21. data/sample/grid-layout.rb +239 -0
  22. data/sample/image-content.rb +88 -0
  23. data/sample/pan-action.rb +100 -0
  24. data/sample/redhand.png +0 -0
  25. data/sample/rounded-rectangle.rb +90 -0
  26. data/sample/scroll-actor.rb +105 -0
  27. data/test/clutter-test-utils.rb +21 -0
  28. data/test/run-test.rb +50 -0
  29. data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
  30. data/vendor/local/bin/libcogl-12.dll +0 -0
  31. data/vendor/local/bin/libcogl-pango-12.dll +0 -0
  32. data/vendor/local/bin/libglut-0.dll +0 -0
  33. data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
  34. data/vendor/local/include/GL/freeglut.h +22 -0
  35. data/vendor/local/include/GL/freeglut_ext.h +239 -0
  36. data/vendor/local/include/GL/freeglut_std.h +636 -0
  37. data/vendor/local/include/GL/glut.h +21 -0
  38. data/vendor/local/include/clutter-1.0/cally/cally-actor.h +155 -0
  39. data/vendor/local/include/clutter-1.0/cally/cally-clone.h +82 -0
  40. data/vendor/local/include/clutter-1.0/cally/cally-factory.h +117 -0
  41. data/vendor/local/include/clutter-1.0/cally/cally-group.h +85 -0
  42. data/vendor/local/include/clutter-1.0/cally/cally-main.h +39 -0
  43. data/vendor/local/include/clutter-1.0/cally/cally-rectangle.h +82 -0
  44. data/vendor/local/include/clutter-1.0/cally/cally-root.h +82 -0
  45. data/vendor/local/include/clutter-1.0/cally/cally-stage.h +82 -0
  46. data/vendor/local/include/clutter-1.0/cally/cally-text.h +82 -0
  47. data/vendor/local/include/clutter-1.0/cally/cally-texture.h +82 -0
  48. data/vendor/local/include/clutter-1.0/cally/cally-util.h +80 -0
  49. data/vendor/local/include/clutter-1.0/cally/cally.h +40 -0
  50. data/vendor/local/include/clutter-1.0/clutter/clutter-action.h +103 -0
  51. data/vendor/local/include/clutter-1.0/clutter/clutter-actor-meta.h +113 -0
  52. data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +735 -0
  53. data/vendor/local/include/clutter-1.0/clutter/clutter-align-constraint.h +69 -0
  54. data/vendor/local/include/clutter-1.0/clutter/clutter-animatable.h +116 -0
  55. data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +74 -0
  56. data/vendor/local/include/clutter-1.0/clutter/clutter-bin-layout.h +84 -0
  57. data/vendor/local/include/clutter-1.0/clutter/clutter-bind-constraint.h +69 -0
  58. data/vendor/local/include/clutter-1.0/clutter/clutter-binding-pool.h +122 -0
  59. data/vendor/local/include/clutter-1.0/clutter/clutter-blur-effect.h +57 -0
  60. data/vendor/local/include/clutter-1.0/clutter/clutter-box-layout.h +159 -0
  61. data/vendor/local/include/clutter-1.0/clutter/clutter-brightness-contrast-effect.h +80 -0
  62. data/vendor/local/include/clutter-1.0/clutter/clutter-cairo.h +59 -0
  63. data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +100 -0
  64. data/vendor/local/include/clutter-1.0/clutter/clutter-child-meta.h +120 -0
  65. data/vendor/local/include/clutter-1.0/clutter/clutter-click-action.h +114 -0
  66. data/vendor/local/include/clutter-1.0/clutter/clutter-clone.h +90 -0
  67. data/vendor/local/include/clutter-1.0/clutter/clutter-cogl-compat.h +52 -0
  68. data/vendor/local/include/clutter-1.0/clutter/clutter-color-static.h +79 -0
  69. data/vendor/local/include/clutter-1.0/clutter/clutter-color.h +175 -0
  70. data/vendor/local/include/clutter-1.0/clutter/clutter-colorize-effect.h +63 -0
  71. data/vendor/local/include/clutter-1.0/clutter/clutter-config.h +19 -0
  72. data/vendor/local/include/clutter-1.0/clutter/clutter-constraint.h +108 -0
  73. data/vendor/local/include/clutter-1.0/clutter/clutter-container.h +184 -0
  74. data/vendor/local/include/clutter-1.0/clutter/clutter-content.h +103 -0
  75. data/vendor/local/include/clutter-1.0/clutter/clutter-deform-effect.h +111 -0
  76. data/vendor/local/include/clutter-1.0/clutter/clutter-deprecated.h +43 -0
  77. data/vendor/local/include/clutter-1.0/clutter/clutter-desaturate-effect.h +61 -0
  78. data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +104 -0
  79. data/vendor/local/include/clutter-1.0/clutter/clutter-drag-action.h +142 -0
  80. data/vendor/local/include/clutter-1.0/clutter/clutter-drop-action.h +113 -0
  81. data/vendor/local/include/clutter-1.0/clutter/clutter-effect.h +120 -0
  82. data/vendor/local/include/clutter-1.0/clutter/clutter-enum-types.h +183 -0
  83. data/vendor/local/include/clutter-1.0/clutter/clutter-enums.h +1362 -0
  84. data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +509 -0
  85. data/vendor/local/include/clutter-1.0/clutter/clutter-feature.h +40 -0
  86. data/vendor/local/include/clutter-1.0/clutter/clutter-fixed-layout.h +80 -0
  87. data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +110 -0
  88. data/vendor/local/include/clutter-1.0/clutter/clutter-gesture-action.h +154 -0
  89. data/vendor/local/include/clutter-1.0/clutter/clutter-grid-layout.h +161 -0
  90. data/vendor/local/include/clutter-1.0/clutter/clutter-group.h +95 -0
  91. data/vendor/local/include/clutter-1.0/clutter/clutter-image.h +141 -0
  92. data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +118 -0
  93. data/vendor/local/include/clutter-1.0/clutter/clutter-interval.h +141 -0
  94. data/vendor/local/include/clutter-1.0/clutter/clutter-keyframe-transition.h +120 -0
  95. data/vendor/local/include/clutter-1.0/clutter/clutter-keysyms.h +2304 -0
  96. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +215 -0
  97. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-meta.h +101 -0
  98. data/vendor/local/include/clutter-1.0/clutter/clutter-list-model.h +88 -0
  99. data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +279 -0
  100. data/vendor/local/include/clutter-1.0/clutter/clutter-main.h +148 -0
  101. data/vendor/local/include/clutter-1.0/clutter/clutter-marshal.h +273 -0
  102. data/vendor/local/include/clutter-1.0/clutter/clutter-model.h +381 -0
  103. data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +112 -0
  104. data/vendor/local/include/clutter-1.0/clutter/clutter-page-turn-effect.h +72 -0
  105. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-node.h +102 -0
  106. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-nodes.h +150 -0
  107. data/vendor/local/include/clutter-1.0/clutter/clutter-pan-action.h +147 -0
  108. data/vendor/local/include/clutter-1.0/clutter/clutter-path-constraint.h +66 -0
  109. data/vendor/local/include/clutter-1.0/clutter/clutter-path.h +155 -0
  110. data/vendor/local/include/clutter-1.0/clutter/clutter-property-transition.h +91 -0
  111. data/vendor/local/include/clutter-1.0/clutter/clutter-rotate-action.h +100 -0
  112. data/vendor/local/include/clutter-1.0/clutter/clutter-script.h +204 -0
  113. data/vendor/local/include/clutter-1.0/clutter/clutter-scriptable.h +107 -0
  114. data/vendor/local/include/clutter-1.0/clutter/clutter-scroll-actor.h +97 -0
  115. data/vendor/local/include/clutter-1.0/clutter/clutter-settings.h +25 -0
  116. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-effect.h +114 -0
  117. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-types.h +95 -0
  118. data/vendor/local/include/clutter-1.0/clutter/clutter-snap-constraint.h +73 -0
  119. data/vendor/local/include/clutter-1.0/clutter/clutter-stage-manager.h +81 -0
  120. data/vendor/local/include/clutter-1.0/clutter/clutter-stage.h +215 -0
  121. data/vendor/local/include/clutter-1.0/clutter/clutter-swipe-action.h +107 -0
  122. data/vendor/local/include/clutter-1.0/clutter/clutter-table-layout.h +157 -0
  123. data/vendor/local/include/clutter-1.0/clutter/clutter-tap-action.h +102 -0
  124. data/vendor/local/include/clutter-1.0/clutter/clutter-text-buffer.h +172 -0
  125. data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +237 -0
  126. data/vendor/local/include/clutter-1.0/clutter/clutter-texture.h +128 -0
  127. data/vendor/local/include/clutter-1.0/clutter/clutter-timeline.h +201 -0
  128. data/vendor/local/include/clutter-1.0/clutter/clutter-transition-group.h +91 -0
  129. data/vendor/local/include/clutter-1.0/clutter/clutter-transition.h +132 -0
  130. data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +715 -0
  131. data/vendor/local/include/clutter-1.0/clutter/clutter-units.h +166 -0
  132. data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +302 -0
  133. data/vendor/local/include/clutter-1.0/clutter/clutter-zoom-action.h +114 -0
  134. data/vendor/local/include/clutter-1.0/clutter/clutter.h +118 -0
  135. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-actor.h +161 -0
  136. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-alpha.h +144 -0
  137. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animatable.h +47 -0
  138. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animation.h +206 -0
  139. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animator.h +186 -0
  140. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-backend.h +64 -0
  141. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-depth.h +101 -0
  142. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-ellipse.h +159 -0
  143. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-opacity.h +115 -0
  144. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-path.h +135 -0
  145. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-rotate.h +119 -0
  146. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-scale.h +107 -0
  147. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour.h +170 -0
  148. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-bin-layout.h +56 -0
  149. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-box.h +143 -0
  150. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-cairo-texture.h +139 -0
  151. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-container.h +93 -0
  152. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-fixed.h +97 -0
  153. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-frame-source.h +49 -0
  154. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-group.h +62 -0
  155. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-input-device.h +41 -0
  156. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-keysyms.h +2306 -0
  157. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-main.h +96 -0
  158. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-media.h +121 -0
  159. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-rectangle.h +117 -0
  160. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-score.h +144 -0
  161. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-shader.h +182 -0
  162. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage-manager.h +42 -0
  163. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage.h +102 -0
  164. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-state.h +187 -0
  165. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-texture.h +138 -0
  166. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeline.h +41 -0
  167. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeout-pool.h +69 -0
  168. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-util.h +40 -0
  169. data/vendor/local/include/clutter-1.0/clutter/win32/clutter-win32.h +58 -0
  170. data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +245 -0
  171. data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +131 -0
  172. data/vendor/local/include/cogl/cogl/cogl-attribute.h +532 -0
  173. data/vendor/local/include/cogl/cogl/cogl-bitmap.h +314 -0
  174. data/vendor/local/include/cogl/cogl/cogl-buffer.h +309 -0
  175. data/vendor/local/include/cogl/cogl/cogl-clip-state.h +50 -0
  176. data/vendor/local/include/cogl/cogl/cogl-clutter.h +47 -0
  177. data/vendor/local/include/cogl/cogl/cogl-color.h +543 -0
  178. data/vendor/local/include/cogl/cogl/cogl-context.h +350 -0
  179. data/vendor/local/include/cogl/cogl/cogl-defines.h +50 -0
  180. data/vendor/local/include/cogl/cogl/cogl-deprecated.h +36 -0
  181. data/vendor/local/include/cogl/cogl/cogl-depth-state.h +264 -0
  182. data/vendor/local/include/cogl/cogl/cogl-display.h +192 -0
  183. data/vendor/local/include/cogl/cogl/cogl-enum-types.h +100 -0
  184. data/vendor/local/include/cogl/cogl/cogl-error.h +176 -0
  185. data/vendor/local/include/cogl/cogl/cogl-euler.h +251 -0
  186. data/vendor/local/include/cogl/cogl/cogl-fixed.h +804 -0
  187. data/vendor/local/include/cogl/cogl/cogl-frame-info.h +129 -0
  188. data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +1829 -0
  189. data/vendor/local/include/cogl/cogl/cogl-gles2-types.h +474 -0
  190. data/vendor/local/include/cogl/cogl/cogl-gles2.h +374 -0
  191. data/vendor/local/include/cogl/cogl/cogl-glib-source.h +59 -0
  192. data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +85 -0
  193. data/vendor/local/include/cogl/cogl/cogl-indices.h +145 -0
  194. data/vendor/local/include/cogl/cogl/cogl-material-compat.h +1276 -0
  195. data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +620 -0
  196. data/vendor/local/include/cogl/cogl/cogl-matrix.h +798 -0
  197. data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +181 -0
  198. data/vendor/local/include/cogl/cogl/cogl-object.h +219 -0
  199. data/vendor/local/include/cogl/cogl/cogl-offscreen.h +117 -0
  200. data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +106 -0
  201. data/vendor/local/include/cogl/cogl/cogl-onscreen.h +741 -0
  202. data/vendor/local/include/cogl/cogl/cogl-output.h +242 -0
  203. data/vendor/local/include/cogl/cogl/cogl-pango.h +33 -0
  204. data/vendor/local/include/cogl/cogl/cogl-path-functions.h +430 -0
  205. data/vendor/local/include/cogl/cogl/cogl-path.h +102 -0
  206. data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +613 -0
  207. data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +924 -0
  208. data/vendor/local/include/cogl/cogl/cogl-pipeline.h +173 -0
  209. data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +114 -0
  210. data/vendor/local/include/cogl/cogl/cogl-poll.h +174 -0
  211. data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +98 -0
  212. data/vendor/local/include/cogl/cogl/cogl-primitive.h +866 -0
  213. data/vendor/local/include/cogl/cogl/cogl-primitives.h +190 -0
  214. data/vendor/local/include/cogl/cogl/cogl-quaternion.h +545 -0
  215. data/vendor/local/include/cogl/cogl/cogl-renderer.h +423 -0
  216. data/vendor/local/include/cogl/cogl/cogl-shader.h +654 -0
  217. data/vendor/local/include/cogl/cogl/cogl-snippet.h +786 -0
  218. data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +122 -0
  219. data/vendor/local/include/cogl/cogl/cogl-swap-chain.h +51 -0
  220. data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +73 -0
  221. data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +130 -0
  222. data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +191 -0
  223. data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +187 -0
  224. data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +204 -0
  225. data/vendor/local/include/cogl/cogl/cogl-texture.h +611 -0
  226. data/vendor/local/include/cogl/cogl/cogl-types.h +912 -0
  227. data/vendor/local/include/cogl/cogl/cogl-vector.h +351 -0
  228. data/vendor/local/include/cogl/cogl/cogl-version.h +185 -0
  229. data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +409 -0
  230. data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +99 -0
  231. data/vendor/local/include/cogl/cogl/cogl.h +151 -0
  232. data/vendor/local/include/cogl/cogl/cogl1-context.h +1169 -0
  233. data/vendor/local/include/cogl/cogl/cogl2-compatibility.h +55 -0
  234. data/vendor/local/include/cogl/cogl/cogl2-experimental.h +31 -0
  235. data/vendor/local/include/cogl/cogl/cogl2-path.h +506 -0
  236. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-core-functions.h +191 -0
  237. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-gles2-functions.h +36 -0
  238. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-glsl-functions.h +279 -0
  239. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h +141 -0
  240. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h +179 -0
  241. data/vendor/local/include/json-glib-1.0/json-glib/json-builder.h +106 -0
  242. data/vendor/local/include/json-glib-1.0/json-glib/json-enum-types.h +36 -0
  243. data/vendor/local/include/json-glib-1.0/json-glib/json-generator.h +107 -0
  244. data/vendor/local/include/json-glib-1.0/json-glib/json-glib.h +46 -0
  245. data/vendor/local/include/json-glib-1.0/json-glib/json-gobject.h +182 -0
  246. data/vendor/local/include/json-glib-1.0/json-glib/json-gvariant.h +46 -0
  247. data/vendor/local/include/json-glib-1.0/json-glib/json-parser.h +173 -0
  248. data/vendor/local/include/json-glib-1.0/json-glib/json-path.h +97 -0
  249. data/vendor/local/include/json-glib-1.0/json-glib/json-reader.h +150 -0
  250. data/vendor/local/include/json-glib-1.0/json-glib/json-types.h +334 -0
  251. data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +100 -0
  252. data/vendor/local/lib/girepository-1.0/Cally-1.0.typelib +0 -0
  253. data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
  254. data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
  255. data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
  256. data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
  257. data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
  258. data/vendor/local/lib/libclutter-1.0.la +41 -0
  259. data/vendor/local/lib/libcogl-pango.dll.a +0 -0
  260. data/vendor/local/lib/libcogl-pango.la +41 -0
  261. data/vendor/local/lib/libcogl.dll.a +0 -0
  262. data/vendor/local/lib/libcogl.la +41 -0
  263. data/vendor/local/lib/libglut.a +0 -0
  264. data/vendor/local/lib/libglut.dll.a +0 -0
  265. data/vendor/local/lib/libglut.la +41 -0
  266. data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
  267. data/vendor/local/lib/libjson-glib-1.0.la +41 -0
  268. data/vendor/local/lib/pkgconfig/cally-1.0.pc +13 -0
  269. data/vendor/local/lib/pkgconfig/clutter-1.0.pc +24 -0
  270. data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +24 -0
  271. data/vendor/local/lib/pkgconfig/cogl-1.0.pc +13 -0
  272. data/vendor/local/lib/pkgconfig/cogl-2.0-experimental.pc +13 -0
  273. data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +13 -0
  274. data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +13 -0
  275. data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +13 -0
  276. data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +11 -0
  277. data/vendor/local/share/cogl/examples-data/crate.jpg +0 -0
  278. data/vendor/local/share/gir-1.0/Cally-1.0.gir +679 -0
  279. data/vendor/local/share/gir-1.0/Clutter-1.0.gir +67473 -0
  280. data/vendor/local/share/gir-1.0/Cogl-1.0.gir +8383 -0
  281. data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +306 -0
  282. data/vendor/local/share/gir-1.0/Json-1.0.gir +4333 -0
  283. data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +415 -0
  284. data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +136 -0
  285. data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +139 -0
  286. data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +135 -0
  287. data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +123 -0
  288. data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +140 -0
  289. data/vendor/local/share/gtk-doc/html/cally/CallyText.html +133 -0
  290. data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +135 -0
  291. data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +100 -0
  292. data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +167 -0
  293. data/vendor/local/share/gtk-doc/html/cally/cally.devhelp2 +73 -0
  294. data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +43 -0
  295. data/vendor/local/share/gtk-doc/html/cally/callybase.html +71 -0
  296. data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +45 -0
  297. data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +64 -0
  298. data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +39 -0
  299. data/vendor/local/share/gtk-doc/html/cally/ch01.html +53 -0
  300. data/vendor/local/share/gtk-doc/html/cally/ch02.html +41 -0
  301. data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +96 -0
  302. data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
  303. data/vendor/local/share/gtk-doc/html/cally/index.html +103 -0
  304. data/vendor/local/share/gtk-doc/html/cally/index.sgml +103 -0
  305. data/vendor/local/share/gtk-doc/html/cally/ix01.html +198 -0
  306. data/vendor/local/share/gtk-doc/html/cally/ix02.html +31 -0
  307. data/vendor/local/share/gtk-doc/html/cally/ix03.html +190 -0
  308. data/vendor/local/share/gtk-doc/html/cally/ix04.html +42 -0
  309. data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
  310. data/vendor/local/share/gtk-doc/html/cally/license.html +58 -0
  311. data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
  312. data/vendor/local/share/gtk-doc/html/cally/style.css +266 -0
  313. data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
  314. data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +110 -0
  315. data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +13714 -0
  316. data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +322 -0
  317. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +404 -0
  318. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +747 -0
  319. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +432 -0
  320. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +1218 -0
  321. data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +684 -0
  322. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +697 -0
  323. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +278 -0
  324. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +844 -0
  325. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +283 -0
  326. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +450 -0
  327. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +608 -0
  328. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +432 -0
  329. data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +1056 -0
  330. data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +780 -0
  331. data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +109 -0
  332. data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +657 -0
  333. data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +1232 -0
  334. data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +410 -0
  335. data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +1018 -0
  336. data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +469 -0
  337. data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +253 -0
  338. data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +587 -0
  339. data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +219 -0
  340. data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +193 -0
  341. data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +336 -0
  342. data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +1346 -0
  343. data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +309 -0
  344. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +353 -0
  345. data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +200 -0
  346. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +408 -0
  347. data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +1224 -0
  348. data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +965 -0
  349. data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +386 -0
  350. data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +115 -0
  351. data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +1016 -0
  352. data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +867 -0
  353. data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +808 -0
  354. data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +231 -0
  355. data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +674 -0
  356. data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +1488 -0
  357. data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +525 -0
  358. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +1376 -0
  359. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +161 -0
  360. data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +211 -0
  361. data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +900 -0
  362. data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +1715 -0
  363. data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +644 -0
  364. data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +350 -0
  365. data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +333 -0
  366. data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +534 -0
  367. data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +785 -0
  368. data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +1327 -0
  369. data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +321 -0
  370. data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +216 -0
  371. data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +369 -0
  372. data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +183 -0
  373. data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +881 -0
  374. data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +1365 -0
  375. data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +311 -0
  376. data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +731 -0
  377. data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +301 -0
  378. data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +595 -0
  379. data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +421 -0
  380. data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +2252 -0
  381. data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +1558 -0
  382. data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +280 -0
  383. data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +1146 -0
  384. data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +192 -0
  385. data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +3058 -0
  386. data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +736 -0
  387. data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +1829 -0
  388. data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +2441 -0
  389. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +574 -0
  390. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +227 -0
  391. data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +400 -0
  392. data/vendor/local/share/gtk-doc/html/clutter/actor-box.png +0 -0
  393. data/vendor/local/share/gtk-doc/html/clutter/actor-example.png +0 -0
  394. data/vendor/local/share/gtk-doc/html/clutter/animator-key-frames.png +0 -0
  395. data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +111 -0
  396. data/vendor/local/share/gtk-doc/html/clutter/bin-layout.png +0 -0
  397. data/vendor/local/share/gtk-doc/html/clutter/box-layout.png +0 -0
  398. data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +275 -0
  399. data/vendor/local/share/gtk-doc/html/clutter/ch01.html +65 -0
  400. data/vendor/local/share/gtk-doc/html/clutter/ch02.html +47 -0
  401. data/vendor/local/share/gtk-doc/html/clutter/ch03.html +51 -0
  402. data/vendor/local/share/gtk-doc/html/clutter/ch04.html +59 -0
  403. data/vendor/local/share/gtk-doc/html/clutter/ch05.html +44 -0
  404. data/vendor/local/share/gtk-doc/html/clutter/ch06.html +57 -0
  405. data/vendor/local/share/gtk-doc/html/clutter/ch07.html +38 -0
  406. data/vendor/local/share/gtk-doc/html/clutter/ch08.html +38 -0
  407. data/vendor/local/share/gtk-doc/html/clutter/ch09.html +53 -0
  408. data/vendor/local/share/gtk-doc/html/clutter/ch10.html +78 -0
  409. data/vendor/local/share/gtk-doc/html/clutter/ch11.html +38 -0
  410. data/vendor/local/share/gtk-doc/html/clutter/ch12.html +41 -0
  411. data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +3471 -0
  412. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +225 -0
  413. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +314 -0
  414. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +361 -0
  415. data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +1363 -0
  416. data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +129 -0
  417. data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +2653 -0
  418. data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +200 -0
  419. data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +249 -0
  420. data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +2550 -0
  421. data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +2571 -0
  422. data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +181 -0
  423. data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +890 -0
  424. data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +351 -0
  425. data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +1004 -0
  426. data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +341 -0
  427. data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +843 -0
  428. data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +549 -0
  429. data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +1023 -0
  430. data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +525 -0
  431. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +83 -0
  432. data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +201 -0
  433. data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +806 -0
  434. data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +77 -0
  435. data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +2715 -0
  436. data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +65 -0
  437. data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +71 -0
  438. data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +202 -0
  439. data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +37 -0
  440. data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +118 -0
  441. data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +184 -0
  442. data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +37 -0
  443. data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +105 -0
  444. data/vendor/local/share/gtk-doc/html/clutter/constraints-example.png +0 -0
  445. data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +86 -0
  446. data/vendor/local/share/gtk-doc/html/clutter/easing-modes.png +0 -0
  447. data/vendor/local/share/gtk-doc/html/clutter/event-flow.png +0 -0
  448. data/vendor/local/share/gtk-doc/html/clutter/flow-layout.png +0 -0
  449. data/vendor/local/share/gtk-doc/html/clutter/go01.html +114 -0
  450. data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
  451. data/vendor/local/share/gtk-doc/html/clutter/index.html +451 -0
  452. data/vendor/local/share/gtk-doc/html/clutter/index.sgml +3272 -0
  453. data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +56 -0
  454. data/vendor/local/share/gtk-doc/html/clutter/ix01.html +8815 -0
  455. data/vendor/local/share/gtk-doc/html/clutter/ix02.html +1961 -0
  456. data/vendor/local/share/gtk-doc/html/clutter/ix03.html +454 -0
  457. data/vendor/local/share/gtk-doc/html/clutter/ix04.html +583 -0
  458. data/vendor/local/share/gtk-doc/html/clutter/ix05.html +957 -0
  459. data/vendor/local/share/gtk-doc/html/clutter/ix06.html +642 -0
  460. data/vendor/local/share/gtk-doc/html/clutter/ix07.html +1530 -0
  461. data/vendor/local/share/gtk-doc/html/clutter/ix08.html +820 -0
  462. data/vendor/local/share/gtk-doc/html/clutter/ix09.html +1005 -0
  463. data/vendor/local/share/gtk-doc/html/clutter/ix10.html +369 -0
  464. data/vendor/local/share/gtk-doc/html/clutter/ix11.html +366 -0
  465. data/vendor/local/share/gtk-doc/html/clutter/ix12.html +1078 -0
  466. data/vendor/local/share/gtk-doc/html/clutter/ix13.html +984 -0
  467. data/vendor/local/share/gtk-doc/html/clutter/ix14.html +99 -0
  468. data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
  469. data/vendor/local/share/gtk-doc/html/clutter/license.html +58 -0
  470. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +223 -0
  471. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +197 -0
  472. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +154 -0
  473. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +156 -0
  474. data/vendor/local/share/gtk-doc/html/clutter/migration.html +49 -0
  475. data/vendor/local/share/gtk-doc/html/clutter/offscreen-redirect.png +0 -0
  476. data/vendor/local/share/gtk-doc/html/clutter/path-alpha-func.png +0 -0
  477. data/vendor/local/share/gtk-doc/html/clutter/pt09.html +31 -0
  478. data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
  479. data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +373 -0
  480. data/vendor/local/share/gtk-doc/html/clutter/style.css +266 -0
  481. data/vendor/local/share/gtk-doc/html/clutter/table-layout.png +0 -0
  482. data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
  483. data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +36 -0
  484. data/vendor/local/share/gtk-doc/html/json-glib/JsonBuilder.html +513 -0
  485. data/vendor/local/share/gtk-doc/html/json-glib/JsonGenerator.html +492 -0
  486. data/vendor/local/share/gtk-doc/html/json-glib/JsonParser.html +871 -0
  487. data/vendor/local/share/gtk-doc/html/json-glib/JsonPath.html +464 -0
  488. data/vendor/local/share/gtk-doc/html/json-glib/JsonReader.html +898 -0
  489. data/vendor/local/share/gtk-doc/html/json-glib/annotation-glossary.html +87 -0
  490. data/vendor/local/share/gtk-doc/html/json-glib/ch01.html +41 -0
  491. data/vendor/local/share/gtk-doc/html/json-glib/ch02.html +41 -0
  492. data/vendor/local/share/gtk-doc/html/json-glib/ch03.html +38 -0
  493. data/vendor/local/share/gtk-doc/html/json-glib/ch04.html +38 -0
  494. data/vendor/local/share/gtk-doc/html/json-glib/home.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/json-glib/index.html +125 -0
  496. data/vendor/local/share/gtk-doc/html/json-glib/index.sgml +308 -0
  497. data/vendor/local/share/gtk-doc/html/json-glib/ix01.html +926 -0
  498. data/vendor/local/share/gtk-doc/html/json-glib/ix02.html +54 -0
  499. data/vendor/local/share/gtk-doc/html/json-glib/ix03.html +61 -0
  500. data/vendor/local/share/gtk-doc/html/json-glib/ix04.html +54 -0
  501. data/vendor/local/share/gtk-doc/html/json-glib/ix05.html +186 -0
  502. data/vendor/local/share/gtk-doc/html/json-glib/ix06.html +121 -0
  503. data/vendor/local/share/gtk-doc/html/json-glib/ix07.html +161 -0
  504. data/vendor/local/share/gtk-doc/html/json-glib/ix08.html +137 -0
  505. data/vendor/local/share/gtk-doc/html/json-glib/json-advanced.html +47 -0
  506. data/vendor/local/share/gtk-doc/html/json-glib/json-base.html +61 -0
  507. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html +382 -0
  508. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html +310 -0
  509. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html +850 -0
  510. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html +272 -0
  511. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html +942 -0
  512. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html +993 -0
  513. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html +476 -0
  514. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +148 -0
  515. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.devhelp2 +281 -0
  516. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.html +38 -0
  517. data/vendor/local/share/gtk-doc/html/json-glib/json-streams.html +63 -0
  518. data/vendor/local/share/gtk-doc/html/json-glib/json-tools.html +39 -0
  519. data/vendor/local/share/gtk-doc/html/json-glib/left.png +0 -0
  520. data/vendor/local/share/gtk-doc/html/json-glib/license.html +58 -0
  521. data/vendor/local/share/gtk-doc/html/json-glib/right.png +0 -0
  522. data/vendor/local/share/gtk-doc/html/json-glib/style.css +266 -0
  523. data/vendor/local/share/gtk-doc/html/json-glib/up.png +0 -0
  524. data/vendor/local/share/license/clutter/COPYING +502 -0
  525. data/vendor/local/share/license/cogl/COPYING +502 -0
  526. data/vendor/local/share/license/freeglut/AUTHORS +39 -0
  527. data/vendor/local/share/license/freeglut/COPYING +27 -0
  528. data/vendor/local/share/license/json-glib/COPYING +504 -0
  529. data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
  530. data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
  531. data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
  532. data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
  533. data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
  534. data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
  535. data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
  536. data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
  537. data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
  538. data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
  539. data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
  540. data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
  541. data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
  542. data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
  543. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
  544. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
  545. data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
  546. data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
  547. data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
  548. data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
  549. data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
  550. data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
  551. data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
  552. data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
  553. data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
  554. data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
  555. data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
  556. data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
  557. data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
  558. data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
  559. data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
  560. data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
  561. data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
  562. data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
  563. data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
  564. data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
  565. data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
  566. data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
  567. data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
  568. data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
  569. data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
  570. data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
  571. data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
  572. data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  573. data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
  574. data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
  575. data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
  576. data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
  577. data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
  578. data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
  579. data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
  580. data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
  581. data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
  582. data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
  583. data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
  584. data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
  585. data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
  586. data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
  587. data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
  588. data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
  589. data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
  590. data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
  591. data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
  592. data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
  593. data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
  594. data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
  595. data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
  596. data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
  597. data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
  598. data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
  599. data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
  600. data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
  601. data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
  602. data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
  603. data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
  604. data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
  605. data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
  606. data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
  607. data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
  608. data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
  609. data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
  610. data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  611. data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
  612. data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
  613. data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
  614. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
  615. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
  616. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
  617. data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
  618. data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
  619. data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
  620. data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
  621. data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
  622. data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
  623. data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
  624. data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
  625. data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  626. data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
  627. data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
  628. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
  629. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
  630. data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
  631. data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
  632. data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  633. data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
  634. data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
  635. data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
  636. data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
  637. data/vendor/local/share/locale/tg/LC_MESSAGES/clutter-1.0.mo +0 -0
  638. data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
  639. data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
  640. data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
  641. data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  642. data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
  643. data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
  644. data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
  645. data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
  646. data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
  647. data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
  648. data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  649. data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
  650. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
  651. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
  652. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
  653. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
  654. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
  655. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
  656. metadata +747 -0
@@ -0,0 +1,432 @@
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>ClutterAnimatable</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="ch09.html" title="Base classes">
9
+ <link rel="prev" href="clutter-Value-intervals.html" title="Value intervals">
10
+ <link rel="next" href="ClutterTransition.html" title="ClutterTransition">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="clutter-Value-intervals.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="ch09.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">Clutter Reference Manual</th>
21
+ <td><a accesskey="n" href="ClutterTransition.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#ClutterAnimatable.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#ClutterAnimatable.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#ClutterAnimatable.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#ClutterAnimatable.prerequisites" class="shortcut">Prerequisites</a>
31
+  | 
32
+ <a href="#ClutterAnimatable.implementations" class="shortcut">Known Implementations</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="ClutterAnimatable"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="ClutterAnimatable.top_of_page"></a>ClutterAnimatable</span></h2>
40
+ <p>ClutterAnimatable — Interface for animatable classes</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="ClutterAnimatable.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis"> <a class="link" href="ClutterAnimatable.html#ClutterAnimatable-struct" title="ClutterAnimatable">ClutterAnimatable</a>;
47
+ struct <a class="link" href="ClutterAnimatable.html#ClutterAnimatableIface" title="struct ClutterAnimatableIface">ClutterAnimatableIface</a>;
48
+ <span class="returnvalue">gboolean</span> <a class="link" href="ClutterAnimatable.html#clutter-animatable-animate-property" title="clutter_animatable_animate_property ()">clutter_animatable_animate_property</a> (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
49
+ <em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
50
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
51
+ <em class="parameter"><code>const <span class="type">GValue</span> *initial_value</code></em>,
52
+ <em class="parameter"><code>const <span class="type">GValue</span> *final_value</code></em>,
53
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
54
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
55
+ <span class="returnvalue">GParamSpec</span> * <a class="link" href="ClutterAnimatable.html#clutter-animatable-find-property" title="clutter_animatable_find_property ()">clutter_animatable_find_property</a> (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
56
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);
57
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimatable.html#clutter-animatable-get-initial-state" title="clutter_animatable_get_initial_state ()">clutter_animatable_get_initial_state</a>
58
+ (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
59
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
60
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimatable.html#clutter-animatable-set-final-state" title="clutter_animatable_set_final_state ()">clutter_animatable_set_final_state</a> (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
62
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
63
+ <em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);
64
+ <span class="returnvalue">gboolean</span> <a class="link" href="ClutterAnimatable.html#clutter-animatable-interpolate-value" title="clutter_animatable_interpolate_value ()">clutter_animatable_interpolate_value</a>
65
+ (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
66
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
67
+ <em class="parameter"><code><a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> *interval</code></em>,
68
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
69
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
70
+ </pre>
71
+ </div>
72
+ <div class="refsect1">
73
+ <a name="ClutterAnimatable.object-hierarchy"></a><h2>Object Hierarchy</h2>
74
+ <pre class="synopsis">
75
+ GInterface
76
+ +----ClutterAnimatable
77
+ </pre>
78
+ </div>
79
+ <div class="refsect1">
80
+ <a name="ClutterAnimatable.prerequisites"></a><h2>Prerequisites</h2>
81
+ <p>
82
+ ClutterAnimatable requires
83
+ GObject.</p>
84
+ </div>
85
+ <div class="refsect1">
86
+ <a name="ClutterAnimatable.implementations"></a><h2>Known Implementations</h2>
87
+ <p>
88
+ ClutterAnimatable is implemented by
89
+ <a class="link" href="ClutterActor.html" title="ClutterActor">ClutterActor</a>, <a class="link" href="ClutterBox.html" title="ClutterBox">ClutterBox</a>, <a class="link" href="ClutterCairoTexture.html" title="ClutterCairoTexture">ClutterCairoTexture</a>, <a class="link" href="ClutterClone.html" title="ClutterClone">ClutterClone</a>, <a class="link" href="ClutterGroup.html" title="ClutterGroup">ClutterGroup</a>, <a class="link" href="ClutterRectangle.html" title="ClutterRectangle">ClutterRectangle</a>, <a class="link" href="ClutterScrollActor.html" title="ClutterScrollActor">ClutterScrollActor</a>, <a class="link" href="ClutterStage.html" title="ClutterStage">ClutterStage</a>, <a class="link" href="ClutterText.html" title="ClutterText">ClutterText</a> and <a class="link" href="ClutterTexture.html" title="ClutterTexture">ClutterTexture</a>.</p>
90
+ </div>
91
+ <div class="refsect1">
92
+ <a name="ClutterAnimatable.description"></a><h2>Description</h2>
93
+ <p>
94
+ <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> is an interface that allows a <span class="type">GObject</span> class
95
+ to control how a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will animate a property.
96
+ </p>
97
+ <p>
98
+ Each <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> should implement the
99
+ <code class="function">ClutterAnimatableIface.interpolate_property()</code> virtual function of the
100
+ interface to compute the animation state between two values of an interval
101
+ depending on a progress factor, expressed as a floating point value.
102
+ </p>
103
+ <p>
104
+ If a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> is animated by a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>
105
+ instance, the <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> will call
106
+ <code class="function">clutter_animatable_interpolate_property()</code> passing the name of the
107
+ currently animated property; the values interval; and the progress factor.
108
+ The <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> implementation should return the computed value for
109
+ the animated
110
+ property.
111
+ </p>
112
+ <p>
113
+ <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> is available since Clutter 1.0
114
+ </p>
115
+ </div>
116
+ <div class="refsect1">
117
+ <a name="ClutterAnimatable.details"></a><h2>Details</h2>
118
+ <div class="refsect2">
119
+ <a name="ClutterAnimatable-struct"></a><h3>ClutterAnimatable</h3>
120
+ <pre class="programlisting">typedef struct _ClutterAnimatable ClutterAnimatable;</pre>
121
+ <p>
122
+ <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> is an opaque structure whose members cannot be directly
123
+ accessed
124
+ </p>
125
+ <p class="since">Since 1.0</p>
126
+ </div>
127
+ <hr>
128
+ <div class="refsect2">
129
+ <a name="ClutterAnimatableIface"></a><h3>struct ClutterAnimatableIface</h3>
130
+ <pre class="programlisting">struct ClutterAnimatableIface {
131
+ gboolean (* animate_property) (ClutterAnimatable *animatable,
132
+ ClutterAnimation *animation,
133
+ const gchar *property_name,
134
+ const GValue *initial_value,
135
+ const GValue *final_value,
136
+ gdouble progress,
137
+ GValue *value);
138
+ GParamSpec *(* find_property) (ClutterAnimatable *animatable,
139
+ const gchar *property_name);
140
+ void (* get_initial_state) (ClutterAnimatable *animatable,
141
+ const gchar *property_name,
142
+ GValue *value);
143
+ void (* set_final_state) (ClutterAnimatable *animatable,
144
+ const gchar *property_name,
145
+ const GValue *value);
146
+ gboolean (* interpolate_value) (ClutterAnimatable *animatable,
147
+ const gchar *property_name,
148
+ ClutterInterval *interval,
149
+ gdouble progress,
150
+ GValue *value);
151
+ };
152
+ </pre>
153
+ <p>
154
+ Base interface for <span class="type">GObject</span>s that can be animated by a
155
+ a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>.
156
+ </p>
157
+ <div class="variablelist"><table border="0" class="variablelist">
158
+ <colgroup>
159
+ <col align="left" valign="top">
160
+ <col>
161
+ </colgroup>
162
+ <tbody>
163
+ <tr>
164
+ <td><p><span class="term"><em class="structfield"><code><a name="ClutterAnimatableIface.animate-property"></a>animate_property</code></em> ()</span></p></td>
165
+ <td>virtual function for custom interpolation of a
166
+ property. This virtual function is deprecated</td>
167
+ </tr>
168
+ <tr>
169
+ <td><p><span class="term"><em class="structfield"><code><a name="ClutterAnimatableIface.find-property"></a>find_property</code></em> ()</span></p></td>
170
+ <td>virtual function for retrieving the <span class="type">GParamSpec</span> of
171
+ an animatable property</td>
172
+ </tr>
173
+ <tr>
174
+ <td><p><span class="term"><em class="structfield"><code><a name="ClutterAnimatableIface.get-initial-state"></a>get_initial_state</code></em> ()</span></p></td>
175
+ <td>virtual function for retrieving the initial
176
+ state of an animatable property</td>
177
+ </tr>
178
+ <tr>
179
+ <td><p><span class="term"><em class="structfield"><code><a name="ClutterAnimatableIface.set-final-state"></a>set_final_state</code></em> ()</span></p></td>
180
+ <td>virtual function for setting the state of an
181
+ animatable property</td>
182
+ </tr>
183
+ <tr>
184
+ <td><p><span class="term"><em class="structfield"><code><a name="ClutterAnimatableIface.interpolate-value"></a>interpolate_value</code></em> ()</span></p></td>
185
+ <td>virtual function for interpolating the progress
186
+ of a property</td>
187
+ </tr>
188
+ </tbody>
189
+ </table></div>
190
+ <p class="since">Since 1.0</p>
191
+ </div>
192
+ <hr>
193
+ <div class="refsect2">
194
+ <a name="clutter-animatable-animate-property"></a><h3>clutter_animatable_animate_property ()</h3>
195
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_animatable_animate_property (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
196
+ <em class="parameter"><code><a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a> *animation</code></em>,
197
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
198
+ <em class="parameter"><code>const <span class="type">GValue</span> *initial_value</code></em>,
199
+ <em class="parameter"><code>const <span class="type">GValue</span> *final_value</code></em>,
200
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
201
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
202
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
203
+ <h3 class="title">Warning</h3>
204
+ <p><code class="literal">clutter_animatable_animate_property</code> has been deprecated since version 1.8 and should not be used in newly-written code. Use <a class="link" href="ClutterAnimatable.html#clutter-animatable-interpolate-value" title="clutter_animatable_interpolate_value ()"><code class="function">clutter_animatable_interpolate_value()</code></a>
205
+ instead</p>
206
+ </div>
207
+ <p>
208
+ Calls the <code class="function">animate_property()</code> virtual function for <em class="parameter"><code>animatable</code></em>.
209
+ </p>
210
+ <p>
211
+ The <em class="parameter"><code>initial_value</code></em> and <em class="parameter"><code>final_value</code></em> <span class="type">GValue</span>s must contain
212
+ the same type; <em class="parameter"><code>value</code></em> must have been initialized to the same
213
+ type of <em class="parameter"><code>initial_value</code></em> and <em class="parameter"><code>final_value</code></em>.
214
+ </p>
215
+ <p>
216
+ All implementation of the <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> interface must
217
+ implement this function.
218
+ </p>
219
+ <div class="variablelist"><table border="0" class="variablelist">
220
+ <colgroup>
221
+ <col align="left" valign="top">
222
+ <col>
223
+ </colgroup>
224
+ <tbody>
225
+ <tr>
226
+ <td><p><span class="term"><em class="parameter"><code>animatable</code></em> :</span></p></td>
227
+ <td>a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>
228
+ </td>
229
+ </tr>
230
+ <tr>
231
+ <td><p><span class="term"><em class="parameter"><code>animation</code></em> :</span></p></td>
232
+ <td>a <a class="link" href="clutter-Implicit-Animations.html#ClutterAnimation"><span class="type">ClutterAnimation</span></a>
233
+ </td>
234
+ </tr>
235
+ <tr>
236
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
237
+ <td>the name of the animated property</td>
238
+ </tr>
239
+ <tr>
240
+ <td><p><span class="term"><em class="parameter"><code>initial_value</code></em> :</span></p></td>
241
+ <td>the initial value of the animation interval</td>
242
+ </tr>
243
+ <tr>
244
+ <td><p><span class="term"><em class="parameter"><code>final_value</code></em> :</span></p></td>
245
+ <td>the final value of the animation interval</td>
246
+ </tr>
247
+ <tr>
248
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
249
+ <td>the progress factor</td>
250
+ </tr>
251
+ <tr>
252
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
253
+ <td>return location for the animation value</td>
254
+ </tr>
255
+ <tr>
256
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
257
+ <td>
258
+ <code class="literal">TRUE</code> if the value has been validated and can
259
+ be applied to the <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>, and <code class="literal">FALSE</code> otherwise</td>
260
+ </tr>
261
+ </tbody>
262
+ </table></div>
263
+ <p class="since">Since 1.0</p>
264
+ </div>
265
+ <hr>
266
+ <div class="refsect2">
267
+ <a name="clutter-animatable-find-property"></a><h3>clutter_animatable_find_property ()</h3>
268
+ <pre class="programlisting"><span class="returnvalue">GParamSpec</span> * clutter_animatable_find_property (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
269
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
270
+ <p>
271
+ Finds the <span class="type">GParamSpec</span> for <em class="parameter"><code>property_name</code></em>
272
+ </p>
273
+ <div class="variablelist"><table border="0" class="variablelist">
274
+ <colgroup>
275
+ <col align="left" valign="top">
276
+ <col>
277
+ </colgroup>
278
+ <tbody>
279
+ <tr>
280
+ <td><p><span class="term"><em class="parameter"><code>animatable</code></em> :</span></p></td>
281
+ <td>a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>
282
+ </td>
283
+ </tr>
284
+ <tr>
285
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
286
+ <td>the name of the animatable property to find</td>
287
+ </tr>
288
+ <tr>
289
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
290
+ <td>The <span class="type">GParamSpec</span> for the given property
291
+ or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
292
+ </td>
293
+ </tr>
294
+ </tbody>
295
+ </table></div>
296
+ <p class="since">Since 1.4</p>
297
+ </div>
298
+ <hr>
299
+ <div class="refsect2">
300
+ <a name="clutter-animatable-get-initial-state"></a><h3>clutter_animatable_get_initial_state ()</h3>
301
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animatable_get_initial_state
302
+ (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
303
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
304
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
305
+ <p>
306
+ Retrieves the current state of <em class="parameter"><code>property_name</code></em> and sets <em class="parameter"><code>value</code></em> with it
307
+ </p>
308
+ <div class="variablelist"><table border="0" class="variablelist">
309
+ <colgroup>
310
+ <col align="left" valign="top">
311
+ <col>
312
+ </colgroup>
313
+ <tbody>
314
+ <tr>
315
+ <td><p><span class="term"><em class="parameter"><code>animatable</code></em> :</span></p></td>
316
+ <td>a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>
317
+ </td>
318
+ </tr>
319
+ <tr>
320
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
321
+ <td>the name of the animatable property to retrieve</td>
322
+ </tr>
323
+ <tr>
324
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
325
+ <td>a <span class="type">GValue</span> initialized to the type of the property to retrieve</td>
326
+ </tr>
327
+ </tbody>
328
+ </table></div>
329
+ <p class="since">Since 1.4</p>
330
+ </div>
331
+ <hr>
332
+ <div class="refsect2">
333
+ <a name="clutter-animatable-set-final-state"></a><h3>clutter_animatable_set_final_state ()</h3>
334
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animatable_set_final_state (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
335
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
336
+ <em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);</pre>
337
+ <p>
338
+ Sets the current state of <em class="parameter"><code>property_name</code></em> to <em class="parameter"><code>value</code></em>
339
+ </p>
340
+ <div class="variablelist"><table border="0" class="variablelist">
341
+ <colgroup>
342
+ <col align="left" valign="top">
343
+ <col>
344
+ </colgroup>
345
+ <tbody>
346
+ <tr>
347
+ <td><p><span class="term"><em class="parameter"><code>animatable</code></em> :</span></p></td>
348
+ <td>a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>
349
+ </td>
350
+ </tr>
351
+ <tr>
352
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
353
+ <td>the name of the animatable property to set</td>
354
+ </tr>
355
+ <tr>
356
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
357
+ <td>the value of the animatable property to set</td>
358
+ </tr>
359
+ </tbody>
360
+ </table></div>
361
+ <p class="since">Since 1.4</p>
362
+ </div>
363
+ <hr>
364
+ <div class="refsect2">
365
+ <a name="clutter-animatable-interpolate-value"></a><h3>clutter_animatable_interpolate_value ()</h3>
366
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_animatable_interpolate_value
367
+ (<em class="parameter"><code><a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> *animatable</code></em>,
368
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
369
+ <em class="parameter"><code><a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> *interval</code></em>,
370
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
371
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
372
+ <p>
373
+ Asks a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a> implementation to interpolate a
374
+ a named property between the initial and final values of
375
+ a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a>, using <em class="parameter"><code>progress</code></em> as the interpolation
376
+ value, and store the result inside <em class="parameter"><code>value</code></em>.
377
+ </p>
378
+ <p>
379
+ This function should be used for every property animation
380
+ involving <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>s.
381
+ </p>
382
+ <p>
383
+ This function replaces <a class="link" href="ClutterAnimatable.html#clutter-animatable-animate-property" title="clutter_animatable_animate_property ()"><code class="function">clutter_animatable_animate_property()</code></a>.
384
+ </p>
385
+ <div class="variablelist"><table border="0" class="variablelist">
386
+ <colgroup>
387
+ <col align="left" valign="top">
388
+ <col>
389
+ </colgroup>
390
+ <tbody>
391
+ <tr>
392
+ <td><p><span class="term"><em class="parameter"><code>animatable</code></em> :</span></p></td>
393
+ <td>a <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable"><span class="type">ClutterAnimatable</span></a>
394
+ </td>
395
+ </tr>
396
+ <tr>
397
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
398
+ <td>the name of the property to interpolate</td>
399
+ </tr>
400
+ <tr>
401
+ <td><p><span class="term"><em class="parameter"><code>interval</code></em> :</span></p></td>
402
+ <td>a <a class="link" href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterInterval</span></a> with the animation range</td>
403
+ </tr>
404
+ <tr>
405
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
406
+ <td>the progress to use to interpolate between the
407
+ initial and final values of the <em class="parameter"><code>interval</code></em>
408
+ </td>
409
+ </tr>
410
+ <tr>
411
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
412
+ <td>return location for an initialized <span class="type">GValue</span>
413
+ using the same type of the <em class="parameter"><code>interval</code></em>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
414
+ </td>
415
+ </tr>
416
+ <tr>
417
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
418
+ <td>
419
+ <code class="literal">TRUE</code> if the interpolation was successful,
420
+ and <code class="literal">FALSE</code> otherwise</td>
421
+ </tr>
422
+ </tbody>
423
+ </table></div>
424
+ <p class="since">Since 1.8</p>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ <div class="footer">
429
+ <hr>
430
+ Generated by GTK-Doc V1.18.1</div>
431
+ </body>
432
+ </html>
@@ -0,0 +1,1218 @@
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>ClutterAnimator</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="deprecated.html" title="Part IX. Deprecated Classes">
9
+ <link rel="prev" href="clutter-Implicit-Animations.html" title="Implicit Animations">
10
+ <link rel="next" href="ClutterBehaviour.html" title="ClutterBehaviour">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="clutter-Implicit-Animations.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="deprecated.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">Clutter Reference Manual</th>
21
+ <td><a accesskey="n" href="ClutterBehaviour.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#ClutterAnimator.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#ClutterAnimator.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#ClutterAnimator.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#ClutterAnimator.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#ClutterAnimator.properties" class="shortcut">Properties</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="ClutterAnimator"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="ClutterAnimator.top_of_page"></a>ClutterAnimator</span></h2>
40
+ <p>ClutterAnimator — Multi-actor tweener</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="ClutterAnimator.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis"> <a class="link" href="ClutterAnimator.html#ClutterAnimator-struct" title="ClutterAnimator">ClutterAnimator</a>;
47
+ struct <a class="link" href="ClutterAnimator.html#ClutterAnimatorClass" title="struct ClutterAnimatorClass">ClutterAnimatorClass</a>;
48
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="returnvalue">ClutterAnimator</span></a> * <a class="link" href="ClutterAnimator.html#clutter-animator-new" title="clutter_animator_new ()">clutter_animator_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-set" title="clutter_animator_set ()">clutter_animator_set</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
50
+ <em class="parameter"><code><span class="type">gpointer</span> first_object</code></em>,
51
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
52
+ <em class="parameter"><code><span class="type">guint</span> first_mode</code></em>,
53
+ <em class="parameter"><code><span class="type">gdouble</span> first_progress</code></em>,
54
+ <em class="parameter"><code>...</code></em>);
55
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="returnvalue">ClutterAnimator</span></a> * <a class="link" href="ClutterAnimator.html#clutter-animator-set-key" title="clutter_animator_set_key ()">clutter_animator_set_key</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
56
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
57
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
58
+ <em class="parameter"><code><span class="type">guint</span> mode</code></em>,
59
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
60
+ <em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-remove-key" title="clutter_animator_remove_key ()">clutter_animator_remove_key</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
62
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
63
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
64
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);
65
+ <span class="returnvalue">GList</span> * <a class="link" href="ClutterAnimator.html#clutter-animator-get-keys" title="clutter_animator_get_keys ()">clutter_animator_get_keys</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
66
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
67
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
68
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);
69
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * <a class="link" href="ClutterAnimator.html#clutter-animator-start" title="clutter_animator_start ()">clutter_animator_start</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);
70
+ <span class="returnvalue">gboolean</span> <a class="link" href="ClutterAnimator.html#clutter-animator-compute-value" title="clutter_animator_compute_value ()">clutter_animator_compute_value</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
71
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
72
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
73
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
74
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
75
+
76
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-set-timeline" title="clutter_animator_set_timeline ()">clutter_animator_set_timeline</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
77
+ <em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);
78
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * <a class="link" href="ClutterAnimator.html#clutter-animator-get-timeline" title="clutter_animator_get_timeline ()">clutter_animator_get_timeline</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);
79
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-set-duration" title="clutter_animator_set_duration ()">clutter_animator_set_duration</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
80
+ <em class="parameter"><code><span class="type">guint</span> duration</code></em>);
81
+ <span class="returnvalue">guint</span> <a class="link" href="ClutterAnimator.html#clutter-animator-get-duration" title="clutter_animator_get_duration ()">clutter_animator_get_duration</a> (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);
82
+
83
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-property-set-ease-in" title="clutter_animator_property_set_ease_in ()">clutter_animator_property_set_ease_in</a>
84
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
85
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
86
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
87
+ <em class="parameter"><code><span class="type">gboolean</span> ease_in</code></em>);
88
+ <span class="returnvalue">gboolean</span> <a class="link" href="ClutterAnimator.html#clutter-animator-property-get-ease-in" title="clutter_animator_property_get_ease_in ()">clutter_animator_property_get_ease_in</a>
89
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
90
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
91
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);
92
+ enum <a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation">ClutterInterpolation</a>;
93
+ <span class="returnvalue">void</span> <a class="link" href="ClutterAnimator.html#clutter-animator-property-set-interpolation" title="clutter_animator_property_set_interpolation ()">clutter_animator_property_set_interpolation</a>
94
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
95
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
96
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
97
+ <em class="parameter"><code><a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation"><span class="type">ClutterInterpolation</span></a> interpolation</code></em>);
98
+ <a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation"><span class="returnvalue">ClutterInterpolation</span></a> <a class="link" href="ClutterAnimator.html#clutter-animator-property-get-interpolation" title="clutter_animator_property_get_interpolation ()">clutter_animator_property_get_interpolation</a>
99
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
100
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
101
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);
102
+
103
+ <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey">ClutterAnimatorKey</a>;
104
+ <span class="returnvalue">GObject</span> * <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-object" title="clutter_animator_key_get_object ()">clutter_animator_key_get_object</a> (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);
105
+ const <span class="returnvalue">gchar</span> * <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-property-name" title="clutter_animator_key_get_property_name ()">clutter_animator_key_get_property_name</a>
106
+ (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);
107
+ <span class="returnvalue">GType</span> <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-property-type" title="clutter_animator_key_get_property_type ()">clutter_animator_key_get_property_type</a>
108
+ (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);
109
+ <span class="returnvalue">gulong</span> <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-mode" title="clutter_animator_key_get_mode ()">clutter_animator_key_get_mode</a> (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);
110
+ <span class="returnvalue">gdouble</span> <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-progress" title="clutter_animator_key_get_progress ()">clutter_animator_key_get_progress</a> (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);
111
+ <span class="returnvalue">gboolean</span> <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-value" title="clutter_animator_key_get_value ()">clutter_animator_key_get_value</a> (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>,
112
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
113
+ </pre>
114
+ </div>
115
+ <div class="refsect1">
116
+ <a name="ClutterAnimator.object-hierarchy"></a><h2>Object Hierarchy</h2>
117
+ <pre class="synopsis">
118
+ GObject
119
+ +----ClutterAnimator
120
+ </pre>
121
+ </div>
122
+ <div class="refsect1">
123
+ <a name="ClutterAnimator.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
124
+ <p>
125
+ ClutterAnimator implements
126
+ <a class="link" href="ClutterScriptable.html" title="ClutterScriptable">ClutterScriptable</a>.</p>
127
+ </div>
128
+ <div class="refsect1">
129
+ <a name="ClutterAnimator.properties"></a><h2>Properties</h2>
130
+ <pre class="synopsis">
131
+ "<a class="link" href="ClutterAnimator.html#ClutterAnimator--duration" title='The "duration" property'>duration</a>" <span class="type">guint</span> : Read / Write
132
+ "<a class="link" href="ClutterAnimator.html#ClutterAnimator--timeline" title='The "timeline" property'>timeline</a>" <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>* : Read / Write
133
+ </pre>
134
+ </div>
135
+ <div class="refsect1">
136
+ <a name="ClutterAnimator.description"></a><h2>Description</h2>
137
+ <p>
138
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> is an object providing declarative animations for
139
+ <span class="type">GObject</span> properties belonging to one or more <span class="type">GObject</span>s to
140
+ <a href="clutter-Value-intervals.html#ClutterInterval"><span class="type">ClutterIntervals</span></a>.
141
+ </p>
142
+ <p>
143
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> is used to build and describe complex animations
144
+ in terms of "key frames". <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> is meant to be used
145
+ through the <a class="link" href="ClutterScript.html" title="ClutterScript"><span class="type">ClutterScript</span></a> definition format, but it comes with a
146
+ convenience C API.
147
+ </p>
148
+ <p>
149
+ </p>
150
+ <div class="refsect2">
151
+ <a name="ClutterAnimator-key-frames"></a><h3>Key Frames</h3>
152
+ <p>Every animation handled by a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> can be
153
+ described in terms of "key frames". For each <span class="type">GObject</span> property
154
+ there can be multiple key frames, each one defined by the end
155
+ value for the property to be computed starting from the current
156
+ value to a specific point in time, using a given easing
157
+ mode.</p>
158
+ <p>The point in time is defined using a value representing
159
+ the progress in the normalized interval of [ 0, 1 ]. This maps
160
+ the value returned by <a class="link" href="ClutterTimeline.html#clutter-timeline-get-duration" title="clutter_timeline_get_duration ()"><code class="function">clutter_timeline_get_duration()</code></a>.</p>
161
+ <div class="figure">
162
+ <a name="easing-modes"></a><p class="title"><b>Figure 9. Key Frames</b></p>
163
+ <div class="figure-contents"><div><img src="animator-key-frames.png" alt="Key Frames"></div></div>
164
+ </div>
165
+ <br class="figure-break"><p>In the image above the duration of the animation is
166
+ represented by the blue line. Each key frame is the white dot,
167
+ along with its progress. The red line represents the computed
168
+ function of time given the easing mode.</p>
169
+ </div>
170
+ <p>
171
+ </p>
172
+ <p>
173
+ </p>
174
+ <div class="refsect2">
175
+ <a name="ClutterAnimator-script"></a><h3>ClutterAnimator description for <a class="link" href="ClutterScript.html" title="ClutterScript"><span class="type">ClutterScript</span></a>
176
+ </h3>
177
+ <p><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> defines a custom "properties" property
178
+ which allows describing the key frames for objects.</p>
179
+ <p>The "properties" property has the following syntax:</p>
180
+ <div class="informalexample">
181
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
182
+ <tbody>
183
+ <tr>
184
+ <td class="listing_lines" align="right"><pre>1
185
+ 2
186
+ 3
187
+ 4
188
+ 5
189
+ 6
190
+ 7
191
+ 8
192
+ 9
193
+ 10
194
+ 11
195
+ 12</pre></td>
196
+ <td class="listing_code"><pre class="programlisting"><span class="cbracket">{</span>
197
+ <span class="normal"> </span><span class="string">"properties"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">[</span>
198
+ <span class="normal"> </span><span class="cbracket">{</span>
199
+ <span class="normal"> </span><span class="string">"object"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal">id of </span><span class="usertype">an</span><span class="normal"> object</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span>
200
+ <span class="normal"> </span><span class="string">"name"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal">name of </span><span class="usertype">the</span><span class="normal"> property</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span>
201
+ <span class="normal"> </span><span class="string">"ease-in"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal">boolean</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span>
202
+ <span class="normal"> </span><span class="string">"interpolation"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal">#</span><span class="usertype">ClutterInterpolation</span><span class="normal"> value</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span>
203
+ <span class="normal"> </span><span class="string">"keys"</span><span class="normal"> </span><span class="symbol">:</span><span class="normal"> </span><span class="symbol">[</span>
204
+ <span class="normal"> </span><span class="symbol">[</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal">progress</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="usertype">easing</span><span class="normal"> mode</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="usertype">final</span><span class="normal"> value</span><span class="symbol">&amp;</span><span class="normal">gt</span><span class="symbol">;</span><span class="normal"> </span><span class="symbol">]</span>
205
+ <span class="normal"> </span><span class="symbol">]</span>
206
+ <span class="normal"> </span><span class="symbol">]</span>
207
+ <span class="cbracket">}</span></pre></td>
208
+ </tr>
209
+ </tbody>
210
+ </table>
211
+ </div>
212
+
213
+ <div class="example">
214
+ <a name="ClutterAnimator-script-example"></a><p class="title"><b>Example 22. ClutterAnimator definition</b></p>
215
+ <div class="example-contents">
216
+ <p>The following JSON fragment defines a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
217
+ with the duration of 1 second and operating on the x and y
218
+ properties of a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> named "rect-01", with two frames
219
+ for each property. The first frame will linearly move the actor
220
+ from its current position to the 100, 100 position in 20 percent
221
+ of the duration of the animation; the second will using a cubic
222
+ easing to move the actor to the 200, 200 coordinates.</p>
223
+ <pre class="programlisting">
224
+ {
225
+ "type" : "ClutterAnimator",
226
+ "duration" : 1000,
227
+ "properties" : [
228
+ {
229
+ "object" : "rect-01",
230
+ "name" : "x",
231
+ "ease-in" : true,
232
+ "keys" : [
233
+ [ 0.2, "linear", 100.0 ],
234
+ [ 1.0, "easeOutCubic", 200.0 ]
235
+ ]
236
+ },
237
+ {
238
+ "object" : "rect-01",
239
+ "name" : "y",
240
+ "ease-in" : true,
241
+ "keys" : [
242
+ [ 0.2, "linear", 100.0 ],
243
+ [ 1.0, "easeOutCubic", 200.0 ]
244
+ ]
245
+ }
246
+ ]
247
+ }
248
+ </pre>
249
+ </div>
250
+ </div>
251
+ <br class="example-break">
252
+ </div>
253
+ <p>
254
+ </p>
255
+ <p>
256
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> is available since Clutter 1.2
257
+ </p>
258
+ <p>
259
+ <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> has been deprecated in Clutter 1.12
260
+ </p>
261
+ </div>
262
+ <div class="refsect1">
263
+ <a name="ClutterAnimator.details"></a><h2>Details</h2>
264
+ <div class="refsect2">
265
+ <a name="ClutterAnimator-struct"></a><h3>ClutterAnimator</h3>
266
+ <pre class="programlisting">typedef struct _ClutterAnimator ClutterAnimator;</pre>
267
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
268
+ <h3 class="title">Warning</h3>
269
+ <p><code class="literal">ClutterAnimator</code> is deprecated and should not be used in newly-written code. 1.12</p>
270
+ </div>
271
+ <p>
272
+ The <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> structure contains only private data and
273
+ should be accessed using the provided API
274
+ </p>
275
+ <p class="since">Since 1.2</p>
276
+ </div>
277
+ <hr>
278
+ <div class="refsect2">
279
+ <a name="ClutterAnimatorClass"></a><h3>struct ClutterAnimatorClass</h3>
280
+ <pre class="programlisting">struct ClutterAnimatorClass {
281
+ };
282
+ </pre>
283
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
284
+ <h3 class="title">Warning</h3>
285
+ <p><code class="literal">ClutterAnimatorClass</code> is deprecated and should not be used in newly-written code. 1.12</p>
286
+ </div>
287
+ <p>
288
+ The <a class="link" href="ClutterAnimator.html#ClutterAnimatorClass" title="struct ClutterAnimatorClass"><span class="type">ClutterAnimatorClass</span></a> structure contains only private data
289
+ </p>
290
+ <p class="since">Since 1.2</p>
291
+ </div>
292
+ <hr>
293
+ <div class="refsect2">
294
+ <a name="clutter-animator-new"></a><h3>clutter_animator_new ()</h3>
295
+ <pre class="programlisting"><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="returnvalue">ClutterAnimator</span></a> * clutter_animator_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
296
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
297
+ <h3 class="title">Warning</h3>
298
+ <p><code class="literal">clutter_animator_new</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
299
+ </div>
300
+ <p>
301
+ Creates a new <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> instance
302
+ </p>
303
+ <div class="variablelist"><table border="0" class="variablelist">
304
+ <colgroup>
305
+ <col align="left" valign="top">
306
+ <col>
307
+ </colgroup>
308
+ <tbody><tr>
309
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
310
+ <td>a new <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>.</td>
311
+ </tr></tbody>
312
+ </table></div>
313
+ <p class="since">Since 1.2</p>
314
+ </div>
315
+ <hr>
316
+ <div class="refsect2">
317
+ <a name="clutter-animator-set"></a><h3>clutter_animator_set ()</h3>
318
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_set (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
319
+ <em class="parameter"><code><span class="type">gpointer</span> first_object</code></em>,
320
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
321
+ <em class="parameter"><code><span class="type">guint</span> first_mode</code></em>,
322
+ <em class="parameter"><code><span class="type">gdouble</span> first_progress</code></em>,
323
+ <em class="parameter"><code>...</code></em>);</pre>
324
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
325
+ <h3 class="title">Warning</h3>
326
+ <p><code class="literal">clutter_animator_set</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
327
+ </div>
328
+ <p>
329
+ Adds multiple keys to a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>, specifying the value a given
330
+ property should have at a given progress of the animation. The mode
331
+ specified is the mode used when going to this key from the previous key of
332
+ the <em class="parameter"><code>property_name</code></em>
333
+ </p>
334
+ <p>
335
+ If a given (object, property, progress) tuple already exist the mode and
336
+ value will be replaced with the new values.
337
+ </p>
338
+ <div class="variablelist"><table border="0" class="variablelist">
339
+ <colgroup>
340
+ <col align="left" valign="top">
341
+ <col>
342
+ </colgroup>
343
+ <tbody>
344
+ <tr>
345
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
346
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
347
+ </td>
348
+ </tr>
349
+ <tr>
350
+ <td><p><span class="term"><em class="parameter"><code>first_object</code></em> :</span></p></td>
351
+ <td>a <span class="type">GObject</span>
352
+ </td>
353
+ </tr>
354
+ <tr>
355
+ <td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
356
+ <td>the property to specify a key for</td>
357
+ </tr>
358
+ <tr>
359
+ <td><p><span class="term"><em class="parameter"><code>first_mode</code></em> :</span></p></td>
360
+ <td>the id of the alpha function to use</td>
361
+ </tr>
362
+ <tr>
363
+ <td><p><span class="term"><em class="parameter"><code>first_progress</code></em> :</span></p></td>
364
+ <td>at which stage of the animation this value applies; the
365
+ range is a normalized floating point value between 0 and 1</td>
366
+ </tr>
367
+ <tr>
368
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
369
+ <td>the value first_property_name should have for first_object
370
+ at first_progress, followed by more (object, property_name, mode,
371
+ progress, value) tuples, followed by <code class="literal">NULL</code>
372
+ </td>
373
+ </tr>
374
+ </tbody>
375
+ </table></div>
376
+ <p class="since">Since 1.2</p>
377
+ </div>
378
+ <hr>
379
+ <div class="refsect2">
380
+ <a name="clutter-animator-set-key"></a><h3>clutter_animator_set_key ()</h3>
381
+ <pre class="programlisting"><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="returnvalue">ClutterAnimator</span></a> * clutter_animator_set_key (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
382
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
383
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
384
+ <em class="parameter"><code><span class="type">guint</span> mode</code></em>,
385
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
386
+ <em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);</pre>
387
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
388
+ <h3 class="title">Warning</h3>
389
+ <p><code class="literal">clutter_animator_set_key</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
390
+ </div>
391
+ <p>
392
+ Sets a single key in the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> for the <em class="parameter"><code>property_name</code></em> of
393
+ <em class="parameter"><code>object</code></em> at <em class="parameter"><code>progress</code></em>.
394
+ </p>
395
+ <p>
396
+ See also: <a class="link" href="ClutterAnimator.html#clutter-animator-set" title="clutter_animator_set ()"><code class="function">clutter_animator_set()</code></a>
397
+ </p>
398
+ <div class="variablelist"><table border="0" class="variablelist">
399
+ <colgroup>
400
+ <col align="left" valign="top">
401
+ <col>
402
+ </colgroup>
403
+ <tbody>
404
+ <tr>
405
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
406
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
407
+ </td>
408
+ </tr>
409
+ <tr>
410
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
411
+ <td>a <span class="type">GObject</span>
412
+ </td>
413
+ </tr>
414
+ <tr>
415
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
416
+ <td>the property to specify a key for</td>
417
+ </tr>
418
+ <tr>
419
+ <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
420
+ <td>the id of the alpha function to use</td>
421
+ </tr>
422
+ <tr>
423
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
424
+ <td>the normalized range at which stage of the animation this
425
+ value applies</td>
426
+ </tr>
427
+ <tr>
428
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
429
+ <td>the value property_name should have at progress.</td>
430
+ </tr>
431
+ <tr>
432
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
433
+ <td>The animator instance. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
434
+ </td>
435
+ </tr>
436
+ </tbody>
437
+ </table></div>
438
+ <p class="since">Since 1.2</p>
439
+ </div>
440
+ <hr>
441
+ <div class="refsect2">
442
+ <a name="clutter-animator-remove-key"></a><h3>clutter_animator_remove_key ()</h3>
443
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_remove_key (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
444
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
445
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
446
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);</pre>
447
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
448
+ <h3 class="title">Warning</h3>
449
+ <p><code class="literal">clutter_animator_remove_key</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
450
+ </div>
451
+ <p>
452
+ Removes all keys matching the conditions specificed in the arguments.
453
+ </p>
454
+ <div class="variablelist"><table border="0" class="variablelist">
455
+ <colgroup>
456
+ <col align="left" valign="top">
457
+ <col>
458
+ </colgroup>
459
+ <tbody>
460
+ <tr>
461
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
462
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
463
+ </td>
464
+ </tr>
465
+ <tr>
466
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
467
+ <td>a <span class="type">GObject</span> to search for, or <code class="literal">NULL</code> for all. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
468
+ </td>
469
+ </tr>
470
+ <tr>
471
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
472
+ <td>a specific property name to query for,
473
+ or <code class="literal">NULL</code> for all. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
474
+ </td>
475
+ </tr>
476
+ <tr>
477
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
478
+ <td>a specific progress to search for or a negative value
479
+ for all</td>
480
+ </tr>
481
+ </tbody>
482
+ </table></div>
483
+ <p class="since">Since 1.2</p>
484
+ </div>
485
+ <hr>
486
+ <div class="refsect2">
487
+ <a name="clutter-animator-get-keys"></a><h3>clutter_animator_get_keys ()</h3>
488
+ <pre class="programlisting"><span class="returnvalue">GList</span> * clutter_animator_get_keys (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
489
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
490
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
491
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>);</pre>
492
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
493
+ <h3 class="title">Warning</h3>
494
+ <p><code class="literal">clutter_animator_get_keys</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
495
+ </div>
496
+ <p>
497
+ Returns a list of pointers to opaque structures with accessor functions
498
+ that describe the keys added to an animator.
499
+ </p>
500
+ <div class="variablelist"><table border="0" class="variablelist">
501
+ <colgroup>
502
+ <col align="left" valign="top">
503
+ <col>
504
+ </colgroup>
505
+ <tbody>
506
+ <tr>
507
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
508
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> instance</td>
509
+ </tr>
510
+ <tr>
511
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
512
+ <td>a <span class="type">GObject</span> to search for, or <code class="literal">NULL</code> for all objects. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
513
+ </td>
514
+ </tr>
515
+ <tr>
516
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
517
+ <td>a specific property name to query for,
518
+ or <code class="literal">NULL</code> for all properties. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
519
+ </td>
520
+ </tr>
521
+ <tr>
522
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
523
+ <td>a specific progress to search for, or a negative value for all
524
+ progresses</td>
525
+ </tr>
526
+ <tr>
527
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
528
+ <td>a
529
+ list of <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>s; the contents of the list are owned
530
+ by the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>, but you should free the returned list when done,
531
+ using <code class="function">g_list_free()</code>. <span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Clutter.AnimatorKey]</span>
532
+ </td>
533
+ </tr>
534
+ </tbody>
535
+ </table></div>
536
+ <p class="since">Since 1.2</p>
537
+ </div>
538
+ <hr>
539
+ <div class="refsect2">
540
+ <a name="clutter-animator-start"></a><h3>clutter_animator_start ()</h3>
541
+ <pre class="programlisting"><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * clutter_animator_start (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);</pre>
542
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
543
+ <h3 class="title">Warning</h3>
544
+ <p><code class="literal">clutter_animator_start</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
545
+ </div>
546
+ <p>
547
+ Start the ClutterAnimator, this is a thin wrapper that rewinds
548
+ and starts the animators current timeline.
549
+ </p>
550
+ <div class="variablelist"><table border="0" class="variablelist">
551
+ <colgroup>
552
+ <col align="left" valign="top">
553
+ <col>
554
+ </colgroup>
555
+ <tbody>
556
+ <tr>
557
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
558
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
559
+ </td>
560
+ </tr>
561
+ <tr>
562
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
563
+ <td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> that drives
564
+ the animator. The returned timeline is owned by the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
565
+ and it should not be unreferenced. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
566
+ </td>
567
+ </tr>
568
+ </tbody>
569
+ </table></div>
570
+ <p class="since">Since 1.2</p>
571
+ </div>
572
+ <hr>
573
+ <div class="refsect2">
574
+ <a name="clutter-animator-compute-value"></a><h3>clutter_animator_compute_value ()</h3>
575
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_animator_compute_value (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
576
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
577
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
578
+ <em class="parameter"><code><span class="type">gdouble</span> progress</code></em>,
579
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
580
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
581
+ <h3 class="title">Warning</h3>
582
+ <p><code class="literal">clutter_animator_compute_value</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
583
+ </div>
584
+ <p>
585
+ Compute the value for a managed property at a given progress.
586
+ </p>
587
+ <p>
588
+ If the property is an ease-in property, the current value of the property
589
+ on the object will be used as the starting point for computation.
590
+ </p>
591
+ <div class="variablelist"><table border="0" class="variablelist">
592
+ <colgroup>
593
+ <col align="left" valign="top">
594
+ <col>
595
+ </colgroup>
596
+ <tbody>
597
+ <tr>
598
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
599
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
600
+ </td>
601
+ </tr>
602
+ <tr>
603
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
604
+ <td>a <span class="type">GObject</span>
605
+ </td>
606
+ </tr>
607
+ <tr>
608
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
609
+ <td>the name of the property on object to check</td>
610
+ </tr>
611
+ <tr>
612
+ <td><p><span class="term"><em class="parameter"><code>progress</code></em> :</span></p></td>
613
+ <td>a value between 0.0 and 1.0</td>
614
+ </tr>
615
+ <tr>
616
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
617
+ <td>an initialized value to store the computed result</td>
618
+ </tr>
619
+ <tr>
620
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
621
+ <td>
622
+ <code class="literal">TRUE</code> if the computation yields has a value, otherwise (when
623
+ an error occurs or the progress is before any of the keys) <code class="literal">FALSE</code> is
624
+ returned and the <span class="type">GValue</span> is left untouched</td>
625
+ </tr>
626
+ </tbody>
627
+ </table></div>
628
+ <p class="since">Since 1.2</p>
629
+ </div>
630
+ <hr>
631
+ <div class="refsect2">
632
+ <a name="clutter-animator-set-timeline"></a><h3>clutter_animator_set_timeline ()</h3>
633
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_set_timeline (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
634
+ <em class="parameter"><code><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> *timeline</code></em>);</pre>
635
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
636
+ <h3 class="title">Warning</h3>
637
+ <p><code class="literal">clutter_animator_set_timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
638
+ </div>
639
+ <p>
640
+ Sets an external timeline that will be used for driving the animation
641
+ </p>
642
+ <div class="variablelist"><table border="0" class="variablelist">
643
+ <colgroup>
644
+ <col align="left" valign="top">
645
+ <col>
646
+ </colgroup>
647
+ <tbody>
648
+ <tr>
649
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
650
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
651
+ </td>
652
+ </tr>
653
+ <tr>
654
+ <td><p><span class="term"><em class="parameter"><code>timeline</code></em> :</span></p></td>
655
+ <td>a <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
656
+ </td>
657
+ </tr>
658
+ </tbody>
659
+ </table></div>
660
+ <p class="since">Since 1.2</p>
661
+ </div>
662
+ <hr>
663
+ <div class="refsect2">
664
+ <a name="clutter-animator-get-timeline"></a><h3>clutter_animator_get_timeline ()</h3>
665
+ <pre class="programlisting"><a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="returnvalue">ClutterTimeline</span></a> * clutter_animator_get_timeline (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);</pre>
666
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
667
+ <h3 class="title">Warning</h3>
668
+ <p><code class="literal">clutter_animator_get_timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
669
+ </div>
670
+ <p>
671
+ Get the timeline hooked up for driving the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
672
+ </p>
673
+ <div class="variablelist"><table border="0" class="variablelist">
674
+ <colgroup>
675
+ <col align="left" valign="top">
676
+ <col>
677
+ </colgroup>
678
+ <tbody>
679
+ <tr>
680
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
681
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
682
+ </td>
683
+ </tr>
684
+ <tr>
685
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
686
+ <td>the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> that drives the animator. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
687
+ </td>
688
+ </tr>
689
+ </tbody>
690
+ </table></div>
691
+ <p class="since">Since 1.2</p>
692
+ </div>
693
+ <hr>
694
+ <div class="refsect2">
695
+ <a name="clutter-animator-set-duration"></a><h3>clutter_animator_set_duration ()</h3>
696
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_set_duration (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
697
+ <em class="parameter"><code><span class="type">guint</span> duration</code></em>);</pre>
698
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
699
+ <h3 class="title">Warning</h3>
700
+ <p><code class="literal">clutter_animator_set_duration</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
701
+ </div>
702
+ <p>
703
+ Runs the timeline of the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> with a duration in msecs
704
+ as specified.
705
+ </p>
706
+ <div class="variablelist"><table border="0" class="variablelist">
707
+ <colgroup>
708
+ <col align="left" valign="top">
709
+ <col>
710
+ </colgroup>
711
+ <tbody>
712
+ <tr>
713
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
714
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
715
+ </td>
716
+ </tr>
717
+ <tr>
718
+ <td><p><span class="term"><em class="parameter"><code>duration</code></em> :</span></p></td>
719
+ <td>milliseconds a run of the animator should last.</td>
720
+ </tr>
721
+ </tbody>
722
+ </table></div>
723
+ <p class="since">Since 1.2</p>
724
+ </div>
725
+ <hr>
726
+ <div class="refsect2">
727
+ <a name="clutter-animator-get-duration"></a><h3>clutter_animator_get_duration ()</h3>
728
+ <pre class="programlisting"><span class="returnvalue">guint</span> clutter_animator_get_duration (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>);</pre>
729
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
730
+ <h3 class="title">Warning</h3>
731
+ <p><code class="literal">clutter_animator_get_duration</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
732
+ </div>
733
+ <p>
734
+ Retrieves the current duration of an animator
735
+ </p>
736
+ <div class="variablelist"><table border="0" class="variablelist">
737
+ <colgroup>
738
+ <col align="left" valign="top">
739
+ <col>
740
+ </colgroup>
741
+ <tbody>
742
+ <tr>
743
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
744
+ <td>a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
745
+ </td>
746
+ </tr>
747
+ <tr>
748
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
749
+ <td>the duration of the animation, in milliseconds</td>
750
+ </tr>
751
+ </tbody>
752
+ </table></div>
753
+ <p class="since">Since 1.2</p>
754
+ </div>
755
+ <hr>
756
+ <div class="refsect2">
757
+ <a name="clutter-animator-property-set-ease-in"></a><h3>clutter_animator_property_set_ease_in ()</h3>
758
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_property_set_ease_in
759
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
760
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
761
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
762
+ <em class="parameter"><code><span class="type">gboolean</span> ease_in</code></em>);</pre>
763
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
764
+ <h3 class="title">Warning</h3>
765
+ <p><code class="literal">clutter_animator_property_set_ease_in</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
766
+ </div>
767
+ <p>
768
+ Sets whether a property value is to be eased into the animation.
769
+ </p>
770
+ <div class="variablelist"><table border="0" class="variablelist">
771
+ <colgroup>
772
+ <col align="left" valign="top">
773
+ <col>
774
+ </colgroup>
775
+ <tbody>
776
+ <tr>
777
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
778
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
779
+ </td>
780
+ </tr>
781
+ <tr>
782
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
783
+ <td>a <span class="type">GObject</span>
784
+ </td>
785
+ </tr>
786
+ <tr>
787
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
788
+ <td>the name of a property on object</td>
789
+ </tr>
790
+ <tr>
791
+ <td><p><span class="term"><em class="parameter"><code>ease_in</code></em> :</span></p></td>
792
+ <td>we are going to be easing in this property</td>
793
+ </tr>
794
+ </tbody>
795
+ </table></div>
796
+ <p class="since">Since 1.2</p>
797
+ </div>
798
+ <hr>
799
+ <div class="refsect2">
800
+ <a name="clutter-animator-property-get-ease-in"></a><h3>clutter_animator_property_get_ease_in ()</h3>
801
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_animator_property_get_ease_in
802
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
803
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
804
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
805
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
806
+ <h3 class="title">Warning</h3>
807
+ <p><code class="literal">clutter_animator_property_get_ease_in</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
808
+ </div>
809
+ <p>
810
+ Checks if a property value is to be eased into the animation.
811
+ </p>
812
+ <div class="variablelist"><table border="0" class="variablelist">
813
+ <colgroup>
814
+ <col align="left" valign="top">
815
+ <col>
816
+ </colgroup>
817
+ <tbody>
818
+ <tr>
819
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
820
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
821
+ </td>
822
+ </tr>
823
+ <tr>
824
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
825
+ <td>a <span class="type">GObject</span>
826
+ </td>
827
+ </tr>
828
+ <tr>
829
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
830
+ <td>the name of a property on object</td>
831
+ </tr>
832
+ <tr>
833
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
834
+ <td>
835
+ <code class="literal">TRUE</code> if the property is eased in</td>
836
+ </tr>
837
+ </tbody>
838
+ </table></div>
839
+ <p class="since">Since 1.2</p>
840
+ </div>
841
+ <hr>
842
+ <div class="refsect2">
843
+ <a name="ClutterInterpolation"></a><h3>enum ClutterInterpolation</h3>
844
+ <pre class="programlisting">typedef enum {
845
+ CLUTTER_INTERPOLATION_LINEAR,
846
+ CLUTTER_INTERPOLATION_CUBIC
847
+ } ClutterInterpolation;
848
+ </pre>
849
+ <p>
850
+ The mode of interpolation between key frames
851
+ </p>
852
+ <div class="variablelist"><table border="0" class="variablelist">
853
+ <colgroup>
854
+ <col align="left" valign="top">
855
+ <col>
856
+ </colgroup>
857
+ <tbody>
858
+ <tr>
859
+ <td><p><a name="CLUTTER-INTERPOLATION-LINEAR:CAPS"></a><span class="term"><code class="literal">CLUTTER_INTERPOLATION_LINEAR</code></span></p></td>
860
+ <td>linear interpolation
861
+ </td>
862
+ </tr>
863
+ <tr>
864
+ <td><p><a name="CLUTTER-INTERPOLATION-CUBIC:CAPS"></a><span class="term"><code class="literal">CLUTTER_INTERPOLATION_CUBIC</code></span></p></td>
865
+ <td>cubic interpolation
866
+ </td>
867
+ </tr>
868
+ </tbody>
869
+ </table></div>
870
+ <p class="since">Since 1.2</p>
871
+ </div>
872
+ <hr>
873
+ <div class="refsect2">
874
+ <a name="clutter-animator-property-set-interpolation"></a><h3>clutter_animator_property_set_interpolation ()</h3>
875
+ <pre class="programlisting"><span class="returnvalue">void</span> clutter_animator_property_set_interpolation
876
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
877
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
878
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
879
+ <em class="parameter"><code><a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation"><span class="type">ClutterInterpolation</span></a> interpolation</code></em>);</pre>
880
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
881
+ <h3 class="title">Warning</h3>
882
+ <p><code class="literal">clutter_animator_property_set_interpolation</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
883
+ </div>
884
+ <p>
885
+ Set the interpolation method to use, <a class="link" href="ClutterAnimator.html#CLUTTER-INTERPOLATION-LINEAR:CAPS"><code class="literal">CLUTTER_INTERPOLATION_LINEAR</code></a> causes
886
+ the values to linearly change between the values, and
887
+ <a class="link" href="ClutterAnimator.html#CLUTTER-INTERPOLATION-CUBIC:CAPS"><code class="literal">CLUTTER_INTERPOLATION_CUBIC</code></a> causes the values to smoothly change between
888
+ the values.
889
+ </p>
890
+ <div class="variablelist"><table border="0" class="variablelist">
891
+ <colgroup>
892
+ <col align="left" valign="top">
893
+ <col>
894
+ </colgroup>
895
+ <tbody>
896
+ <tr>
897
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
898
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
899
+ </td>
900
+ </tr>
901
+ <tr>
902
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
903
+ <td>a <span class="type">GObject</span>
904
+ </td>
905
+ </tr>
906
+ <tr>
907
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
908
+ <td>the name of a property on object</td>
909
+ </tr>
910
+ <tr>
911
+ <td><p><span class="term"><em class="parameter"><code>interpolation</code></em> :</span></p></td>
912
+ <td>the <a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation"><span class="type">ClutterInterpolation</span></a> to use</td>
913
+ </tr>
914
+ </tbody>
915
+ </table></div>
916
+ <p class="since">Since 1.2</p>
917
+ </div>
918
+ <hr>
919
+ <div class="refsect2">
920
+ <a name="clutter-animator-property-get-interpolation"></a><h3>clutter_animator_property_get_interpolation ()</h3>
921
+ <pre class="programlisting"><a class="link" href="ClutterAnimator.html#ClutterInterpolation" title="enum ClutterInterpolation"><span class="returnvalue">ClutterInterpolation</span></a> clutter_animator_property_get_interpolation
922
+ (<em class="parameter"><code><a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> *animator</code></em>,
923
+ <em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
924
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
925
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
926
+ <h3 class="title">Warning</h3>
927
+ <p><code class="literal">clutter_animator_property_get_interpolation</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
928
+ </div>
929
+ <p>
930
+ Get the interpolation used by animator for a property on a particular
931
+ object.
932
+ </p>
933
+ <div class="variablelist"><table border="0" class="variablelist">
934
+ <colgroup>
935
+ <col align="left" valign="top">
936
+ <col>
937
+ </colgroup>
938
+ <tbody>
939
+ <tr>
940
+ <td><p><span class="term"><em class="parameter"><code>animator</code></em> :</span></p></td>
941
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
942
+ </td>
943
+ </tr>
944
+ <tr>
945
+ <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
946
+ <td>a <span class="type">GObject</span>
947
+ </td>
948
+ </tr>
949
+ <tr>
950
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
951
+ <td>the name of a property on object</td>
952
+ </tr>
953
+ <tr>
954
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
955
+ <td>a ClutterInterpolation value.</td>
956
+ </tr>
957
+ </tbody>
958
+ </table></div>
959
+ <p class="since">Since 1.2</p>
960
+ </div>
961
+ <hr>
962
+ <div class="refsect2">
963
+ <a name="ClutterAnimatorKey"></a><h3>ClutterAnimatorKey</h3>
964
+ <pre class="programlisting">typedef struct _ClutterAnimatorKey ClutterAnimatorKey;</pre>
965
+ <p>
966
+ A key frame inside a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
967
+ </p>
968
+ <p class="since">Since 1.2</p>
969
+ </div>
970
+ <hr>
971
+ <div class="refsect2">
972
+ <a name="clutter-animator-key-get-object"></a><h3>clutter_animator_key_get_object ()</h3>
973
+ <pre class="programlisting"><span class="returnvalue">GObject</span> * clutter_animator_key_get_object (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);</pre>
974
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
975
+ <h3 class="title">Warning</h3>
976
+ <p><code class="literal">clutter_animator_key_get_object</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
977
+ </div>
978
+ <p>
979
+ Retrieves the object a key applies to.
980
+ </p>
981
+ <div class="variablelist"><table border="0" class="variablelist">
982
+ <colgroup>
983
+ <col align="left" valign="top">
984
+ <col>
985
+ </colgroup>
986
+ <tbody>
987
+ <tr>
988
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
989
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
990
+ </td>
991
+ </tr>
992
+ <tr>
993
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
994
+ <td>the object an animator_key exist for. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
995
+ </td>
996
+ </tr>
997
+ </tbody>
998
+ </table></div>
999
+ <p class="since">Since 1.2</p>
1000
+ </div>
1001
+ <hr>
1002
+ <div class="refsect2">
1003
+ <a name="clutter-animator-key-get-property-name"></a><h3>clutter_animator_key_get_property_name ()</h3>
1004
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * clutter_animator_key_get_property_name
1005
+ (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);</pre>
1006
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1007
+ <h3 class="title">Warning</h3>
1008
+ <p><code class="literal">clutter_animator_key_get_property_name</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1009
+ </div>
1010
+ <p>
1011
+ Retrieves the name of the property a key applies to.
1012
+ </p>
1013
+ <div class="variablelist"><table border="0" class="variablelist">
1014
+ <colgroup>
1015
+ <col align="left" valign="top">
1016
+ <col>
1017
+ </colgroup>
1018
+ <tbody>
1019
+ <tr>
1020
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
1021
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1022
+ </td>
1023
+ </tr>
1024
+ <tr>
1025
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1026
+ <td>the name of the property an animator_key exist for.</td>
1027
+ </tr>
1028
+ </tbody>
1029
+ </table></div>
1030
+ <p class="since">Since 1.2</p>
1031
+ </div>
1032
+ <hr>
1033
+ <div class="refsect2">
1034
+ <a name="clutter-animator-key-get-property-type"></a><h3>clutter_animator_key_get_property_type ()</h3>
1035
+ <pre class="programlisting"><span class="returnvalue">GType</span> clutter_animator_key_get_property_type
1036
+ (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);</pre>
1037
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1038
+ <h3 class="title">Warning</h3>
1039
+ <p><code class="literal">clutter_animator_key_get_property_type</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1040
+ </div>
1041
+ <p>
1042
+ Retrieves the <span class="type">GType</span> of the property a key applies to
1043
+ </p>
1044
+ <p>
1045
+ You can use this type to initialize the <span class="type">GValue</span> to pass to
1046
+ <a class="link" href="ClutterAnimator.html#clutter-animator-key-get-value" title="clutter_animator_key_get_value ()"><code class="function">clutter_animator_key_get_value()</code></a>
1047
+ </p>
1048
+ <div class="variablelist"><table border="0" class="variablelist">
1049
+ <colgroup>
1050
+ <col align="left" valign="top">
1051
+ <col>
1052
+ </colgroup>
1053
+ <tbody>
1054
+ <tr>
1055
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
1056
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1057
+ </td>
1058
+ </tr>
1059
+ <tr>
1060
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1061
+ <td>the <span class="type">GType</span> of the property</td>
1062
+ </tr>
1063
+ </tbody>
1064
+ </table></div>
1065
+ <p class="since">Since 1.2</p>
1066
+ </div>
1067
+ <hr>
1068
+ <div class="refsect2">
1069
+ <a name="clutter-animator-key-get-mode"></a><h3>clutter_animator_key_get_mode ()</h3>
1070
+ <pre class="programlisting"><span class="returnvalue">gulong</span> clutter_animator_key_get_mode (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);</pre>
1071
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1072
+ <h3 class="title">Warning</h3>
1073
+ <p><code class="literal">clutter_animator_key_get_mode</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1074
+ </div>
1075
+ <p>
1076
+ Retrieves the mode of a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> key, for the first key of a
1077
+ property for an object this represents the whether the animation is
1078
+ open ended and or curved for the remainding keys for the property it
1079
+ represents the easing mode.
1080
+ </p>
1081
+ <div class="variablelist"><table border="0" class="variablelist">
1082
+ <colgroup>
1083
+ <col align="left" valign="top">
1084
+ <col>
1085
+ </colgroup>
1086
+ <tbody>
1087
+ <tr>
1088
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
1089
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1090
+ </td>
1091
+ </tr>
1092
+ <tr>
1093
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1094
+ <td>the mode of a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1095
+ </td>
1096
+ </tr>
1097
+ </tbody>
1098
+ </table></div>
1099
+ <p class="since">Since 1.2</p>
1100
+ </div>
1101
+ <hr>
1102
+ <div class="refsect2">
1103
+ <a name="clutter-animator-key-get-progress"></a><h3>clutter_animator_key_get_progress ()</h3>
1104
+ <pre class="programlisting"><span class="returnvalue">gdouble</span> clutter_animator_key_get_progress (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>);</pre>
1105
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1106
+ <h3 class="title">Warning</h3>
1107
+ <p><code class="literal">clutter_animator_key_get_progress</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1108
+ </div>
1109
+ <p>
1110
+ Retrieves the progress of an clutter_animator_key
1111
+ </p>
1112
+ <div class="variablelist"><table border="0" class="variablelist">
1113
+ <colgroup>
1114
+ <col align="left" valign="top">
1115
+ <col>
1116
+ </colgroup>
1117
+ <tbody>
1118
+ <tr>
1119
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
1120
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1121
+ </td>
1122
+ </tr>
1123
+ <tr>
1124
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1125
+ <td>the progress defined for a <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> key.</td>
1126
+ </tr>
1127
+ </tbody>
1128
+ </table></div>
1129
+ <p class="since">Since 1.2</p>
1130
+ </div>
1131
+ <hr>
1132
+ <div class="refsect2">
1133
+ <a name="clutter-animator-key-get-value"></a><h3>clutter_animator_key_get_value ()</h3>
1134
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> clutter_animator_key_get_value (<em class="parameter"><code>const <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a> *key</code></em>,
1135
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
1136
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1137
+ <h3 class="title">Warning</h3>
1138
+ <p><code class="literal">clutter_animator_key_get_value</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1139
+ </div>
1140
+ <p>
1141
+ Retrieves a copy of the value for a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>.
1142
+ </p>
1143
+ <p>
1144
+ The passed in <span class="type">GValue</span> needs to be already initialized for the value
1145
+ type of the key or to a type that allow transformation from the value
1146
+ type of the key.
1147
+ </p>
1148
+ <p>
1149
+ Use <code class="function">g_value_unset()</code> when done.
1150
+ </p>
1151
+ <div class="variablelist"><table border="0" class="variablelist">
1152
+ <colgroup>
1153
+ <col align="left" valign="top">
1154
+ <col>
1155
+ </colgroup>
1156
+ <tbody>
1157
+ <tr>
1158
+ <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
1159
+ <td>a <a class="link" href="ClutterAnimator.html#ClutterAnimatorKey" title="ClutterAnimatorKey"><span class="type">ClutterAnimatorKey</span></a>
1160
+ </td>
1161
+ </tr>
1162
+ <tr>
1163
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
1164
+ <td>a <span class="type">GValue</span> initialized with the correct type for the animator key</td>
1165
+ </tr>
1166
+ <tr>
1167
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1168
+ <td>
1169
+ <code class="literal">TRUE</code> if the passed <span class="type">GValue</span> was successfully set, and
1170
+ <code class="literal">FALSE</code> otherwise</td>
1171
+ </tr>
1172
+ </tbody>
1173
+ </table></div>
1174
+ <p class="since">Since 1.2</p>
1175
+ </div>
1176
+ </div>
1177
+ <div class="refsect1">
1178
+ <a name="ClutterAnimator.property-details"></a><h2>Property Details</h2>
1179
+ <div class="refsect2">
1180
+ <a name="ClutterAnimator--duration"></a><h3>The <code class="literal">"duration"</code> property</h3>
1181
+ <pre class="programlisting"> "duration" <span class="type">guint</span> : Read / Write</pre>
1182
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1183
+ <h3 class="title">Warning</h3>
1184
+ <p><code class="literal">ClutterAnimator:duration</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1185
+ </div>
1186
+ <p>
1187
+ The duration of the <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a>
1188
+ to drive the animation
1189
+ </p>
1190
+ <p>Default value: 2000</p>
1191
+ <p class="since">Since 1.2</p>
1192
+ </div>
1193
+ <hr>
1194
+ <div class="refsect2">
1195
+ <a name="ClutterAnimator--timeline"></a><h3>The <code class="literal">"timeline"</code> property</h3>
1196
+ <pre class="programlisting"> "timeline" <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>* : Read / Write</pre>
1197
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1198
+ <h3 class="title">Warning</h3>
1199
+ <p><code class="literal">ClutterAnimator:timeline</code> has been deprecated since version 1.12 and should not be used in newly-written code. Use <a class="link" href="ClutterKeyframeTransition.html" title="ClutterKeyframeTransition"><span class="type">ClutterKeyframeTransition</span></a> instead</p>
1200
+ </div>
1201
+ <p>
1202
+ The <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a> used by the <a class="link" href="ClutterAnimator.html" title="ClutterAnimator"><span class="type">ClutterAnimator</span></a> to drive the
1203
+ animation
1204
+ </p>
1205
+ <p class="since">Since 1.2</p>
1206
+ </div>
1207
+ </div>
1208
+ <div class="refsect1">
1209
+ <a name="ClutterAnimator.see-also"></a><h2>See Also</h2>
1210
+ <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>,
1211
+ <a class="link" href="ClutterTimeline.html" title="ClutterTimeline"><span class="type">ClutterTimeline</span></a>
1212
+ </div>
1213
+ </div>
1214
+ <div class="footer">
1215
+ <hr>
1216
+ Generated by GTK-Doc V1.18.1</div>
1217
+ </body>
1218
+ </html>