clutter 2.2.4-x64-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 (744) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +147 -0
  3. data/lib/clutter.rb +169 -0
  4. data/lib/clutter/actor-iter.rb +33 -0
  5. data/lib/clutter/actor.rb +34 -0
  6. data/lib/clutter/animatable.rb +26 -0
  7. data/lib/clutter/brightness-contrast-effect.rb +44 -0
  8. data/lib/clutter/cairo.rb +24 -0
  9. data/lib/clutter/clutter.rb +25 -0
  10. data/lib/clutter/color.rb +83 -0
  11. data/lib/clutter/event.rb +21 -0
  12. data/lib/clutter/point.rb +25 -0
  13. data/lib/clutter/text-buffer.rb +36 -0
  14. data/lib/clutter/text.rb +23 -0
  15. data/lib/clutter/threads.rb +38 -0
  16. data/sample/basic-actor.rb +123 -0
  17. data/sample/bin-layout.rb +213 -0
  18. data/sample/box-layout.rb +194 -0
  19. data/sample/canvas.rb +115 -0
  20. data/sample/constraints.rb +79 -0
  21. data/sample/drag-action.rb +175 -0
  22. data/sample/drop-action.rb +196 -0
  23. data/sample/easing-modes.rb +141 -0
  24. data/sample/flow-layout.rb +119 -0
  25. data/sample/grid-layout.rb +237 -0
  26. data/sample/image-content.rb +86 -0
  27. data/sample/pan-action.rb +98 -0
  28. data/sample/redhand.png +0 -0
  29. data/sample/rounded-rectangle.rb +88 -0
  30. data/sample/scroll-actor.rb +103 -0
  31. data/test/clutter-test-utils.rb +38 -0
  32. data/test/run-test.rb +59 -0
  33. data/test/test-clutter-actor.rb +242 -0
  34. data/test/test-clutter-blur-effect.rb +27 -0
  35. data/test/test-clutter-brightness-contrast-effect.rb +56 -0
  36. data/test/test-clutter-canvas.rb +43 -0
  37. data/test/test-clutter-color.rb +50 -0
  38. data/test/test-clutter-colorize-effect.rb +31 -0
  39. data/test/test-clutter-desaturate-effect.rb +30 -0
  40. data/test/test-clutter-feature.rb +34 -0
  41. data/test/test-clutter-flow-layout.rb +83 -0
  42. data/test/test-clutter-page-turn-effect.rb +46 -0
  43. data/test/test-clutter-property-transiton.rb +30 -0
  44. data/test/test-clutter-shader-effect.rb +65 -0
  45. data/test/test-clutter-text-buffer.rb +72 -0
  46. data/test/test-clutter-timeline.rb +59 -0
  47. data/vendor/local/bin/json-glib-format.exe +0 -0
  48. data/vendor/local/bin/json-glib-validate.exe +0 -0
  49. data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
  50. data/vendor/local/bin/libcogl-20.dll +0 -0
  51. data/vendor/local/bin/libcogl-pango-20.dll +0 -0
  52. data/vendor/local/bin/libcogl-path-20.dll +0 -0
  53. data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
  54. data/vendor/local/include/clutter-1.0/cally/cally-actor.h +160 -0
  55. data/vendor/local/include/clutter-1.0/cally/cally-clone.h +84 -0
  56. data/vendor/local/include/clutter-1.0/cally/cally-factory.h +117 -0
  57. data/vendor/local/include/clutter-1.0/cally/cally-group.h +87 -0
  58. data/vendor/local/include/clutter-1.0/cally/cally-main.h +44 -0
  59. data/vendor/local/include/clutter-1.0/cally/cally-rectangle.h +84 -0
  60. data/vendor/local/include/clutter-1.0/cally/cally-root.h +84 -0
  61. data/vendor/local/include/clutter-1.0/cally/cally-stage.h +84 -0
  62. data/vendor/local/include/clutter-1.0/cally/cally-text.h +84 -0
  63. data/vendor/local/include/clutter-1.0/cally/cally-texture.h +84 -0
  64. data/vendor/local/include/clutter-1.0/cally/cally-util.h +84 -0
  65. data/vendor/local/include/clutter-1.0/cally/cally.h +40 -0
  66. data/vendor/local/include/clutter-1.0/clutter/clutter-action.h +111 -0
  67. data/vendor/local/include/clutter-1.0/clutter/clutter-actor-meta.h +119 -0
  68. data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +836 -0
  69. data/vendor/local/include/clutter-1.0/clutter/clutter-align-constraint.h +77 -0
  70. data/vendor/local/include/clutter-1.0/clutter/clutter-animatable.h +121 -0
  71. data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +83 -0
  72. data/vendor/local/include/clutter-1.0/clutter/clutter-bin-layout.h +86 -0
  73. data/vendor/local/include/clutter-1.0/clutter/clutter-bind-constraint.h +77 -0
  74. data/vendor/local/include/clutter-1.0/clutter/clutter-binding-pool.h +135 -0
  75. data/vendor/local/include/clutter-1.0/clutter/clutter-blur-effect.h +59 -0
  76. data/vendor/local/include/clutter-1.0/clutter/clutter-box-layout.h +168 -0
  77. data/vendor/local/include/clutter-1.0/clutter/clutter-brightness-contrast-effect.h +88 -0
  78. data/vendor/local/include/clutter-1.0/clutter/clutter-cairo.h +61 -0
  79. data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +106 -0
  80. data/vendor/local/include/clutter-1.0/clutter/clutter-child-meta.h +122 -0
  81. data/vendor/local/include/clutter-1.0/clutter/clutter-click-action.h +120 -0
  82. data/vendor/local/include/clutter-1.0/clutter/clutter-clone.h +94 -0
  83. data/vendor/local/include/clutter-1.0/clutter/clutter-cogl-compat.h +52 -0
  84. data/vendor/local/include/clutter-1.0/clutter/clutter-color-static.h +79 -0
  85. data/vendor/local/include/clutter-1.0/clutter/clutter-color.h +200 -0
  86. data/vendor/local/include/clutter-1.0/clutter/clutter-colorize-effect.h +67 -0
  87. data/vendor/local/include/clutter-1.0/clutter/clutter-config.h +19 -0
  88. data/vendor/local/include/clutter-1.0/clutter/clutter-constraint.h +120 -0
  89. data/vendor/local/include/clutter-1.0/clutter/clutter-container.h +196 -0
  90. data/vendor/local/include/clutter-1.0/clutter/clutter-content.h +103 -0
  91. data/vendor/local/include/clutter-1.0/clutter/clutter-deform-effect.h +117 -0
  92. data/vendor/local/include/clutter-1.0/clutter/clutter-deprecated.h +44 -0
  93. data/vendor/local/include/clutter-1.0/clutter/clutter-desaturate-effect.h +65 -0
  94. data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +110 -0
  95. data/vendor/local/include/clutter-1.0/clutter/clutter-drag-action.h +152 -0
  96. data/vendor/local/include/clutter-1.0/clutter/clutter-drop-action.h +115 -0
  97. data/vendor/local/include/clutter-1.0/clutter/clutter-effect.h +130 -0
  98. data/vendor/local/include/clutter-1.0/clutter/clutter-enum-types.h +190 -0
  99. data/vendor/local/include/clutter-1.0/clutter/clutter-enums.h +1385 -0
  100. data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +588 -0
  101. data/vendor/local/include/clutter-1.0/clutter/clutter-feature.h +42 -0
  102. data/vendor/local/include/clutter-1.0/clutter/clutter-fixed-layout.h +82 -0
  103. data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +129 -0
  104. data/vendor/local/include/clutter-1.0/clutter/clutter-gesture-action.h +179 -0
  105. data/vendor/local/include/clutter-1.0/clutter/clutter-grid-layout.h +161 -0
  106. data/vendor/local/include/clutter-1.0/clutter/clutter-group.h +96 -0
  107. data/vendor/local/include/clutter-1.0/clutter/clutter-image.h +141 -0
  108. data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +140 -0
  109. data/vendor/local/include/clutter-1.0/clutter/clutter-interval.h +159 -0
  110. data/vendor/local/include/clutter-1.0/clutter/clutter-keyframe-transition.h +120 -0
  111. data/vendor/local/include/clutter-1.0/clutter/clutter-keysyms.h +2304 -0
  112. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +227 -0
  113. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-meta.h +103 -0
  114. data/vendor/local/include/clutter-1.0/clutter/clutter-list-model.h +91 -0
  115. data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +327 -0
  116. data/vendor/local/include/clutter-1.0/clutter/clutter-main.h +184 -0
  117. data/vendor/local/include/clutter-1.0/clutter/clutter-marshal.h +273 -0
  118. data/vendor/local/include/clutter-1.0/clutter/clutter-model.h +422 -0
  119. data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +122 -0
  120. data/vendor/local/include/clutter-1.0/clutter/clutter-page-turn-effect.h +80 -0
  121. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-node.h +102 -0
  122. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-nodes.h +150 -0
  123. data/vendor/local/include/clutter-1.0/clutter/clutter-pan-action.h +147 -0
  124. data/vendor/local/include/clutter-1.0/clutter/clutter-path-constraint.h +72 -0
  125. data/vendor/local/include/clutter-1.0/clutter/clutter-path.h +181 -0
  126. data/vendor/local/include/clutter-1.0/clutter/clutter-property-transition.h +91 -0
  127. data/vendor/local/include/clutter-1.0/clutter/clutter-rotate-action.h +100 -0
  128. data/vendor/local/include/clutter-1.0/clutter/clutter-script.h +220 -0
  129. data/vendor/local/include/clutter-1.0/clutter/clutter-scriptable.h +112 -0
  130. data/vendor/local/include/clutter-1.0/clutter/clutter-scroll-actor.h +97 -0
  131. data/vendor/local/include/clutter-1.0/clutter/clutter-settings.h +27 -0
  132. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-effect.h +121 -0
  133. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-types.h +104 -0
  134. data/vendor/local/include/clutter-1.0/clutter/clutter-snap-constraint.h +81 -0
  135. data/vendor/local/include/clutter-1.0/clutter/clutter-stage-manager.h +86 -0
  136. data/vendor/local/include/clutter-1.0/clutter/clutter-stage.h +250 -0
  137. data/vendor/local/include/clutter-1.0/clutter/clutter-swipe-action.h +109 -0
  138. data/vendor/local/include/clutter-1.0/clutter/clutter-tap-action.h +102 -0
  139. data/vendor/local/include/clutter-1.0/clutter/clutter-test-utils.h +164 -0
  140. data/vendor/local/include/clutter-1.0/clutter/clutter-text-buffer.h +172 -0
  141. data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +307 -0
  142. data/vendor/local/include/clutter-1.0/clutter/clutter-texture.h +130 -0
  143. data/vendor/local/include/clutter-1.0/clutter/clutter-timeline.h +226 -0
  144. data/vendor/local/include/clutter-1.0/clutter/clutter-transition-group.h +91 -0
  145. data/vendor/local/include/clutter-1.0/clutter/clutter-transition.h +132 -0
  146. data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +773 -0
  147. data/vendor/local/include/clutter-1.0/clutter/clutter-units.h +184 -0
  148. data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +329 -0
  149. data/vendor/local/include/clutter-1.0/clutter/clutter-zoom-action.h +114 -0
  150. data/vendor/local/include/clutter-1.0/clutter/clutter.h +117 -0
  151. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-actor.h +161 -0
  152. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-alpha.h +144 -0
  153. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animatable.h +47 -0
  154. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animation.h +206 -0
  155. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animator.h +186 -0
  156. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-backend.h +64 -0
  157. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-depth.h +101 -0
  158. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-ellipse.h +159 -0
  159. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-opacity.h +115 -0
  160. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-path.h +135 -0
  161. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-rotate.h +119 -0
  162. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-scale.h +107 -0
  163. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour.h +170 -0
  164. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-bin-layout.h +56 -0
  165. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-box.h +143 -0
  166. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-cairo-texture.h +139 -0
  167. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-container.h +93 -0
  168. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-fixed.h +98 -0
  169. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-frame-source.h +49 -0
  170. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-group.h +62 -0
  171. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-input-device.h +41 -0
  172. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-keysyms.h +2306 -0
  173. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-main.h +96 -0
  174. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-media.h +121 -0
  175. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-rectangle.h +117 -0
  176. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-score.h +144 -0
  177. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-shader.h +182 -0
  178. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage-manager.h +42 -0
  179. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage.h +102 -0
  180. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-state.h +187 -0
  181. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-table-layout.h +172 -0
  182. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-texture.h +138 -0
  183. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeline.h +41 -0
  184. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeout-pool.h +69 -0
  185. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-util.h +40 -0
  186. data/vendor/local/include/clutter-1.0/clutter/win32/clutter-win32.h +63 -0
  187. data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +298 -0
  188. data/vendor/local/include/cogl/cogl-path/cogl-path-enum-types.h +20 -0
  189. data/vendor/local/include/cogl/cogl-path/cogl-path-types.h +85 -0
  190. data/vendor/local/include/cogl/cogl-path/cogl-path.h +68 -0
  191. data/vendor/local/include/cogl/cogl-path/cogl1-path-functions.h +467 -0
  192. data/vendor/local/include/cogl/cogl-path/cogl2-path-functions.h +545 -0
  193. data/vendor/local/include/cogl/cogl/cogl-atlas-texture.h +258 -0
  194. data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +152 -0
  195. data/vendor/local/include/cogl/cogl/cogl-attribute.h +558 -0
  196. data/vendor/local/include/cogl/cogl/cogl-auto-texture.h +221 -0
  197. data/vendor/local/include/cogl/cogl/cogl-bitmap.h +336 -0
  198. data/vendor/local/include/cogl/cogl/cogl-buffer.h +324 -0
  199. data/vendor/local/include/cogl/cogl/cogl-clip-state.h +266 -0
  200. data/vendor/local/include/cogl/cogl/cogl-clutter.h +54 -0
  201. data/vendor/local/include/cogl/cogl/cogl-color.h +604 -0
  202. data/vendor/local/include/cogl/cogl/cogl-context.h +401 -0
  203. data/vendor/local/include/cogl/cogl/cogl-defines.h +58 -0
  204. data/vendor/local/include/cogl/cogl/cogl-deprecated.h +43 -0
  205. data/vendor/local/include/cogl/cogl/cogl-depth-state.h +270 -0
  206. data/vendor/local/include/cogl/cogl/cogl-display.h +234 -0
  207. data/vendor/local/include/cogl/cogl/cogl-enum-types.h +99 -0
  208. data/vendor/local/include/cogl/cogl/cogl-error.h +185 -0
  209. data/vendor/local/include/cogl/cogl/cogl-euler.h +269 -0
  210. data/vendor/local/include/cogl/cogl/cogl-fence.h +143 -0
  211. data/vendor/local/include/cogl/cogl/cogl-fixed.h +811 -0
  212. data/vendor/local/include/cogl/cogl/cogl-frame-info.h +148 -0
  213. data/vendor/local/include/cogl/cogl/cogl-framebuffer-deprecated.h +264 -0
  214. data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +1818 -0
  215. data/vendor/local/include/cogl/cogl/cogl-gles2-types.h +474 -0
  216. data/vendor/local/include/cogl/cogl/cogl-gles2.h +420 -0
  217. data/vendor/local/include/cogl/cogl/cogl-glib-source.h +97 -0
  218. data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +107 -0
  219. data/vendor/local/include/cogl/cogl/cogl-indices.h +165 -0
  220. data/vendor/local/include/cogl/cogl/cogl-macros.h +273 -0
  221. data/vendor/local/include/cogl/cogl/cogl-material-compat.h +1391 -0
  222. data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +645 -0
  223. data/vendor/local/include/cogl/cogl/cogl-matrix.h +821 -0
  224. data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +194 -0
  225. data/vendor/local/include/cogl/cogl/cogl-object.h +251 -0
  226. data/vendor/local/include/cogl/cogl/cogl-offscreen.h +172 -0
  227. data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +125 -0
  228. data/vendor/local/include/cogl/cogl/cogl-onscreen.h +1012 -0
  229. data/vendor/local/include/cogl/cogl/cogl-output.h +261 -0
  230. data/vendor/local/include/cogl/cogl/cogl-pango.h +40 -0
  231. data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +620 -0
  232. data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +980 -0
  233. data/vendor/local/include/cogl/cogl/cogl-pipeline.h +194 -0
  234. data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +138 -0
  235. data/vendor/local/include/cogl/cogl/cogl-poll.h +200 -0
  236. data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +111 -0
  237. data/vendor/local/include/cogl/cogl/cogl-primitive.h +942 -0
  238. data/vendor/local/include/cogl/cogl/cogl-primitives.h +197 -0
  239. data/vendor/local/include/cogl/cogl/cogl-quaternion.h +564 -0
  240. data/vendor/local/include/cogl/cogl/cogl-renderer.h +446 -0
  241. data/vendor/local/include/cogl/cogl/cogl-shader.h +704 -0
  242. data/vendor/local/include/cogl/cogl/cogl-snippet.h +866 -0
  243. data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +136 -0
  244. data/vendor/local/include/cogl/cogl/cogl-swap-chain.h +71 -0
  245. data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +78 -0
  246. data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +301 -0
  247. data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +234 -0
  248. data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +204 -0
  249. data/vendor/local/include/cogl/cogl/cogl-texture-deprecated.h +105 -0
  250. data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +218 -0
  251. data/vendor/local/include/cogl/cogl/cogl-texture.h +524 -0
  252. data/vendor/local/include/cogl/cogl/cogl-type-casts.h +53 -0
  253. data/vendor/local/include/cogl/cogl/cogl-types.h +925 -0
  254. data/vendor/local/include/cogl/cogl/cogl-vector.h +356 -0
  255. data/vendor/local/include/cogl/cogl/cogl-version.h +348 -0
  256. data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +451 -0
  257. data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +123 -0
  258. data/vendor/local/include/cogl/cogl/cogl.h +194 -0
  259. data/vendor/local/include/cogl/cogl/cogl1-context.h +862 -0
  260. data/vendor/local/include/cogl/cogl/cogl2-experimental.h +37 -0
  261. data/vendor/local/include/cogl/cogl/deprecated/cogl-auto-texture.h +221 -0
  262. data/vendor/local/include/cogl/cogl/deprecated/cogl-clip-state.h +266 -0
  263. data/vendor/local/include/cogl/cogl/deprecated/cogl-clutter.h +54 -0
  264. data/vendor/local/include/cogl/cogl/deprecated/cogl-fixed.h +811 -0
  265. data/vendor/local/include/cogl/cogl/deprecated/cogl-framebuffer-deprecated.h +264 -0
  266. data/vendor/local/include/cogl/cogl/deprecated/cogl-material-compat.h +1391 -0
  267. data/vendor/local/include/cogl/cogl/deprecated/cogl-shader.h +704 -0
  268. data/vendor/local/include/cogl/cogl/deprecated/cogl-texture-deprecated.h +105 -0
  269. data/vendor/local/include/cogl/cogl/deprecated/cogl-type-casts.h +53 -0
  270. data/vendor/local/include/cogl/cogl/deprecated/cogl-vertex-buffer.h +451 -0
  271. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-core-functions.h +198 -0
  272. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-gles2-functions.h +43 -0
  273. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-glsl-functions.h +286 -0
  274. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h +148 -0
  275. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h +186 -0
  276. data/vendor/local/include/json-glib-1.0/json-glib/json-builder.h +120 -0
  277. data/vendor/local/include/json-glib-1.0/json-glib/json-enum-types.h +41 -0
  278. data/vendor/local/include/json-glib-1.0/json-glib/json-generator.h +120 -0
  279. data/vendor/local/include/json-glib-1.0/json-glib/json-glib.h +47 -0
  280. data/vendor/local/include/json-glib-1.0/json-glib/json-gobject.h +199 -0
  281. data/vendor/local/include/json-glib-1.0/json-glib/json-gvariant.h +53 -0
  282. data/vendor/local/include/json-glib-1.0/json-glib/json-parser.h +188 -0
  283. data/vendor/local/include/json-glib-1.0/json-glib/json-path.h +102 -0
  284. data/vendor/local/include/json-glib-1.0/json-glib/json-reader.h +171 -0
  285. data/vendor/local/include/json-glib-1.0/json-glib/json-types.h +445 -0
  286. data/vendor/local/include/json-glib-1.0/json-glib/json-version-macros.h +135 -0
  287. data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +102 -0
  288. data/vendor/local/lib/girepository-1.0/Cally-1.0.typelib +0 -0
  289. data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
  290. data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
  291. data/vendor/local/lib/girepository-1.0/Cogl-2.0.typelib +0 -0
  292. data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
  293. data/vendor/local/lib/girepository-1.0/CoglPango-2.0.typelib +0 -0
  294. data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
  295. data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
  296. data/vendor/local/lib/libclutter-1.0.la +41 -0
  297. data/vendor/local/lib/libcogl-pango.dll.a +0 -0
  298. data/vendor/local/lib/libcogl-pango.la +41 -0
  299. data/vendor/local/lib/libcogl-path.dll.a +0 -0
  300. data/vendor/local/lib/libcogl-path.la +41 -0
  301. data/vendor/local/lib/libcogl.dll.a +0 -0
  302. data/vendor/local/lib/libcogl.la +41 -0
  303. data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
  304. data/vendor/local/lib/libjson-glib-1.0.la +41 -0
  305. data/vendor/local/lib/pkgconfig/cally-1.0.pc +13 -0
  306. data/vendor/local/lib/pkgconfig/clutter-1.0.pc +24 -0
  307. data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +24 -0
  308. data/vendor/local/lib/pkgconfig/cogl-1.0.pc +13 -0
  309. data/vendor/local/lib/pkgconfig/cogl-2.0-experimental.pc +13 -0
  310. data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +13 -0
  311. data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +13 -0
  312. data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +13 -0
  313. data/vendor/local/lib/pkgconfig/cogl-path-1.0.pc +13 -0
  314. data/vendor/local/lib/pkgconfig/cogl-path-2.0-experimental.pc +13 -0
  315. data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +11 -0
  316. data/vendor/local/share/cogl/examples-data/crate.jpg +0 -0
  317. data/vendor/local/share/gir-1.0/Cally-1.0.gir +681 -0
  318. data/vendor/local/share/gir-1.0/Clutter-1.0.gir +70493 -0
  319. data/vendor/local/share/gir-1.0/Cogl-1.0.gir +8197 -0
  320. data/vendor/local/share/gir-1.0/Cogl-2.0.gir +20369 -0
  321. data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +333 -0
  322. data/vendor/local/share/gir-1.0/CoglPango-2.0.gir +331 -0
  323. data/vendor/local/share/gir-1.0/Json-1.0.gir +4742 -0
  324. data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +509 -0
  325. data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +155 -0
  326. data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +154 -0
  327. data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +154 -0
  328. data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +133 -0
  329. data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +159 -0
  330. data/vendor/local/share/gtk-doc/html/cally/CallyText.html +154 -0
  331. data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +154 -0
  332. data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +102 -0
  333. data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +187 -0
  334. data/vendor/local/share/gtk-doc/html/cally/cally.devhelp2 +73 -0
  335. data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +41 -0
  336. data/vendor/local/share/gtk-doc/html/cally/callybase.html +71 -0
  337. data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +45 -0
  338. data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +64 -0
  339. data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +39 -0
  340. data/vendor/local/share/gtk-doc/html/cally/ch01.html +53 -0
  341. data/vendor/local/share/gtk-doc/html/cally/ch02.html +41 -0
  342. data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +96 -0
  343. data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
  344. data/vendor/local/share/gtk-doc/html/cally/index.html +103 -0
  345. data/vendor/local/share/gtk-doc/html/cally/index.sgml +121 -0
  346. data/vendor/local/share/gtk-doc/html/cally/ix01.html +193 -0
  347. data/vendor/local/share/gtk-doc/html/cally/ix02.html +31 -0
  348. data/vendor/local/share/gtk-doc/html/cally/ix03.html +185 -0
  349. data/vendor/local/share/gtk-doc/html/cally/ix04.html +39 -0
  350. data/vendor/local/share/gtk-doc/html/cally/left-insensitive.png +0 -0
  351. data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
  352. data/vendor/local/share/gtk-doc/html/cally/license.html +58 -0
  353. data/vendor/local/share/gtk-doc/html/cally/right-insensitive.png +0 -0
  354. data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
  355. data/vendor/local/share/gtk-doc/html/cally/style.css +476 -0
  356. data/vendor/local/share/gtk-doc/html/cally/up-insensitive.png +0 -0
  357. data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
  358. data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +109 -0
  359. data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +15797 -0
  360. data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +396 -0
  361. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +494 -0
  362. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +816 -0
  363. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +497 -0
  364. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +1406 -0
  365. data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +855 -0
  366. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +802 -0
  367. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +313 -0
  368. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +1041 -0
  369. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +319 -0
  370. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +502 -0
  371. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +744 -0
  372. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +476 -0
  373. data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +481 -0
  374. data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +598 -0
  375. data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +116 -0
  376. data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +726 -0
  377. data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +1471 -0
  378. data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +480 -0
  379. data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +873 -0
  380. data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +488 -0
  381. data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +287 -0
  382. data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +667 -0
  383. data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +258 -0
  384. data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +239 -0
  385. data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +208 -0
  386. data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +1611 -0
  387. data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +367 -0
  388. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +418 -0
  389. data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +242 -0
  390. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +492 -0
  391. data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +1120 -0
  392. data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +498 -0
  393. data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +469 -0
  394. data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +125 -0
  395. data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +928 -0
  396. data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +1321 -0
  397. data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +1020 -0
  398. data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +272 -0
  399. data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +527 -0
  400. data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +1805 -0
  401. data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +616 -0
  402. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +1280 -0
  403. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +189 -0
  404. data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +222 -0
  405. data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +1053 -0
  406. data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +2052 -0
  407. data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +779 -0
  408. data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +452 -0
  409. data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +428 -0
  410. data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +671 -0
  411. data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +946 -0
  412. data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +1576 -0
  413. data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +407 -0
  414. data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +261 -0
  415. data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +484 -0
  416. data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +216 -0
  417. data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +1018 -0
  418. data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +1421 -0
  419. data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +364 -0
  420. data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +385 -0
  421. data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +376 -0
  422. data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +693 -0
  423. data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +526 -0
  424. data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +2751 -0
  425. data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +1823 -0
  426. data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +333 -0
  427. data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +1393 -0
  428. data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +219 -0
  429. data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +3871 -0
  430. data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +906 -0
  431. data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +2085 -0
  432. data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +2864 -0
  433. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +684 -0
  434. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +264 -0
  435. data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +474 -0
  436. data/vendor/local/share/gtk-doc/html/clutter/actor-box.png +0 -0
  437. data/vendor/local/share/gtk-doc/html/clutter/actor-example.png +0 -0
  438. data/vendor/local/share/gtk-doc/html/clutter/animator-key-frames.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +95 -0
  440. data/vendor/local/share/gtk-doc/html/clutter/bin-layout.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/clutter/box-layout.png +0 -0
  442. data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +275 -0
  443. data/vendor/local/share/gtk-doc/html/clutter/ch01.html +65 -0
  444. data/vendor/local/share/gtk-doc/html/clutter/ch02.html +44 -0
  445. data/vendor/local/share/gtk-doc/html/clutter/ch03.html +47 -0
  446. data/vendor/local/share/gtk-doc/html/clutter/ch04.html +59 -0
  447. data/vendor/local/share/gtk-doc/html/clutter/ch05.html +44 -0
  448. data/vendor/local/share/gtk-doc/html/clutter/ch06.html +57 -0
  449. data/vendor/local/share/gtk-doc/html/clutter/ch07.html +38 -0
  450. data/vendor/local/share/gtk-doc/html/clutter/ch08.html +38 -0
  451. data/vendor/local/share/gtk-doc/html/clutter/ch09.html +53 -0
  452. data/vendor/local/share/gtk-doc/html/clutter/ch10.html +78 -0
  453. data/vendor/local/share/gtk-doc/html/clutter/ch11.html +38 -0
  454. data/vendor/local/share/gtk-doc/html/clutter/ch12.html +41 -0
  455. data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +4244 -0
  456. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +268 -0
  457. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +454 -0
  458. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +442 -0
  459. data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +1644 -0
  460. data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +211 -0
  461. data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +3454 -0
  462. data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +232 -0
  463. data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +297 -0
  464. data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +2112 -0
  465. data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +2213 -0
  466. data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +200 -0
  467. data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +992 -0
  468. data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +411 -0
  469. data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +1236 -0
  470. data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +418 -0
  471. data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +1006 -0
  472. data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +661 -0
  473. data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +1221 -0
  474. data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +578 -0
  475. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +106 -0
  476. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-specific-support.html +289 -0
  477. data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +241 -0
  478. data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +916 -0
  479. data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +77 -0
  480. data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +2403 -0
  481. data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +65 -0
  482. data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +74 -0
  483. data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +195 -0
  484. data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +37 -0
  485. data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +118 -0
  486. data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +184 -0
  487. data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +37 -0
  488. data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +105 -0
  489. data/vendor/local/share/gtk-doc/html/clutter/constraints-example.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +93 -0
  491. data/vendor/local/share/gtk-doc/html/clutter/easing-modes.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/clutter/event-flow.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/clutter/flow-layout.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/clutter/go01.html +126 -0
  495. data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/clutter/index.html +454 -0
  497. data/vendor/local/share/gtk-doc/html/clutter/index.sgml +3165 -0
  498. data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +56 -0
  499. data/vendor/local/share/gtk-doc/html/clutter/ix01.html +8982 -0
  500. data/vendor/local/share/gtk-doc/html/clutter/ix02.html +2198 -0
  501. data/vendor/local/share/gtk-doc/html/clutter/ix03.html +457 -0
  502. data/vendor/local/share/gtk-doc/html/clutter/ix04.html +578 -0
  503. data/vendor/local/share/gtk-doc/html/clutter/ix05.html +952 -0
  504. data/vendor/local/share/gtk-doc/html/clutter/ix06.html +637 -0
  505. data/vendor/local/share/gtk-doc/html/clutter/ix07.html +1525 -0
  506. data/vendor/local/share/gtk-doc/html/clutter/ix08.html +815 -0
  507. data/vendor/local/share/gtk-doc/html/clutter/ix09.html +1000 -0
  508. data/vendor/local/share/gtk-doc/html/clutter/ix10.html +364 -0
  509. data/vendor/local/share/gtk-doc/html/clutter/ix11.html +361 -0
  510. data/vendor/local/share/gtk-doc/html/clutter/ix12.html +1085 -0
  511. data/vendor/local/share/gtk-doc/html/clutter/ix13.html +979 -0
  512. data/vendor/local/share/gtk-doc/html/clutter/ix14.html +101 -0
  513. data/vendor/local/share/gtk-doc/html/clutter/left-insensitive.png +0 -0
  514. data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
  515. data/vendor/local/share/gtk-doc/html/clutter/license.html +58 -0
  516. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +223 -0
  517. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +197 -0
  518. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +154 -0
  519. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +155 -0
  520. data/vendor/local/share/gtk-doc/html/clutter/migration.html +49 -0
  521. data/vendor/local/share/gtk-doc/html/clutter/offscreen-redirect.png +0 -0
  522. data/vendor/local/share/gtk-doc/html/clutter/path-alpha-func.png +0 -0
  523. data/vendor/local/share/gtk-doc/html/clutter/pt09.html +31 -0
  524. data/vendor/local/share/gtk-doc/html/clutter/right-insensitive.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
  526. data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +378 -0
  527. data/vendor/local/share/gtk-doc/html/clutter/style.css +476 -0
  528. data/vendor/local/share/gtk-doc/html/clutter/table-layout.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/clutter/up-insensitive.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +36 -0
  532. data/vendor/local/share/gtk-doc/html/json-glib/JsonBuilder.html +676 -0
  533. data/vendor/local/share/gtk-doc/html/json-glib/JsonGenerator.html +660 -0
  534. data/vendor/local/share/gtk-doc/html/json-glib/JsonParser.html +1144 -0
  535. data/vendor/local/share/gtk-doc/html/json-glib/JsonPath.html +512 -0
  536. data/vendor/local/share/gtk-doc/html/json-glib/JsonReader.html +1140 -0
  537. data/vendor/local/share/gtk-doc/html/json-glib/annotation-glossary.html +66 -0
  538. data/vendor/local/share/gtk-doc/html/json-glib/ch01.html +41 -0
  539. data/vendor/local/share/gtk-doc/html/json-glib/ch02.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/json-glib/ch03.html +38 -0
  541. data/vendor/local/share/gtk-doc/html/json-glib/ch05.html +40 -0
  542. data/vendor/local/share/gtk-doc/html/json-glib/home.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/json-glib/index.html +134 -0
  544. data/vendor/local/share/gtk-doc/html/json-glib/index.sgml +327 -0
  545. data/vendor/local/share/gtk-doc/html/json-glib/ix01.html +965 -0
  546. data/vendor/local/share/gtk-doc/html/json-glib/ix02.html +49 -0
  547. data/vendor/local/share/gtk-doc/html/json-glib/ix03.html +56 -0
  548. data/vendor/local/share/gtk-doc/html/json-glib/ix04.html +49 -0
  549. data/vendor/local/share/gtk-doc/html/json-glib/ix05.html +181 -0
  550. data/vendor/local/share/gtk-doc/html/json-glib/ix06.html +116 -0
  551. data/vendor/local/share/gtk-doc/html/json-glib/ix07.html +156 -0
  552. data/vendor/local/share/gtk-doc/html/json-glib/ix08.html +132 -0
  553. data/vendor/local/share/gtk-doc/html/json-glib/json-advanced.html +50 -0
  554. data/vendor/local/share/gtk-doc/html/json-glib/json-base.html +61 -0
  555. data/vendor/local/share/gtk-doc/html/json-glib/json-format-tool.html +84 -0
  556. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html +491 -0
  557. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html +385 -0
  558. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html +1188 -0
  559. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html +318 -0
  560. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html +1803 -0
  561. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html +1369 -0
  562. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html +582 -0
  563. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +215 -0
  564. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.devhelp2 +277 -0
  565. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.html +38 -0
  566. data/vendor/local/share/gtk-doc/html/json-glib/json-streams.html +63 -0
  567. data/vendor/local/share/gtk-doc/html/json-glib/json-tools.html +45 -0
  568. data/vendor/local/share/gtk-doc/html/json-glib/json-validate-tool.html +72 -0
  569. data/vendor/local/share/gtk-doc/html/json-glib/left-insensitive.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/json-glib/left.png +0 -0
  571. data/vendor/local/share/gtk-doc/html/json-glib/license.html +58 -0
  572. data/vendor/local/share/gtk-doc/html/json-glib/right-insensitive.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/json-glib/right.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/json-glib/style.css +476 -0
  575. data/vendor/local/share/gtk-doc/html/json-glib/tools.html +38 -0
  576. data/vendor/local/share/gtk-doc/html/json-glib/up-insensitive.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/json-glib/up.png +0 -0
  578. data/vendor/local/share/license/clutter/COPYING +502 -0
  579. data/vendor/local/share/license/cogl/COPYING +107 -0
  580. data/vendor/local/share/license/json-glib/COPYING +504 -0
  581. data/vendor/local/share/locale/an/LC_MESSAGES/clutter-1.0.mo +0 -0
  582. data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
  583. data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
  584. data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
  585. data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
  586. data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
  587. data/vendor/local/share/locale/as/LC_MESSAGES/json-glib-1.0.mo +0 -0
  588. data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
  589. data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
  590. data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
  591. data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
  592. data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
  593. data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
  594. data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
  595. data/vendor/local/share/locale/bg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  596. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  597. data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
  598. data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
  599. data/vendor/local/share/locale/ca/LC_MESSAGES/json-glib-1.0.mo +0 -0
  600. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
  601. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
  602. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/json-glib-1.0.mo +0 -0
  603. data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
  604. data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
  605. data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
  606. data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
  607. data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
  608. data/vendor/local/share/locale/da/LC_MESSAGES/json-glib-1.0.mo +0 -0
  609. data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
  610. data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
  611. data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
  612. data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
  613. data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
  614. data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
  615. data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
  616. data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
  617. data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
  618. data/vendor/local/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +0 -0
  619. data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
  620. data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
  621. data/vendor/local/share/locale/eo/LC_MESSAGES/json-glib-1.0.mo +0 -0
  622. data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
  623. data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
  624. data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
  625. data/vendor/local/share/locale/et/LC_MESSAGES/json-glib-1.0.mo +0 -0
  626. data/vendor/local/share/locale/eu/LC_MESSAGES/clutter-1.0.mo +0 -0
  627. data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
  628. data/vendor/local/share/locale/eu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  629. data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
  630. data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
  631. data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
  632. data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
  633. data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
  634. data/vendor/local/share/locale/fr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  635. data/vendor/local/share/locale/fur/LC_MESSAGES/json-glib-1.0.mo +0 -0
  636. data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
  637. data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
  638. data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  639. data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
  640. data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
  641. data/vendor/local/share/locale/he/LC_MESSAGES/json-glib-1.0.mo +0 -0
  642. data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
  643. data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
  644. data/vendor/local/share/locale/hi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  645. data/vendor/local/share/locale/hu/LC_MESSAGES/clutter-1.0.mo +0 -0
  646. data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
  647. data/vendor/local/share/locale/hu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  648. data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
  649. data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
  650. data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
  651. data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
  652. data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
  653. data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
  654. data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
  655. data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
  656. data/vendor/local/share/locale/ja/LC_MESSAGES/json-glib-1.0.mo +0 -0
  657. data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
  658. data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
  659. data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
  660. data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
  661. data/vendor/local/share/locale/ko/LC_MESSAGES/clutter-1.0.mo +0 -0
  662. data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
  663. data/vendor/local/share/locale/ko/LC_MESSAGES/json-glib-1.0.mo +0 -0
  664. data/vendor/local/share/locale/ky/LC_MESSAGES/json-glib-1.0.mo +0 -0
  665. data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
  666. data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
  667. data/vendor/local/share/locale/lt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  668. data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
  669. data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
  670. data/vendor/local/share/locale/lv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  671. data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
  672. data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
  673. data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
  674. data/vendor/local/share/locale/ml/LC_MESSAGES/json-glib-1.0.mo +0 -0
  675. data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
  676. data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
  677. data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
  678. data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
  679. data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
  680. data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
  681. data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
  682. data/vendor/local/share/locale/or/LC_MESSAGES/json-glib-1.0.mo +0 -0
  683. data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
  684. data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
  685. data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
  686. data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
  687. data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
  688. data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  689. data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
  690. data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
  691. data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
  692. data/vendor/local/share/locale/pt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  693. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
  694. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
  695. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
  696. data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
  697. data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
  698. data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
  699. data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
  700. data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
  701. data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
  702. data/vendor/local/share/locale/sk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  703. data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
  704. data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
  705. data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  706. data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
  707. data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
  708. data/vendor/local/share/locale/sr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  709. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
  710. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
  711. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/json-glib-1.0.mo +0 -0
  712. data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
  713. data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
  714. data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  715. data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
  716. data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
  717. data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
  718. data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
  719. data/vendor/local/share/locale/te/LC_MESSAGES/json-glib-1.0.mo +0 -0
  720. data/vendor/local/share/locale/tg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  721. data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
  722. data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
  723. data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
  724. data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  725. data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
  726. data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
  727. data/vendor/local/share/locale/ug/LC_MESSAGES/json-glib-1.0.mo +0 -0
  728. data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
  729. data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
  730. data/vendor/local/share/locale/uk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  731. data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
  732. data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
  733. data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  734. data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
  735. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
  736. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
  737. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  738. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
  739. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
  740. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/json-glib-1.0.mo +0 -0
  741. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
  742. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
  743. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/json-glib-1.0.mo +0 -0
  744. metadata +869 -0
@@ -0,0 +1,219 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Clutter Reference Manual: ClutterTapAction</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="ch04.html" title="Actions">
9
+ <link rel="prev" href="ClutterZoomAction.html" title="ClutterZoomAction">
10
+ <link rel="next" href="ch05.html" title="Constraints">
11
+ <meta name="generator" content="GTK-Doc V1.20.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#ClutterTapAction.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#ClutterTapAction.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_signals">  <span class="dim">|</span> 
20
+ <a href="#ClutterTapAction.signals" class="shortcut">Signals</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="ch04.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="ClutterZoomAction.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="ch05.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="ClutterTapAction"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="ClutterTapAction.top_of_page"></a>ClutterTapAction</span></h2>
32
+ <p>ClutterTapAction — Action for tap gestures</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="ClutterTapAction.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody><tr>
44
+ <td class="function_type">
45
+ <a class="link" href="ClutterAction.html" title="ClutterAction"><span class="returnvalue">ClutterAction</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="ClutterTapAction.html#clutter-tap-action-new" title="clutter_tap_action_new ()">clutter_tap_action_new</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr></tbody>
51
+ </table></div>
52
+ </div>
53
+ <div class="refsect1">
54
+ <a name="ClutterTapAction.signals"></a><h2>Signals</h2>
55
+ <div class="informaltable"><table border="0">
56
+ <colgroup>
57
+ <col width="150px" class="signals_return">
58
+ <col width="300px" class="signals_name">
59
+ <col width="200px" class="signals_flags">
60
+ </colgroup>
61
+ <tbody><tr>
62
+ <td class="signal_type"><span class="returnvalue">void</span></td>
63
+ <td class="signal_name"><a class="link" href="ClutterTapAction.html#ClutterTapAction-tap" title="The “tap” signal">tap</a></td>
64
+ <td class="signal_flags">Run Last</td>
65
+ </tr></tbody>
66
+ </table></div>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="ClutterTapAction.other"></a><h2>Types and Values</h2>
70
+ <div class="informaltable"><table width="100%" border="0">
71
+ <colgroup>
72
+ <col width="150px" class="name">
73
+ <col class="description">
74
+ </colgroup>
75
+ <tbody>
76
+ <tr>
77
+ <td class="datatype_keyword">struct</td>
78
+ <td class="function_name"><a class="link" href="ClutterTapAction.html#ClutterTapAction-struct" title="struct ClutterTapAction">ClutterTapAction</a></td>
79
+ </tr>
80
+ <tr>
81
+ <td class="datatype_keyword">struct</td>
82
+ <td class="function_name"><a class="link" href="ClutterTapAction.html#ClutterTapActionClass" title="struct ClutterTapActionClass">ClutterTapActionClass</a></td>
83
+ </tr>
84
+ </tbody>
85
+ </table></div>
86
+ </div>
87
+ <div class="refsect1">
88
+ <a name="ClutterTapAction.object-hierarchy"></a><h2>Object Hierarchy</h2>
89
+ <pre class="screen"> GObject
90
+ <span class="lineart">╰──</span> GInitiallyUnowned
91
+ <span class="lineart">╰──</span> <a class="link" href="ClutterActorMeta.html" title="ClutterActorMeta">ClutterActorMeta</a>
92
+ <span class="lineart">╰──</span> <a class="link" href="ClutterAction.html" title="ClutterAction">ClutterAction</a>
93
+ <span class="lineart">╰──</span> <a class="link" href="ClutterGestureAction.html" title="ClutterGestureAction">ClutterGestureAction</a>
94
+ <span class="lineart">╰──</span> ClutterTapAction
95
+ </pre>
96
+ </div>
97
+ <div class="refsect1">
98
+ <a name="ClutterTapAction.description"></a><h2>Description</h2>
99
+ <p><a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> is a sub-class of <a class="link" href="ClutterGestureAction.html" title="ClutterGestureAction"><span class="type">ClutterGestureAction</span></a> that implements
100
+ the logic for recognizing mouse clicks and touch tap gestures.</p>
101
+ <p>The simplest usage of <a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> consists in adding it to
102
+ a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a>, setting it as reactive and connecting a
103
+ callback for the <a class="link" href="ClutterTapAction.html#ClutterTapAction-tap" title="The “tap” signal"><span class="type">“tap”</span></a> signal, along the lines of the
104
+ following code:</p>
105
+ <div class="informalexample">
106
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
107
+ <tbody>
108
+ <tr>
109
+ <td class="listing_lines" align="right"><pre>1
110
+ 2
111
+ 3</pre></td>
112
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="ClutterActor.html#clutter-actor-add-action">clutter_actor_add_action</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> </span><span class="function"><a href="ClutterTapAction.html#clutter-tap-action-new">clutter_tap_action_new</a></span><span class="normal"> </span><span class="symbol">());</span>
113
+ <span class="function"><a href="ClutterActor.html#clutter-actor-set-reactive">clutter_actor_set_reactive</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">,</span><span class="normal"> TRUE</span><span class="symbol">);</span>
114
+ <span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">action</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"tap"</span><span class="symbol">,</span><span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">on_tap_callback</span><span class="symbol">),</span><span class="normal"> NULL</span><span class="symbol">);</span></pre></td>
115
+ </tr>
116
+ </tbody>
117
+ </table>
118
+ </div>
119
+
120
+ <p></p>
121
+ </div>
122
+ <div class="refsect1">
123
+ <a name="ClutterTapAction.functions_details"></a><h2>Functions</h2>
124
+ <div class="refsect2">
125
+ <a name="clutter-tap-action-new"></a><h3>clutter_tap_action_new ()</h3>
126
+ <pre class="programlisting"><a class="link" href="ClutterAction.html" title="ClutterAction"><span class="returnvalue">ClutterAction</span></a> *
127
+ clutter_tap_action_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
128
+ <p>Creates a new <a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> instance</p>
129
+ <div class="refsect3">
130
+ <a name="id-1.5.5.10.8.2.5"></a><h4>Returns</h4>
131
+ <p> the newly created <a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a></p>
132
+ <p></p>
133
+ </div>
134
+ <p class="since">Since 1.14</p>
135
+ </div>
136
+ </div>
137
+ <div class="refsect1">
138
+ <a name="ClutterTapAction.other_details"></a><h2>Types and Values</h2>
139
+ <div class="refsect2">
140
+ <a name="ClutterTapAction-struct"></a><h3>struct ClutterTapAction</h3>
141
+ <pre class="programlisting">struct ClutterTapAction;</pre>
142
+ <p>The <a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> structure contains
143
+ only private data and should be accessed using the provided API</p>
144
+ <p class="since">Since 1.14</p>
145
+ </div>
146
+ <hr>
147
+ <div class="refsect2">
148
+ <a name="ClutterTapActionClass"></a><h3>struct ClutterTapActionClass</h3>
149
+ <pre class="programlisting">struct ClutterTapActionClass {
150
+ gboolean (* tap) (ClutterTapAction *action,
151
+ ClutterActor *actor);
152
+ };
153
+ </pre>
154
+ <p>The <a class="link" href="ClutterTapAction.html#ClutterTapActionClass" title="struct ClutterTapActionClass"><span class="type">ClutterTapActionClass</span></a> structure contains
155
+ only private data.</p>
156
+ <div class="refsect3">
157
+ <a name="id-1.5.5.10.9.3.5"></a><h4>Members</h4>
158
+ <div class="informaltable"><table width="100%" border="0">
159
+ <colgroup>
160
+ <col width="300px" class="struct_members_name">
161
+ <col class="struct_members_description">
162
+ <col width="200px" class="struct_members_annotations">
163
+ </colgroup>
164
+ <tbody><tr>
165
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTapActionClass.tap"></a>tap</code></em> ()</p></td>
166
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="ClutterTapAction.html#ClutterTapAction-tap" title="The “tap” signal"><span class="type">“tap”</span></a> signal</p></td>
167
+ <td class="struct_member_annotations"> </td>
168
+ </tr></tbody>
169
+ </table></div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ <div class="refsect1">
174
+ <a name="ClutterTapAction.signal-details"></a><h2>Signal Details</h2>
175
+ <div class="refsect2">
176
+ <a name="ClutterTapAction-tap"></a><h3>The <code class="literal">“tap”</code> signal</h3>
177
+ <pre class="programlisting"><span class="returnvalue">void</span>
178
+ user_function (<a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> *action,
179
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor,
180
+ <span class="type">gpointer</span> user_data)</pre>
181
+ <p>The ::tap signal is emitted when the tap gesture is complete.</p>
182
+ <div class="refsect3">
183
+ <a name="id-1.5.5.10.10.2.5"></a><h4>Parameters</h4>
184
+ <div class="informaltable"><table width="100%" border="0">
185
+ <colgroup>
186
+ <col width="150px" class="parameters_name">
187
+ <col class="parameters_description">
188
+ <col width="200px" class="parameters_annotations">
189
+ </colgroup>
190
+ <tbody>
191
+ <tr>
192
+ <td class="parameter_name"><p>action</p></td>
193
+ <td class="parameter_description"><p>the <a class="link" href="ClutterTapAction.html" title="ClutterTapAction"><span class="type">ClutterTapAction</span></a> that emitted the signal</p></td>
194
+ <td class="parameter_annotations"> </td>
195
+ </tr>
196
+ <tr>
197
+ <td class="parameter_name"><p>actor</p></td>
198
+ <td class="parameter_description"><p>the <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> attached to the <em class="parameter"><code>action</code></em>
199
+ </p></td>
200
+ <td class="parameter_annotations"> </td>
201
+ </tr>
202
+ <tr>
203
+ <td class="parameter_name"><p>user_data</p></td>
204
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
205
+ <td class="parameter_annotations"> </td>
206
+ </tr>
207
+ </tbody>
208
+ </table></div>
209
+ </div>
210
+ <p>Flags: Run Last</p>
211
+ <p class="since">Since 1.14</p>
212
+ </div>
213
+ </div>
214
+ </div>
215
+ <div class="footer">
216
+ <hr>
217
+ Generated by GTK-Doc V1.20.1</div>
218
+ </body>
219
+ </html>
@@ -0,0 +1,3871 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Clutter Reference Manual: ClutterText</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="ch02.html" title="Base actors">
9
+ <link rel="prev" href="ClutterClone.html" title="ClutterClone">
10
+ <link rel="next" href="ClutterScrollActor.html" title="ClutterScrollActor">
11
+ <meta name="generator" content="GTK-Doc V1.20.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#ClutterText.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#ClutterText.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#ClutterText.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#ClutterText.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22
+ <a href="#ClutterText.signals" class="shortcut">Signals</a></span>
23
+ </td>
24
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25
+ <td><a accesskey="u" href="ch02.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
26
+ <td><a accesskey="p" href="ClutterClone.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27
+ <td><a accesskey="n" href="ClutterScrollActor.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28
+ </tr></table>
29
+ <div class="refentry">
30
+ <a name="ClutterText"></a><div class="titlepage"></div>
31
+ <div class="refnamediv"><table width="100%"><tr>
32
+ <td valign="top">
33
+ <h2><span class="refentrytitle"><a name="ClutterText.top_of_page"></a>ClutterText</span></h2>
34
+ <p>ClutterText — An actor for displaying and editing text</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="ClutterText.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="function_type">
48
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="ClutterText.html#clutter-text-new" title="clutter_text_new ()">clutter_text_new</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="ClutterText.html#clutter-text-new-full" title="clutter_text_new_full ()">clutter_text_new_full</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="ClutterText.html#clutter-text-new-with-text" title="clutter_text_new_with_text ()">clutter_text_new_with_text</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="function_type">
72
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
73
+ </td>
74
+ <td class="function_name">
75
+ <a class="link" href="ClutterText.html#clutter-text-new-with-buffer" title="clutter_text_new_with_buffer ()">clutter_text_new_with_buffer</a> <span class="c_punctuation">()</span>
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td class="function_type">
80
+ <span class="returnvalue">void</span>
81
+ </td>
82
+ <td class="function_name">
83
+ <a class="link" href="ClutterText.html#clutter-text-set-buffer" title="clutter_text_set_buffer ()">clutter_text_set_buffer</a> <span class="c_punctuation">()</span>
84
+ </td>
85
+ </tr>
86
+ <tr>
87
+ <td class="function_type">
88
+ <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="returnvalue">ClutterTextBuffer</span></a> *
89
+ </td>
90
+ <td class="function_name">
91
+ <a class="link" href="ClutterText.html#clutter-text-get-buffer" title="clutter_text_get_buffer ()">clutter_text_get_buffer</a> <span class="c_punctuation">()</span>
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <td class="function_type">
96
+ <span class="returnvalue">void</span>
97
+ </td>
98
+ <td class="function_name">
99
+ <a class="link" href="ClutterText.html#clutter-text-set-text" title="clutter_text_set_text ()">clutter_text_set_text</a> <span class="c_punctuation">()</span>
100
+ </td>
101
+ </tr>
102
+ <tr>
103
+ <td class="function_type">
104
+ <span class="returnvalue">void</span>
105
+ </td>
106
+ <td class="function_name">
107
+ <a class="link" href="ClutterText.html#clutter-text-set-markup" title="clutter_text_set_markup ()">clutter_text_set_markup</a> <span class="c_punctuation">()</span>
108
+ </td>
109
+ </tr>
110
+ <tr>
111
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
112
+ </td>
113
+ <td class="function_name">
114
+ <a class="link" href="ClutterText.html#clutter-text-get-text" title="clutter_text_get_text ()">clutter_text_get_text</a> <span class="c_punctuation">()</span>
115
+ </td>
116
+ </tr>
117
+ <tr>
118
+ <td class="function_type">
119
+ <span class="returnvalue">void</span>
120
+ </td>
121
+ <td class="function_name">
122
+ <a class="link" href="ClutterText.html#clutter-text-set-activatable" title="clutter_text_set_activatable ()">clutter_text_set_activatable</a> <span class="c_punctuation">()</span>
123
+ </td>
124
+ </tr>
125
+ <tr>
126
+ <td class="function_type">
127
+ <span class="returnvalue">gboolean</span>
128
+ </td>
129
+ <td class="function_name">
130
+ <a class="link" href="ClutterText.html#clutter-text-get-activatable" title="clutter_text_get_activatable ()">clutter_text_get_activatable</a> <span class="c_punctuation">()</span>
131
+ </td>
132
+ </tr>
133
+ <tr>
134
+ <td class="function_type">
135
+ <span class="returnvalue">void</span>
136
+ </td>
137
+ <td class="function_name">
138
+ <a class="link" href="ClutterText.html#clutter-text-set-attributes" title="clutter_text_set_attributes ()">clutter_text_set_attributes</a> <span class="c_punctuation">()</span>
139
+ </td>
140
+ </tr>
141
+ <tr>
142
+ <td class="function_type">
143
+ <span class="returnvalue">PangoAttrList</span> *
144
+ </td>
145
+ <td class="function_name">
146
+ <a class="link" href="ClutterText.html#clutter-text-get-attributes" title="clutter_text_get_attributes ()">clutter_text_get_attributes</a> <span class="c_punctuation">()</span>
147
+ </td>
148
+ </tr>
149
+ <tr>
150
+ <td class="function_type">
151
+ <span class="returnvalue">void</span>
152
+ </td>
153
+ <td class="function_name">
154
+ <a class="link" href="ClutterText.html#clutter-text-set-color" title="clutter_text_set_color ()">clutter_text_set_color</a> <span class="c_punctuation">()</span>
155
+ </td>
156
+ </tr>
157
+ <tr>
158
+ <td class="function_type">
159
+ <span class="returnvalue">void</span>
160
+ </td>
161
+ <td class="function_name">
162
+ <a class="link" href="ClutterText.html#clutter-text-get-color" title="clutter_text_get_color ()">clutter_text_get_color</a> <span class="c_punctuation">()</span>
163
+ </td>
164
+ </tr>
165
+ <tr>
166
+ <td class="function_type">
167
+ <span class="returnvalue">void</span>
168
+ </td>
169
+ <td class="function_name">
170
+ <a class="link" href="ClutterText.html#clutter-text-set-ellipsize" title="clutter_text_set_ellipsize ()">clutter_text_set_ellipsize</a> <span class="c_punctuation">()</span>
171
+ </td>
172
+ </tr>
173
+ <tr>
174
+ <td class="function_type">
175
+ <span class="returnvalue">PangoEllipsizeMode</span>
176
+ </td>
177
+ <td class="function_name">
178
+ <a class="link" href="ClutterText.html#clutter-text-get-ellipsize" title="clutter_text_get_ellipsize ()">clutter_text_get_ellipsize</a> <span class="c_punctuation">()</span>
179
+ </td>
180
+ </tr>
181
+ <tr>
182
+ <td class="function_type">
183
+ <span class="returnvalue">void</span>
184
+ </td>
185
+ <td class="function_name">
186
+ <a class="link" href="ClutterText.html#clutter-text-set-font-name" title="clutter_text_set_font_name ()">clutter_text_set_font_name</a> <span class="c_punctuation">()</span>
187
+ </td>
188
+ </tr>
189
+ <tr>
190
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
191
+ </td>
192
+ <td class="function_name">
193
+ <a class="link" href="ClutterText.html#clutter-text-get-font-name" title="clutter_text_get_font_name ()">clutter_text_get_font_name</a> <span class="c_punctuation">()</span>
194
+ </td>
195
+ </tr>
196
+ <tr>
197
+ <td class="function_type">
198
+ <span class="returnvalue">void</span>
199
+ </td>
200
+ <td class="function_name">
201
+ <a class="link" href="ClutterText.html#clutter-text-set-font-description" title="clutter_text_set_font_description ()">clutter_text_set_font_description</a> <span class="c_punctuation">()</span>
202
+ </td>
203
+ </tr>
204
+ <tr>
205
+ <td class="function_type">
206
+ <span class="returnvalue">PangoFontDescription</span> *
207
+ </td>
208
+ <td class="function_name">
209
+ <a class="link" href="ClutterText.html#clutter-text-get-font-description" title="clutter_text_get_font_description ()">clutter_text_get_font_description</a> <span class="c_punctuation">()</span>
210
+ </td>
211
+ </tr>
212
+ <tr>
213
+ <td class="function_type">
214
+ <span class="returnvalue">void</span>
215
+ </td>
216
+ <td class="function_name">
217
+ <a class="link" href="ClutterText.html#clutter-text-set-password-char" title="clutter_text_set_password_char ()">clutter_text_set_password_char</a> <span class="c_punctuation">()</span>
218
+ </td>
219
+ </tr>
220
+ <tr>
221
+ <td class="function_type">
222
+ <span class="returnvalue">gunichar</span>
223
+ </td>
224
+ <td class="function_name">
225
+ <a class="link" href="ClutterText.html#clutter-text-get-password-char" title="clutter_text_get_password_char ()">clutter_text_get_password_char</a> <span class="c_punctuation">()</span>
226
+ </td>
227
+ </tr>
228
+ <tr>
229
+ <td class="function_type">
230
+ <span class="returnvalue">void</span>
231
+ </td>
232
+ <td class="function_name">
233
+ <a class="link" href="ClutterText.html#clutter-text-set-justify" title="clutter_text_set_justify ()">clutter_text_set_justify</a> <span class="c_punctuation">()</span>
234
+ </td>
235
+ </tr>
236
+ <tr>
237
+ <td class="function_type">
238
+ <span class="returnvalue">gboolean</span>
239
+ </td>
240
+ <td class="function_name">
241
+ <a class="link" href="ClutterText.html#clutter-text-get-justify" title="clutter_text_get_justify ()">clutter_text_get_justify</a> <span class="c_punctuation">()</span>
242
+ </td>
243
+ </tr>
244
+ <tr>
245
+ <td class="function_type">
246
+ <span class="returnvalue">PangoLayout</span> *
247
+ </td>
248
+ <td class="function_name">
249
+ <a class="link" href="ClutterText.html#clutter-text-get-layout" title="clutter_text_get_layout ()">clutter_text_get_layout</a> <span class="c_punctuation">()</span>
250
+ </td>
251
+ </tr>
252
+ <tr>
253
+ <td class="function_type">
254
+ <span class="returnvalue">void</span>
255
+ </td>
256
+ <td class="function_name">
257
+ <a class="link" href="ClutterText.html#clutter-text-set-line-alignment" title="clutter_text_set_line_alignment ()">clutter_text_set_line_alignment</a> <span class="c_punctuation">()</span>
258
+ </td>
259
+ </tr>
260
+ <tr>
261
+ <td class="function_type">
262
+ <span class="returnvalue">PangoAlignment</span>
263
+ </td>
264
+ <td class="function_name">
265
+ <a class="link" href="ClutterText.html#clutter-text-get-line-alignment" title="clutter_text_get_line_alignment ()">clutter_text_get_line_alignment</a> <span class="c_punctuation">()</span>
266
+ </td>
267
+ </tr>
268
+ <tr>
269
+ <td class="function_type">
270
+ <span class="returnvalue">void</span>
271
+ </td>
272
+ <td class="function_name">
273
+ <a class="link" href="ClutterText.html#clutter-text-set-line-wrap" title="clutter_text_set_line_wrap ()">clutter_text_set_line_wrap</a> <span class="c_punctuation">()</span>
274
+ </td>
275
+ </tr>
276
+ <tr>
277
+ <td class="function_type">
278
+ <span class="returnvalue">gboolean</span>
279
+ </td>
280
+ <td class="function_name">
281
+ <a class="link" href="ClutterText.html#clutter-text-get-line-wrap" title="clutter_text_get_line_wrap ()">clutter_text_get_line_wrap</a> <span class="c_punctuation">()</span>
282
+ </td>
283
+ </tr>
284
+ <tr>
285
+ <td class="function_type">
286
+ <span class="returnvalue">void</span>
287
+ </td>
288
+ <td class="function_name">
289
+ <a class="link" href="ClutterText.html#clutter-text-set-line-wrap-mode" title="clutter_text_set_line_wrap_mode ()">clutter_text_set_line_wrap_mode</a> <span class="c_punctuation">()</span>
290
+ </td>
291
+ </tr>
292
+ <tr>
293
+ <td class="function_type">
294
+ <span class="returnvalue">PangoWrapMode</span>
295
+ </td>
296
+ <td class="function_name">
297
+ <a class="link" href="ClutterText.html#clutter-text-get-line-wrap-mode" title="clutter_text_get_line_wrap_mode ()">clutter_text_get_line_wrap_mode</a> <span class="c_punctuation">()</span>
298
+ </td>
299
+ </tr>
300
+ <tr>
301
+ <td class="function_type">
302
+ <span class="returnvalue">void</span>
303
+ </td>
304
+ <td class="function_name">
305
+ <a class="link" href="ClutterText.html#clutter-text-set-max-length" title="clutter_text_set_max_length ()">clutter_text_set_max_length</a> <span class="c_punctuation">()</span>
306
+ </td>
307
+ </tr>
308
+ <tr>
309
+ <td class="function_type">
310
+ <span class="returnvalue">gint</span>
311
+ </td>
312
+ <td class="function_name">
313
+ <a class="link" href="ClutterText.html#clutter-text-get-max-length" title="clutter_text_get_max_length ()">clutter_text_get_max_length</a> <span class="c_punctuation">()</span>
314
+ </td>
315
+ </tr>
316
+ <tr>
317
+ <td class="function_type">
318
+ <span class="returnvalue">void</span>
319
+ </td>
320
+ <td class="function_name">
321
+ <a class="link" href="ClutterText.html#clutter-text-set-selectable" title="clutter_text_set_selectable ()">clutter_text_set_selectable</a> <span class="c_punctuation">()</span>
322
+ </td>
323
+ </tr>
324
+ <tr>
325
+ <td class="function_type">
326
+ <span class="returnvalue">gboolean</span>
327
+ </td>
328
+ <td class="function_name">
329
+ <a class="link" href="ClutterText.html#clutter-text-get-selectable" title="clutter_text_get_selectable ()">clutter_text_get_selectable</a> <span class="c_punctuation">()</span>
330
+ </td>
331
+ </tr>
332
+ <tr>
333
+ <td class="function_type">
334
+ <span class="returnvalue">void</span>
335
+ </td>
336
+ <td class="function_name">
337
+ <a class="link" href="ClutterText.html#clutter-text-set-selection" title="clutter_text_set_selection ()">clutter_text_set_selection</a> <span class="c_punctuation">()</span>
338
+ </td>
339
+ </tr>
340
+ <tr>
341
+ <td class="function_type">
342
+ <span class="returnvalue">gchar</span> *
343
+ </td>
344
+ <td class="function_name">
345
+ <a class="link" href="ClutterText.html#clutter-text-get-selection" title="clutter_text_get_selection ()">clutter_text_get_selection</a> <span class="c_punctuation">()</span>
346
+ </td>
347
+ </tr>
348
+ <tr>
349
+ <td class="function_type">
350
+ <span class="returnvalue">void</span>
351
+ </td>
352
+ <td class="function_name">
353
+ <a class="link" href="ClutterText.html#clutter-text-set-selection-bound" title="clutter_text_set_selection_bound ()">clutter_text_set_selection_bound</a> <span class="c_punctuation">()</span>
354
+ </td>
355
+ </tr>
356
+ <tr>
357
+ <td class="function_type">
358
+ <span class="returnvalue">gint</span>
359
+ </td>
360
+ <td class="function_name">
361
+ <a class="link" href="ClutterText.html#clutter-text-get-selection-bound" title="clutter_text_get_selection_bound ()">clutter_text_get_selection_bound</a> <span class="c_punctuation">()</span>
362
+ </td>
363
+ </tr>
364
+ <tr>
365
+ <td class="function_type">
366
+ <span class="returnvalue">void</span>
367
+ </td>
368
+ <td class="function_name">
369
+ <a class="link" href="ClutterText.html#clutter-text-set-single-line-mode" title="clutter_text_set_single_line_mode ()">clutter_text_set_single_line_mode</a> <span class="c_punctuation">()</span>
370
+ </td>
371
+ </tr>
372
+ <tr>
373
+ <td class="function_type">
374
+ <span class="returnvalue">gboolean</span>
375
+ </td>
376
+ <td class="function_name">
377
+ <a class="link" href="ClutterText.html#clutter-text-get-single-line-mode" title="clutter_text_get_single_line_mode ()">clutter_text_get_single_line_mode</a> <span class="c_punctuation">()</span>
378
+ </td>
379
+ </tr>
380
+ <tr>
381
+ <td class="function_type">
382
+ <span class="returnvalue">void</span>
383
+ </td>
384
+ <td class="function_name">
385
+ <a class="link" href="ClutterText.html#clutter-text-set-use-markup" title="clutter_text_set_use_markup ()">clutter_text_set_use_markup</a> <span class="c_punctuation">()</span>
386
+ </td>
387
+ </tr>
388
+ <tr>
389
+ <td class="function_type">
390
+ <span class="returnvalue">gboolean</span>
391
+ </td>
392
+ <td class="function_name">
393
+ <a class="link" href="ClutterText.html#clutter-text-get-use-markup" title="clutter_text_get_use_markup ()">clutter_text_get_use_markup</a> <span class="c_punctuation">()</span>
394
+ </td>
395
+ </tr>
396
+ <tr>
397
+ <td class="function_type">
398
+ <span class="returnvalue">void</span>
399
+ </td>
400
+ <td class="function_name">
401
+ <a class="link" href="ClutterText.html#clutter-text-set-editable" title="clutter_text_set_editable ()">clutter_text_set_editable</a> <span class="c_punctuation">()</span>
402
+ </td>
403
+ </tr>
404
+ <tr>
405
+ <td class="function_type">
406
+ <span class="returnvalue">gboolean</span>
407
+ </td>
408
+ <td class="function_name">
409
+ <a class="link" href="ClutterText.html#clutter-text-get-editable" title="clutter_text_get_editable ()">clutter_text_get_editable</a> <span class="c_punctuation">()</span>
410
+ </td>
411
+ </tr>
412
+ <tr>
413
+ <td class="function_type">
414
+ <span class="returnvalue">void</span>
415
+ </td>
416
+ <td class="function_name">
417
+ <a class="link" href="ClutterText.html#clutter-text-insert-text" title="clutter_text_insert_text ()">clutter_text_insert_text</a> <span class="c_punctuation">()</span>
418
+ </td>
419
+ </tr>
420
+ <tr>
421
+ <td class="function_type">
422
+ <span class="returnvalue">void</span>
423
+ </td>
424
+ <td class="function_name">
425
+ <a class="link" href="ClutterText.html#clutter-text-insert-unichar" title="clutter_text_insert_unichar ()">clutter_text_insert_unichar</a> <span class="c_punctuation">()</span>
426
+ </td>
427
+ </tr>
428
+ <tr>
429
+ <td class="function_type">
430
+ <span class="returnvalue">void</span>
431
+ </td>
432
+ <td class="function_name">
433
+ <a class="link" href="ClutterText.html#clutter-text-delete-chars" title="clutter_text_delete_chars ()">clutter_text_delete_chars</a> <span class="c_punctuation">()</span>
434
+ </td>
435
+ </tr>
436
+ <tr>
437
+ <td class="function_type">
438
+ <span class="returnvalue">void</span>
439
+ </td>
440
+ <td class="function_name">
441
+ <a class="link" href="ClutterText.html#clutter-text-delete-text" title="clutter_text_delete_text ()">clutter_text_delete_text</a> <span class="c_punctuation">()</span>
442
+ </td>
443
+ </tr>
444
+ <tr>
445
+ <td class="function_type">
446
+ <span class="returnvalue">gboolean</span>
447
+ </td>
448
+ <td class="function_name">
449
+ <a class="link" href="ClutterText.html#clutter-text-delete-selection" title="clutter_text_delete_selection ()">clutter_text_delete_selection</a> <span class="c_punctuation">()</span>
450
+ </td>
451
+ </tr>
452
+ <tr>
453
+ <td class="function_type">
454
+ <span class="returnvalue">gchar</span> *
455
+ </td>
456
+ <td class="function_name">
457
+ <a class="link" href="ClutterText.html#clutter-text-get-chars" title="clutter_text_get_chars ()">clutter_text_get_chars</a> <span class="c_punctuation">()</span>
458
+ </td>
459
+ </tr>
460
+ <tr>
461
+ <td class="function_type">
462
+ <span class="returnvalue">void</span>
463
+ </td>
464
+ <td class="function_name">
465
+ <a class="link" href="ClutterText.html#clutter-text-set-cursor-color" title="clutter_text_set_cursor_color ()">clutter_text_set_cursor_color</a> <span class="c_punctuation">()</span>
466
+ </td>
467
+ </tr>
468
+ <tr>
469
+ <td class="function_type">
470
+ <span class="returnvalue">void</span>
471
+ </td>
472
+ <td class="function_name">
473
+ <a class="link" href="ClutterText.html#clutter-text-get-cursor-color" title="clutter_text_get_cursor_color ()">clutter_text_get_cursor_color</a> <span class="c_punctuation">()</span>
474
+ </td>
475
+ </tr>
476
+ <tr>
477
+ <td class="function_type">
478
+ <span class="returnvalue">void</span>
479
+ </td>
480
+ <td class="function_name">
481
+ <a class="link" href="ClutterText.html#clutter-text-set-selection-color" title="clutter_text_set_selection_color ()">clutter_text_set_selection_color</a> <span class="c_punctuation">()</span>
482
+ </td>
483
+ </tr>
484
+ <tr>
485
+ <td class="function_type">
486
+ <span class="returnvalue">void</span>
487
+ </td>
488
+ <td class="function_name">
489
+ <a class="link" href="ClutterText.html#clutter-text-get-selection-color" title="clutter_text_get_selection_color ()">clutter_text_get_selection_color</a> <span class="c_punctuation">()</span>
490
+ </td>
491
+ </tr>
492
+ <tr>
493
+ <td class="function_type">
494
+ <span class="returnvalue">void</span>
495
+ </td>
496
+ <td class="function_name">
497
+ <a class="link" href="ClutterText.html#clutter-text-set-selected-text-color" title="clutter_text_set_selected_text_color ()">clutter_text_set_selected_text_color</a> <span class="c_punctuation">()</span>
498
+ </td>
499
+ </tr>
500
+ <tr>
501
+ <td class="function_type">
502
+ <span class="returnvalue">void</span>
503
+ </td>
504
+ <td class="function_name">
505
+ <a class="link" href="ClutterText.html#clutter-text-get-selected-text-color" title="clutter_text_get_selected_text_color ()">clutter_text_get_selected_text_color</a> <span class="c_punctuation">()</span>
506
+ </td>
507
+ </tr>
508
+ <tr>
509
+ <td class="function_type">
510
+ <span class="returnvalue">void</span>
511
+ </td>
512
+ <td class="function_name">
513
+ <a class="link" href="ClutterText.html#clutter-text-set-cursor-position" title="clutter_text_set_cursor_position ()">clutter_text_set_cursor_position</a> <span class="c_punctuation">()</span>
514
+ </td>
515
+ </tr>
516
+ <tr>
517
+ <td class="function_type">
518
+ <span class="returnvalue">gint</span>
519
+ </td>
520
+ <td class="function_name">
521
+ <a class="link" href="ClutterText.html#clutter-text-get-cursor-position" title="clutter_text_get_cursor_position ()">clutter_text_get_cursor_position</a> <span class="c_punctuation">()</span>
522
+ </td>
523
+ </tr>
524
+ <tr>
525
+ <td class="function_type">
526
+ <span class="returnvalue">void</span>
527
+ </td>
528
+ <td class="function_name">
529
+ <a class="link" href="ClutterText.html#clutter-text-set-cursor-visible" title="clutter_text_set_cursor_visible ()">clutter_text_set_cursor_visible</a> <span class="c_punctuation">()</span>
530
+ </td>
531
+ </tr>
532
+ <tr>
533
+ <td class="function_type">
534
+ <span class="returnvalue">gboolean</span>
535
+ </td>
536
+ <td class="function_name">
537
+ <a class="link" href="ClutterText.html#clutter-text-get-cursor-visible" title="clutter_text_get_cursor_visible ()">clutter_text_get_cursor_visible</a> <span class="c_punctuation">()</span>
538
+ </td>
539
+ </tr>
540
+ <tr>
541
+ <td class="function_type">
542
+ <span class="returnvalue">void</span>
543
+ </td>
544
+ <td class="function_name">
545
+ <a class="link" href="ClutterText.html#clutter-text-set-cursor-size" title="clutter_text_set_cursor_size ()">clutter_text_set_cursor_size</a> <span class="c_punctuation">()</span>
546
+ </td>
547
+ </tr>
548
+ <tr>
549
+ <td class="function_type">
550
+ <span class="returnvalue">guint</span>
551
+ </td>
552
+ <td class="function_name">
553
+ <a class="link" href="ClutterText.html#clutter-text-get-cursor-size" title="clutter_text_get_cursor_size ()">clutter_text_get_cursor_size</a> <span class="c_punctuation">()</span>
554
+ </td>
555
+ </tr>
556
+ <tr>
557
+ <td class="function_type">
558
+ <span class="returnvalue">void</span>
559
+ </td>
560
+ <td class="function_name">
561
+ <a class="link" href="ClutterText.html#clutter-text-get-cursor-rect" title="clutter_text_get_cursor_rect ()">clutter_text_get_cursor_rect</a> <span class="c_punctuation">()</span>
562
+ </td>
563
+ </tr>
564
+ <tr>
565
+ <td class="function_type">
566
+ <span class="returnvalue">gboolean</span>
567
+ </td>
568
+ <td class="function_name">
569
+ <a class="link" href="ClutterText.html#clutter-text-activate" title="clutter_text_activate ()">clutter_text_activate</a> <span class="c_punctuation">()</span>
570
+ </td>
571
+ </tr>
572
+ <tr>
573
+ <td class="function_type">
574
+ <span class="returnvalue">gint</span>
575
+ </td>
576
+ <td class="function_name">
577
+ <a class="link" href="ClutterText.html#clutter-text-coords-to-position" title="clutter_text_coords_to_position ()">clutter_text_coords_to_position</a> <span class="c_punctuation">()</span>
578
+ </td>
579
+ </tr>
580
+ <tr>
581
+ <td class="function_type">
582
+ <span class="returnvalue">gboolean</span>
583
+ </td>
584
+ <td class="function_name">
585
+ <a class="link" href="ClutterText.html#clutter-text-position-to-coords" title="clutter_text_position_to_coords ()">clutter_text_position_to_coords</a> <span class="c_punctuation">()</span>
586
+ </td>
587
+ </tr>
588
+ <tr>
589
+ <td class="function_type">
590
+ <span class="returnvalue">void</span>
591
+ </td>
592
+ <td class="function_name">
593
+ <a class="link" href="ClutterText.html#clutter-text-set-preedit-string" title="clutter_text_set_preedit_string ()">clutter_text_set_preedit_string</a> <span class="c_punctuation">()</span>
594
+ </td>
595
+ </tr>
596
+ <tr>
597
+ <td class="function_type">
598
+ <span class="returnvalue">void</span>
599
+ </td>
600
+ <td class="function_name">
601
+ <a class="link" href="ClutterText.html#clutter-text-get-layout-offsets" title="clutter_text_get_layout_offsets ()">clutter_text_get_layout_offsets</a> <span class="c_punctuation">()</span>
602
+ </td>
603
+ </tr>
604
+ </tbody>
605
+ </table></div>
606
+ </div>
607
+ <div class="refsect1">
608
+ <a name="ClutterText.properties"></a><h2>Properties</h2>
609
+ <div class="informaltable"><table border="0">
610
+ <colgroup>
611
+ <col width="150px" class="properties_type">
612
+ <col width="300px" class="properties_name">
613
+ <col width="200px" class="properties_flags">
614
+ </colgroup>
615
+ <tbody>
616
+ <tr>
617
+ <td class="property_type"><span class="type">gboolean</span></td>
618
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--activatable" title="The “activatable” property">activatable</a></td>
619
+ <td class="property_flags">Read / Write</td>
620
+ </tr>
621
+ <tr>
622
+ <td class="property_type">
623
+ <span class="type">PangoAttrList</span> *</td>
624
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--attributes" title="The “attributes” property">attributes</a></td>
625
+ <td class="property_flags">Read / Write</td>
626
+ </tr>
627
+ <tr>
628
+ <td class="property_type">
629
+ <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> *</td>
630
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--buffer" title="The “buffer” property">buffer</a></td>
631
+ <td class="property_flags">Read / Write</td>
632
+ </tr>
633
+ <tr>
634
+ <td class="property_type">
635
+ <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</td>
636
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--color" title="The “color” property">color</a></td>
637
+ <td class="property_flags">Read / Write</td>
638
+ </tr>
639
+ <tr>
640
+ <td class="property_type">
641
+ <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</td>
642
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--cursor-color" title="The “cursor-color” property">cursor-color</a></td>
643
+ <td class="property_flags">Read / Write</td>
644
+ </tr>
645
+ <tr>
646
+ <td class="property_type"><span class="type">gboolean</span></td>
647
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--cursor-color-set" title="The “cursor-color-set” property">cursor-color-set</a></td>
648
+ <td class="property_flags">Read</td>
649
+ </tr>
650
+ <tr>
651
+ <td class="property_type"><span class="type">gint</span></td>
652
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--cursor-position" title="The “cursor-position” property">cursor-position</a></td>
653
+ <td class="property_flags">Read / Write</td>
654
+ </tr>
655
+ <tr>
656
+ <td class="property_type"><span class="type">gint</span></td>
657
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--cursor-size" title="The “cursor-size” property">cursor-size</a></td>
658
+ <td class="property_flags">Read / Write</td>
659
+ </tr>
660
+ <tr>
661
+ <td class="property_type"><span class="type">gboolean</span></td>
662
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--cursor-visible" title="The “cursor-visible” property">cursor-visible</a></td>
663
+ <td class="property_flags">Read / Write</td>
664
+ </tr>
665
+ <tr>
666
+ <td class="property_type"><span class="type">gboolean</span></td>
667
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--editable" title="The “editable” property">editable</a></td>
668
+ <td class="property_flags">Read / Write</td>
669
+ </tr>
670
+ <tr>
671
+ <td class="property_type"><span class="type">PangoEllipsizeMode</span></td>
672
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--ellipsize" title="The “ellipsize” property">ellipsize</a></td>
673
+ <td class="property_flags">Read / Write</td>
674
+ </tr>
675
+ <tr>
676
+ <td class="property_type">
677
+ <span class="type">PangoFontDescription</span> *</td>
678
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--font-description" title="The “font-description” property">font-description</a></td>
679
+ <td class="property_flags">Read / Write</td>
680
+ </tr>
681
+ <tr>
682
+ <td class="property_type">
683
+ <span class="type">gchar</span> *</td>
684
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--font-name" title="The “font-name” property">font-name</a></td>
685
+ <td class="property_flags">Read / Write</td>
686
+ </tr>
687
+ <tr>
688
+ <td class="property_type"><span class="type">gboolean</span></td>
689
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--justify" title="The “justify” property">justify</a></td>
690
+ <td class="property_flags">Read / Write</td>
691
+ </tr>
692
+ <tr>
693
+ <td class="property_type"><span class="type">PangoAlignment</span></td>
694
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--line-alignment" title="The “line-alignment” property">line-alignment</a></td>
695
+ <td class="property_flags">Read / Write</td>
696
+ </tr>
697
+ <tr>
698
+ <td class="property_type"><span class="type">gboolean</span></td>
699
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--line-wrap" title="The “line-wrap” property">line-wrap</a></td>
700
+ <td class="property_flags">Read / Write</td>
701
+ </tr>
702
+ <tr>
703
+ <td class="property_type"><span class="type">PangoWrapMode</span></td>
704
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--line-wrap-mode" title="The “line-wrap-mode” property">line-wrap-mode</a></td>
705
+ <td class="property_flags">Read / Write</td>
706
+ </tr>
707
+ <tr>
708
+ <td class="property_type"><span class="type">gint</span></td>
709
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--max-length" title="The “max-length” property">max-length</a></td>
710
+ <td class="property_flags">Read / Write</td>
711
+ </tr>
712
+ <tr>
713
+ <td class="property_type"><span class="type">guint</span></td>
714
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--password-char" title="The “password-char” property">password-char</a></td>
715
+ <td class="property_flags">Read / Write</td>
716
+ </tr>
717
+ <tr>
718
+ <td class="property_type"><span class="type">gint</span></td>
719
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--position" title="The “position” property">position</a></td>
720
+ <td class="property_flags">Read / Write</td>
721
+ </tr>
722
+ <tr>
723
+ <td class="property_type"><span class="type">gboolean</span></td>
724
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selectable" title="The “selectable” property">selectable</a></td>
725
+ <td class="property_flags">Read / Write</td>
726
+ </tr>
727
+ <tr>
728
+ <td class="property_type">
729
+ <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</td>
730
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selected-text-color" title="The “selected-text-color” property">selected-text-color</a></td>
731
+ <td class="property_flags">Read / Write</td>
732
+ </tr>
733
+ <tr>
734
+ <td class="property_type"><span class="type">gboolean</span></td>
735
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selected-text-color-set" title="The “selected-text-color-set” property">selected-text-color-set</a></td>
736
+ <td class="property_flags">Read</td>
737
+ </tr>
738
+ <tr>
739
+ <td class="property_type"><span class="type">gint</span></td>
740
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selection-bound" title="The “selection-bound” property">selection-bound</a></td>
741
+ <td class="property_flags">Read / Write</td>
742
+ </tr>
743
+ <tr>
744
+ <td class="property_type">
745
+ <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</td>
746
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selection-color" title="The “selection-color” property">selection-color</a></td>
747
+ <td class="property_flags">Read / Write</td>
748
+ </tr>
749
+ <tr>
750
+ <td class="property_type"><span class="type">gboolean</span></td>
751
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--selection-color-set" title="The “selection-color-set” property">selection-color-set</a></td>
752
+ <td class="property_flags">Read</td>
753
+ </tr>
754
+ <tr>
755
+ <td class="property_type"><span class="type">gboolean</span></td>
756
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--single-line-mode" title="The “single-line-mode” property">single-line-mode</a></td>
757
+ <td class="property_flags">Read / Write</td>
758
+ </tr>
759
+ <tr>
760
+ <td class="property_type">
761
+ <span class="type">gchar</span> *</td>
762
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--text" title="The “text” property">text</a></td>
763
+ <td class="property_flags">Read / Write</td>
764
+ </tr>
765
+ <tr>
766
+ <td class="property_type"><span class="type">gboolean</span></td>
767
+ <td class="property_name"><a class="link" href="ClutterText.html#ClutterText--use-markup" title="The “use-markup” property">use-markup</a></td>
768
+ <td class="property_flags">Read / Write</td>
769
+ </tr>
770
+ </tbody>
771
+ </table></div>
772
+ </div>
773
+ <div class="refsect1">
774
+ <a name="ClutterText.signals"></a><h2>Signals</h2>
775
+ <div class="informaltable"><table border="0">
776
+ <colgroup>
777
+ <col width="150px" class="signals_return">
778
+ <col width="300px" class="signals_name">
779
+ <col width="200px" class="signals_flags">
780
+ </colgroup>
781
+ <tbody>
782
+ <tr>
783
+ <td class="signal_type"><span class="returnvalue">void</span></td>
784
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-activate" title="The “activate” signal">activate</a></td>
785
+ <td class="signal_flags">Run Last</td>
786
+ </tr>
787
+ <tr>
788
+ <td class="signal_type"><span class="returnvalue">void</span></td>
789
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-cursor-changed" title="The “cursor-changed” signal">cursor-changed</a></td>
790
+ <td class="signal_flags">Run Last</td>
791
+ </tr>
792
+ <tr>
793
+ <td class="signal_type"><span class="returnvalue">void</span></td>
794
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-cursor-event" title="The “cursor-event” signal">cursor-event</a></td>
795
+ <td class="signal_flags">Run Last</td>
796
+ </tr>
797
+ <tr>
798
+ <td class="signal_type"><span class="returnvalue">void</span></td>
799
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-delete-text" title="The “delete-text” signal">delete-text</a></td>
800
+ <td class="signal_flags">Action</td>
801
+ </tr>
802
+ <tr>
803
+ <td class="signal_type"><span class="returnvalue">void</span></td>
804
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-insert-text" title="The “insert-text” signal">insert-text</a></td>
805
+ <td class="signal_flags">Action</td>
806
+ </tr>
807
+ <tr>
808
+ <td class="signal_type"><span class="returnvalue">void</span></td>
809
+ <td class="signal_name"><a class="link" href="ClutterText.html#ClutterText-text-changed" title="The “text-changed” signal">text-changed</a></td>
810
+ <td class="signal_flags">Run Last</td>
811
+ </tr>
812
+ </tbody>
813
+ </table></div>
814
+ </div>
815
+ <div class="refsect1">
816
+ <a name="ClutterText.other"></a><h2>Types and Values</h2>
817
+ <div class="informaltable"><table width="100%" border="0">
818
+ <colgroup>
819
+ <col width="150px" class="name">
820
+ <col class="description">
821
+ </colgroup>
822
+ <tbody>
823
+ <tr>
824
+ <td class="datatype_keyword">struct</td>
825
+ <td class="function_name"><a class="link" href="ClutterText.html#ClutterText-struct" title="struct ClutterText">ClutterText</a></td>
826
+ </tr>
827
+ <tr>
828
+ <td class="datatype_keyword">struct</td>
829
+ <td class="function_name"><a class="link" href="ClutterText.html#ClutterTextClass" title="struct ClutterTextClass">ClutterTextClass</a></td>
830
+ </tr>
831
+ </tbody>
832
+ </table></div>
833
+ </div>
834
+ <div class="refsect1">
835
+ <a name="ClutterText.object-hierarchy"></a><h2>Object Hierarchy</h2>
836
+ <pre class="screen"> GObject
837
+ <span class="lineart">╰──</span> GInitiallyUnowned
838
+ <span class="lineart">╰──</span> <a class="link" href="ClutterActor.html" title="ClutterActor">ClutterActor</a>
839
+ <span class="lineart">╰──</span> ClutterText
840
+ </pre>
841
+ </div>
842
+ <div class="refsect1">
843
+ <a name="ClutterText.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
844
+ <p>
845
+ ClutterText implements
846
+ <a class="link" href="ClutterContainer.html" title="ClutterContainer">ClutterContainer</a>, <a class="link" href="ClutterScriptable.html" title="ClutterScriptable">ClutterScriptable</a>, <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable">ClutterAnimatable</a> and AtkImplementorIface.</p>
847
+ </div>
848
+ <div class="refsect1">
849
+ <a name="ClutterText.description"></a><h2>Description</h2>
850
+ <p><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is an actor that displays custom text using Pango
851
+ as the text rendering engine.</p>
852
+ <p><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> also allows inline editing of the text if the
853
+ actor is set editable using <a class="link" href="ClutterText.html#clutter-text-set-editable" title="clutter_text_set_editable ()"><code class="function">clutter_text_set_editable()</code></a>.</p>
854
+ <p>Selection using keyboard or pointers can be enabled using
855
+ <a class="link" href="ClutterText.html#clutter-text-set-selectable" title="clutter_text_set_selectable ()"><code class="function">clutter_text_set_selectable()</code></a>.</p>
856
+ <p><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is available since Clutter 1.0</p>
857
+ </div>
858
+ <div class="refsect1">
859
+ <a name="ClutterText.functions_details"></a><h2>Functions</h2>
860
+ <div class="refsect2">
861
+ <a name="clutter-text-new"></a><h3>clutter_text_new ()</h3>
862
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
863
+ clutter_text_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
864
+ <p>Creates a new <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor. This actor can be used to
865
+ display and edit text.</p>
866
+ <div class="refsect3">
867
+ <a name="id-1.5.3.4.10.2.5"></a><h4>Returns</h4>
868
+ <p> the newly created <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor</p>
869
+ <p></p>
870
+ </div>
871
+ <p class="since">Since 1.0</p>
872
+ </div>
873
+ <hr>
874
+ <div class="refsect2">
875
+ <a name="clutter-text-new-full"></a><h3>clutter_text_new_full ()</h3>
876
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
877
+ clutter_text_new_full (<em class="parameter"><code>const <span class="type">gchar</span> *font_name</code></em>,
878
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
879
+ <em class="parameter"><code>const <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
880
+ <p>Creates a new <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor, using <em class="parameter"><code>font_name</code></em>
881
+ as the font
882
+ description; <em class="parameter"><code>text</code></em>
883
+ will be used to set the contents of the actor;
884
+ and <em class="parameter"><code>color</code></em>
885
+ will be used as the color to render <em class="parameter"><code>text</code></em>
886
+ .</p>
887
+ <p>This function is equivalent to calling <a class="link" href="ClutterText.html#clutter-text-new" title="clutter_text_new ()"><code class="function">clutter_text_new()</code></a>,
888
+ <a class="link" href="ClutterText.html#clutter-text-set-font-name" title="clutter_text_set_font_name ()"><code class="function">clutter_text_set_font_name()</code></a>, <a class="link" href="ClutterText.html#clutter-text-set-text" title="clutter_text_set_text ()"><code class="function">clutter_text_set_text()</code></a> and
889
+ <a class="link" href="ClutterText.html#clutter-text-set-color" title="clutter_text_set_color ()"><code class="function">clutter_text_set_color()</code></a>.</p>
890
+ <div class="refsect3">
891
+ <a name="id-1.5.3.4.10.3.6"></a><h4>Parameters</h4>
892
+ <div class="informaltable"><table width="100%" border="0">
893
+ <colgroup>
894
+ <col width="150px" class="parameters_name">
895
+ <col class="parameters_description">
896
+ <col width="200px" class="parameters_annotations">
897
+ </colgroup>
898
+ <tbody>
899
+ <tr>
900
+ <td class="parameter_name"><p>font_name</p></td>
901
+ <td class="parameter_description"><p>a string with a font description</p></td>
902
+ <td class="parameter_annotations"> </td>
903
+ </tr>
904
+ <tr>
905
+ <td class="parameter_name"><p>text</p></td>
906
+ <td class="parameter_description"><p>the contents of the actor</p></td>
907
+ <td class="parameter_annotations"> </td>
908
+ </tr>
909
+ <tr>
910
+ <td class="parameter_name"><p>color</p></td>
911
+ <td class="parameter_description"><p>the color to be used to render <em class="parameter"><code>text</code></em>
912
+ </p></td>
913
+ <td class="parameter_annotations"> </td>
914
+ </tr>
915
+ </tbody>
916
+ </table></div>
917
+ </div>
918
+ <div class="refsect3">
919
+ <a name="id-1.5.3.4.10.3.7"></a><h4>Returns</h4>
920
+ <p> the newly created <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor</p>
921
+ <p></p>
922
+ </div>
923
+ <p class="since">Since 1.0</p>
924
+ </div>
925
+ <hr>
926
+ <div class="refsect2">
927
+ <a name="clutter-text-new-with-text"></a><h3>clutter_text_new_with_text ()</h3>
928
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
929
+ clutter_text_new_with_text (<em class="parameter"><code>const <span class="type">gchar</span> *font_name</code></em>,
930
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
931
+ <p>Creates a new <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor, using <em class="parameter"><code>font_name</code></em>
932
+ as the font
933
+ description; <em class="parameter"><code>text</code></em>
934
+ will be used to set the contents of the actor.</p>
935
+ <p>This function is equivalent to calling <a class="link" href="ClutterText.html#clutter-text-new" title="clutter_text_new ()"><code class="function">clutter_text_new()</code></a>,
936
+ <a class="link" href="ClutterText.html#clutter-text-set-font-name" title="clutter_text_set_font_name ()"><code class="function">clutter_text_set_font_name()</code></a>, and <a class="link" href="ClutterText.html#clutter-text-set-text" title="clutter_text_set_text ()"><code class="function">clutter_text_set_text()</code></a>.</p>
937
+ <div class="refsect3">
938
+ <a name="id-1.5.3.4.10.4.6"></a><h4>Parameters</h4>
939
+ <div class="informaltable"><table width="100%" border="0">
940
+ <colgroup>
941
+ <col width="150px" class="parameters_name">
942
+ <col class="parameters_description">
943
+ <col width="200px" class="parameters_annotations">
944
+ </colgroup>
945
+ <tbody>
946
+ <tr>
947
+ <td class="parameter_name"><p>font_name</p></td>
948
+ <td class="parameter_description"><p> a string with a font description. </p></td>
949
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
950
+ </tr>
951
+ <tr>
952
+ <td class="parameter_name"><p>text</p></td>
953
+ <td class="parameter_description"><p>the contents of the actor</p></td>
954
+ <td class="parameter_annotations"> </td>
955
+ </tr>
956
+ </tbody>
957
+ </table></div>
958
+ </div>
959
+ <div class="refsect3">
960
+ <a name="id-1.5.3.4.10.4.7"></a><h4>Returns</h4>
961
+ <p> the newly created <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor</p>
962
+ <p></p>
963
+ </div>
964
+ <p class="since">Since 1.0</p>
965
+ </div>
966
+ <hr>
967
+ <div class="refsect2">
968
+ <a name="clutter-text-new-with-buffer"></a><h3>clutter_text_new_with_buffer ()</h3>
969
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
970
+ clutter_text_new_with_buffer (<em class="parameter"><code><a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> *buffer</code></em>);</pre>
971
+ <p>Creates a new entry with the specified text buffer.</p>
972
+ <div class="refsect3">
973
+ <a name="id-1.5.3.4.10.5.5"></a><h4>Parameters</h4>
974
+ <div class="informaltable"><table width="100%" border="0">
975
+ <colgroup>
976
+ <col width="150px" class="parameters_name">
977
+ <col class="parameters_description">
978
+ <col width="200px" class="parameters_annotations">
979
+ </colgroup>
980
+ <tbody><tr>
981
+ <td class="parameter_name"><p>buffer</p></td>
982
+ <td class="parameter_description"><p>The buffer to use for the new <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>.</p></td>
983
+ <td class="parameter_annotations"> </td>
984
+ </tr></tbody>
985
+ </table></div>
986
+ </div>
987
+ <div class="refsect3">
988
+ <a name="id-1.5.3.4.10.5.6"></a><h4>Returns</h4>
989
+ <p> a new <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p>
990
+ <p></p>
991
+ </div>
992
+ <p class="since">Since 1.10</p>
993
+ </div>
994
+ <hr>
995
+ <div class="refsect2">
996
+ <a name="clutter-text-set-buffer"></a><h3>clutter_text_set_buffer ()</h3>
997
+ <pre class="programlisting"><span class="returnvalue">void</span>
998
+ clutter_text_set_buffer (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
999
+ <em class="parameter"><code><a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> *buffer</code></em>);</pre>
1000
+ <p>Set the <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> object which holds the text for
1001
+ this widget.</p>
1002
+ <div class="refsect3">
1003
+ <a name="id-1.5.3.4.10.6.5"></a><h4>Parameters</h4>
1004
+ <div class="informaltable"><table width="100%" border="0">
1005
+ <colgroup>
1006
+ <col width="150px" class="parameters_name">
1007
+ <col class="parameters_description">
1008
+ <col width="200px" class="parameters_annotations">
1009
+ </colgroup>
1010
+ <tbody>
1011
+ <tr>
1012
+ <td class="parameter_name"><p>self</p></td>
1013
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1014
+ <td class="parameter_annotations"> </td>
1015
+ </tr>
1016
+ <tr>
1017
+ <td class="parameter_name"><p>buffer</p></td>
1018
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a></p></td>
1019
+ <td class="parameter_annotations"> </td>
1020
+ </tr>
1021
+ </tbody>
1022
+ </table></div>
1023
+ </div>
1024
+ <p class="since">Since 1.10</p>
1025
+ </div>
1026
+ <hr>
1027
+ <div class="refsect2">
1028
+ <a name="clutter-text-get-buffer"></a><h3>clutter_text_get_buffer ()</h3>
1029
+ <pre class="programlisting"><a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="returnvalue">ClutterTextBuffer</span></a> *
1030
+ clutter_text_get_buffer (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1031
+ <p>Get the <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> object which holds the text for
1032
+ this widget.</p>
1033
+ <div class="refsect3">
1034
+ <a name="id-1.5.3.4.10.7.5"></a><h4>Parameters</h4>
1035
+ <div class="informaltable"><table width="100%" border="0">
1036
+ <colgroup>
1037
+ <col width="150px" class="parameters_name">
1038
+ <col class="parameters_description">
1039
+ <col width="200px" class="parameters_annotations">
1040
+ </colgroup>
1041
+ <tbody><tr>
1042
+ <td class="parameter_name"><p>self</p></td>
1043
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1044
+ <td class="parameter_annotations"> </td>
1045
+ </tr></tbody>
1046
+ </table></div>
1047
+ </div>
1048
+ <div class="refsect3">
1049
+ <a name="id-1.5.3.4.10.7.6"></a><h4>Returns</h4>
1050
+ <p> A <span class="type">GtkEntryBuffer</span> object. </p>
1051
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1052
+ </div>
1053
+ <p class="since">Since 1.10</p>
1054
+ </div>
1055
+ <hr>
1056
+ <div class="refsect2">
1057
+ <a name="clutter-text-set-text"></a><h3>clutter_text_set_text ()</h3>
1058
+ <pre class="programlisting"><span class="returnvalue">void</span>
1059
+ clutter_text_set_text (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1060
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
1061
+ <p>Sets the contents of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
1062
+ <p>If the <a class="link" href="ClutterText.html#ClutterText--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a> property was set to <code class="literal">TRUE</code> it
1063
+ will be reset to <code class="literal">FALSE</code> as a side effect. If you want to
1064
+ maintain the <a class="link" href="ClutterText.html#ClutterText--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a> you should use the
1065
+ <a class="link" href="ClutterText.html#clutter-text-set-markup" title="clutter_text_set_markup ()"><code class="function">clutter_text_set_markup()</code></a> function instead</p>
1066
+ <div class="refsect3">
1067
+ <a name="id-1.5.3.4.10.8.6"></a><h4>Parameters</h4>
1068
+ <div class="informaltable"><table width="100%" border="0">
1069
+ <colgroup>
1070
+ <col width="150px" class="parameters_name">
1071
+ <col class="parameters_description">
1072
+ <col width="200px" class="parameters_annotations">
1073
+ </colgroup>
1074
+ <tbody>
1075
+ <tr>
1076
+ <td class="parameter_name"><p>self</p></td>
1077
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1078
+ <td class="parameter_annotations"> </td>
1079
+ </tr>
1080
+ <tr>
1081
+ <td class="parameter_name"><p>text</p></td>
1082
+ <td class="parameter_description"><p> the text to set. Passing <code class="literal">NULL</code> is the same
1083
+ as passing "" (the empty string). </p></td>
1084
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1085
+ </tr>
1086
+ </tbody>
1087
+ </table></div>
1088
+ </div>
1089
+ <p class="since">Since 1.0</p>
1090
+ </div>
1091
+ <hr>
1092
+ <div class="refsect2">
1093
+ <a name="clutter-text-set-markup"></a><h3>clutter_text_set_markup ()</h3>
1094
+ <pre class="programlisting"><span class="returnvalue">void</span>
1095
+ clutter_text_set_markup (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1096
+ <em class="parameter"><code>const <span class="type">gchar</span> *markup</code></em>);</pre>
1097
+ <p>Sets <em class="parameter"><code>markup</code></em>
1098
+ as the contents of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>.</p>
1099
+ <p>This is a convenience function for setting a string containing
1100
+ Pango markup, and it is logically equivalent to:</p>
1101
+ <div class="informalexample">
1102
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1103
+ <tbody>
1104
+ <tr>
1105
+ <td class="listing_lines" align="right"><pre>1
1106
+ 2
1107
+ 3</pre></td>
1108
+ <td class="listing_code"><pre class="programlisting"><span class="comment">/* the order is important */</span>
1109
+ <span class="function"><a href="ClutterText.html#clutter-text-set-text">clutter_text_set_text</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">CLUTTER_TEXT</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">),</span><span class="normal"> markup</span><span class="symbol">);</span>
1110
+ <span class="function"><a href="ClutterText.html#clutter-text-set-use-markup">clutter_text_set_use_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">CLUTTER_TEXT</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">actor</span><span class="symbol">),</span><span class="normal"> TRUE</span><span class="symbol">);</span></pre></td>
1111
+ </tr>
1112
+ </tbody>
1113
+ </table>
1114
+ </div>
1115
+
1116
+ <p></p>
1117
+ <div class="refsect3">
1118
+ <a name="id-1.5.3.4.10.9.8"></a><h4>Parameters</h4>
1119
+ <div class="informaltable"><table width="100%" border="0">
1120
+ <colgroup>
1121
+ <col width="150px" class="parameters_name">
1122
+ <col class="parameters_description">
1123
+ <col width="200px" class="parameters_annotations">
1124
+ </colgroup>
1125
+ <tbody>
1126
+ <tr>
1127
+ <td class="parameter_name"><p>self</p></td>
1128
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1129
+ <td class="parameter_annotations"> </td>
1130
+ </tr>
1131
+ <tr>
1132
+ <td class="parameter_name"><p>markup</p></td>
1133
+ <td class="parameter_description"><p> a string containing Pango markup.
1134
+ Passing <code class="literal">NULL</code> is the same as passing "" (the empty string). </p></td>
1135
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1136
+ </tr>
1137
+ </tbody>
1138
+ </table></div>
1139
+ </div>
1140
+ <p class="since">Since 1.0</p>
1141
+ </div>
1142
+ <hr>
1143
+ <div class="refsect2">
1144
+ <a name="clutter-text-get-text"></a><h3>clutter_text_get_text ()</h3>
1145
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
1146
+ clutter_text_get_text (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1147
+ <p>Retrieves a pointer to the current contents of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>
1148
+ actor.</p>
1149
+ <p>If you need a copy of the contents for manipulating, either
1150
+ use <code class="function">g_strdup()</code> on the returned string, or use:</p>
1151
+ <div class="informalexample">
1152
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1153
+ <tbody>
1154
+ <tr>
1155
+ <td class="listing_lines" align="right"><pre>1</pre></td>
1156
+ <td class="listing_code"><pre class="programlisting"><span class="normal">copy </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterText.html#clutter-text-get-chars">clutter_text_get_chars</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">text</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span></pre></td>
1157
+ </tr>
1158
+ </tbody>
1159
+ </table>
1160
+ </div>
1161
+
1162
+ <p></p>
1163
+ <p>Which will return a newly allocated string.</p>
1164
+ <p>If the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor is empty, this function will return
1165
+ an empty string, and not <code class="literal">NULL</code>.</p>
1166
+ <div class="refsect3">
1167
+ <a name="id-1.5.3.4.10.10.10"></a><h4>Parameters</h4>
1168
+ <div class="informaltable"><table width="100%" border="0">
1169
+ <colgroup>
1170
+ <col width="150px" class="parameters_name">
1171
+ <col class="parameters_description">
1172
+ <col width="200px" class="parameters_annotations">
1173
+ </colgroup>
1174
+ <tbody><tr>
1175
+ <td class="parameter_name"><p>self</p></td>
1176
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1177
+ <td class="parameter_annotations"> </td>
1178
+ </tr></tbody>
1179
+ </table></div>
1180
+ </div>
1181
+ <div class="refsect3">
1182
+ <a name="id-1.5.3.4.10.10.11"></a><h4>Returns</h4>
1183
+ <p> the contents of the actor. The returned
1184
+ string is owned by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor and should never be modified
1185
+ or freed. </p>
1186
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1187
+ </div>
1188
+ <p class="since">Since 1.0</p>
1189
+ </div>
1190
+ <hr>
1191
+ <div class="refsect2">
1192
+ <a name="clutter-text-set-activatable"></a><h3>clutter_text_set_activatable ()</h3>
1193
+ <pre class="programlisting"><span class="returnvalue">void</span>
1194
+ clutter_text_set_activatable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1195
+ <em class="parameter"><code><span class="type">gboolean</span> activatable</code></em>);</pre>
1196
+ <p>Sets whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be activatable.</p>
1197
+ <p>An activatable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor will emit the <a class="link" href="ClutterText.html#ClutterText-activate" title="The “activate” signal"><span class="type">“activate”</span></a>
1198
+ signal whenever the 'Enter' (or 'Return') key is pressed; if it is not
1199
+ activatable, a new line will be appended to the current content.</p>
1200
+ <p>An activatable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> must also be set as editable using
1201
+ <a class="link" href="ClutterText.html#clutter-text-set-editable" title="clutter_text_set_editable ()"><code class="function">clutter_text_set_editable()</code></a>.</p>
1202
+ <div class="refsect3">
1203
+ <a name="id-1.5.3.4.10.11.7"></a><h4>Parameters</h4>
1204
+ <div class="informaltable"><table width="100%" border="0">
1205
+ <colgroup>
1206
+ <col width="150px" class="parameters_name">
1207
+ <col class="parameters_description">
1208
+ <col width="200px" class="parameters_annotations">
1209
+ </colgroup>
1210
+ <tbody>
1211
+ <tr>
1212
+ <td class="parameter_name"><p>self</p></td>
1213
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1214
+ <td class="parameter_annotations"> </td>
1215
+ </tr>
1216
+ <tr>
1217
+ <td class="parameter_name"><p>activatable</p></td>
1218
+ <td class="parameter_description"><p>whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be activatable</p></td>
1219
+ <td class="parameter_annotations"> </td>
1220
+ </tr>
1221
+ </tbody>
1222
+ </table></div>
1223
+ </div>
1224
+ <p class="since">Since 1.0</p>
1225
+ </div>
1226
+ <hr>
1227
+ <div class="refsect2">
1228
+ <a name="clutter-text-get-activatable"></a><h3>clutter_text_get_activatable ()</h3>
1229
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1230
+ clutter_text_get_activatable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1231
+ <p>Retrieves whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is activatable or not.</p>
1232
+ <div class="refsect3">
1233
+ <a name="id-1.5.3.4.10.12.5"></a><h4>Parameters</h4>
1234
+ <div class="informaltable"><table width="100%" border="0">
1235
+ <colgroup>
1236
+ <col width="150px" class="parameters_name">
1237
+ <col class="parameters_description">
1238
+ <col width="200px" class="parameters_annotations">
1239
+ </colgroup>
1240
+ <tbody><tr>
1241
+ <td class="parameter_name"><p>self</p></td>
1242
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1243
+ <td class="parameter_annotations"> </td>
1244
+ </tr></tbody>
1245
+ </table></div>
1246
+ </div>
1247
+ <div class="refsect3">
1248
+ <a name="id-1.5.3.4.10.12.6"></a><h4>Returns</h4>
1249
+ <p> <code class="literal">TRUE</code> if the actor is activatable</p>
1250
+ <p></p>
1251
+ </div>
1252
+ <p class="since">Since 1.0</p>
1253
+ </div>
1254
+ <hr>
1255
+ <div class="refsect2">
1256
+ <a name="clutter-text-set-attributes"></a><h3>clutter_text_set_attributes ()</h3>
1257
+ <pre class="programlisting"><span class="returnvalue">void</span>
1258
+ clutter_text_set_attributes (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1259
+ <em class="parameter"><code><span class="type">PangoAttrList</span> *attrs</code></em>);</pre>
1260
+ <p>Sets the attributes list that are going to be applied to the
1261
+ <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> contents.</p>
1262
+ <p>The <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor will take a reference on the <span class="type">PangoAttrList</span>
1263
+ passed to this function.</p>
1264
+ <div class="refsect3">
1265
+ <a name="id-1.5.3.4.10.13.6"></a><h4>Parameters</h4>
1266
+ <div class="informaltable"><table width="100%" border="0">
1267
+ <colgroup>
1268
+ <col width="150px" class="parameters_name">
1269
+ <col class="parameters_description">
1270
+ <col width="200px" class="parameters_annotations">
1271
+ </colgroup>
1272
+ <tbody>
1273
+ <tr>
1274
+ <td class="parameter_name"><p>self</p></td>
1275
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1276
+ <td class="parameter_annotations"> </td>
1277
+ </tr>
1278
+ <tr>
1279
+ <td class="parameter_name"><p>attrs</p></td>
1280
+ <td class="parameter_description"><p> a <span class="type">PangoAttrList</span> or <code class="literal">NULL</code> to unset the attributes. </p></td>
1281
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1282
+ </tr>
1283
+ </tbody>
1284
+ </table></div>
1285
+ </div>
1286
+ <p class="since">Since 1.0</p>
1287
+ </div>
1288
+ <hr>
1289
+ <div class="refsect2">
1290
+ <a name="clutter-text-get-attributes"></a><h3>clutter_text_get_attributes ()</h3>
1291
+ <pre class="programlisting"><span class="returnvalue">PangoAttrList</span> *
1292
+ clutter_text_get_attributes (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1293
+ <p>Gets the attribute list that was set on the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor
1294
+ <a class="link" href="ClutterText.html#clutter-text-set-attributes" title="clutter_text_set_attributes ()"><code class="function">clutter_text_set_attributes()</code></a>, if any.</p>
1295
+ <div class="refsect3">
1296
+ <a name="id-1.5.3.4.10.14.5"></a><h4>Parameters</h4>
1297
+ <div class="informaltable"><table width="100%" border="0">
1298
+ <colgroup>
1299
+ <col width="150px" class="parameters_name">
1300
+ <col class="parameters_description">
1301
+ <col width="200px" class="parameters_annotations">
1302
+ </colgroup>
1303
+ <tbody><tr>
1304
+ <td class="parameter_name"><p>self</p></td>
1305
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1306
+ <td class="parameter_annotations"> </td>
1307
+ </tr></tbody>
1308
+ </table></div>
1309
+ </div>
1310
+ <div class="refsect3">
1311
+ <a name="id-1.5.3.4.10.14.6"></a><h4>Returns</h4>
1312
+ <p> the attribute list, or <code class="literal">NULL</code> if none was set. The
1313
+ returned value is owned by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> and should not be unreferenced. </p>
1314
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1315
+ </div>
1316
+ <p class="since">Since 1.0</p>
1317
+ </div>
1318
+ <hr>
1319
+ <div class="refsect2">
1320
+ <a name="clutter-text-set-color"></a><h3>clutter_text_set_color ()</h3>
1321
+ <pre class="programlisting"><span class="returnvalue">void</span>
1322
+ clutter_text_set_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1323
+ <em class="parameter"><code>const <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
1324
+ <p>Sets the color of the contents of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
1325
+ <p>The overall opacity of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor will be the
1326
+ result of the alpha value of <em class="parameter"><code>color</code></em>
1327
+ and the composited
1328
+ opacity of the actor itself on the scenegraph, as returned
1329
+ by <a class="link" href="ClutterActor.html#clutter-actor-get-paint-opacity" title="clutter_actor_get_paint_opacity ()"><code class="function">clutter_actor_get_paint_opacity()</code></a>.</p>
1330
+ <div class="refsect3">
1331
+ <a name="id-1.5.3.4.10.15.6"></a><h4>Parameters</h4>
1332
+ <div class="informaltable"><table width="100%" border="0">
1333
+ <colgroup>
1334
+ <col width="150px" class="parameters_name">
1335
+ <col class="parameters_description">
1336
+ <col width="200px" class="parameters_annotations">
1337
+ </colgroup>
1338
+ <tbody>
1339
+ <tr>
1340
+ <td class="parameter_name"><p>self</p></td>
1341
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1342
+ <td class="parameter_annotations"> </td>
1343
+ </tr>
1344
+ <tr>
1345
+ <td class="parameter_name"><p>color</p></td>
1346
+ <td class="parameter_description"><p>a <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a></p></td>
1347
+ <td class="parameter_annotations"> </td>
1348
+ </tr>
1349
+ </tbody>
1350
+ </table></div>
1351
+ </div>
1352
+ <p class="since">Since 1.0</p>
1353
+ </div>
1354
+ <hr>
1355
+ <div class="refsect2">
1356
+ <a name="clutter-text-get-color"></a><h3>clutter_text_get_color ()</h3>
1357
+ <pre class="programlisting"><span class="returnvalue">void</span>
1358
+ clutter_text_get_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1359
+ <em class="parameter"><code><a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
1360
+ <p>Retrieves the text color as set by <a class="link" href="ClutterText.html#clutter-text-set-color" title="clutter_text_set_color ()"><code class="function">clutter_text_set_color()</code></a>.</p>
1361
+ <div class="refsect3">
1362
+ <a name="id-1.5.3.4.10.16.5"></a><h4>Parameters</h4>
1363
+ <div class="informaltable"><table width="100%" border="0">
1364
+ <colgroup>
1365
+ <col width="150px" class="parameters_name">
1366
+ <col class="parameters_description">
1367
+ <col width="200px" class="parameters_annotations">
1368
+ </colgroup>
1369
+ <tbody>
1370
+ <tr>
1371
+ <td class="parameter_name"><p>self</p></td>
1372
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1373
+ <td class="parameter_annotations"> </td>
1374
+ </tr>
1375
+ <tr>
1376
+ <td class="parameter_name"><p>color</p></td>
1377
+ <td class="parameter_description"><p> return location for a <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a>. </p></td>
1378
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
1379
+ </tr>
1380
+ </tbody>
1381
+ </table></div>
1382
+ </div>
1383
+ <p class="since">Since 1.0</p>
1384
+ </div>
1385
+ <hr>
1386
+ <div class="refsect2">
1387
+ <a name="clutter-text-set-ellipsize"></a><h3>clutter_text_set_ellipsize ()</h3>
1388
+ <pre class="programlisting"><span class="returnvalue">void</span>
1389
+ clutter_text_set_ellipsize (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1390
+ <em class="parameter"><code><span class="type">PangoEllipsizeMode</span> mode</code></em>);</pre>
1391
+ <p>Sets the mode used to ellipsize (add an ellipsis: "...") to the
1392
+ text if there is not enough space to render the entire contents
1393
+ of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor</p>
1394
+ <div class="refsect3">
1395
+ <a name="id-1.5.3.4.10.17.5"></a><h4>Parameters</h4>
1396
+ <div class="informaltable"><table width="100%" border="0">
1397
+ <colgroup>
1398
+ <col width="150px" class="parameters_name">
1399
+ <col class="parameters_description">
1400
+ <col width="200px" class="parameters_annotations">
1401
+ </colgroup>
1402
+ <tbody>
1403
+ <tr>
1404
+ <td class="parameter_name"><p>self</p></td>
1405
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1406
+ <td class="parameter_annotations"> </td>
1407
+ </tr>
1408
+ <tr>
1409
+ <td class="parameter_name"><p>mode</p></td>
1410
+ <td class="parameter_description"><p>a <span class="type">PangoEllipsizeMode</span></p></td>
1411
+ <td class="parameter_annotations"> </td>
1412
+ </tr>
1413
+ </tbody>
1414
+ </table></div>
1415
+ </div>
1416
+ <p class="since">Since 1.0</p>
1417
+ </div>
1418
+ <hr>
1419
+ <div class="refsect2">
1420
+ <a name="clutter-text-get-ellipsize"></a><h3>clutter_text_get_ellipsize ()</h3>
1421
+ <pre class="programlisting"><span class="returnvalue">PangoEllipsizeMode</span>
1422
+ clutter_text_get_ellipsize (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1423
+ <p>Returns the ellipsizing position of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor, as
1424
+ set by <a class="link" href="ClutterText.html#clutter-text-set-ellipsize" title="clutter_text_set_ellipsize ()"><code class="function">clutter_text_set_ellipsize()</code></a>.</p>
1425
+ <div class="refsect3">
1426
+ <a name="id-1.5.3.4.10.18.5"></a><h4>Parameters</h4>
1427
+ <div class="informaltable"><table width="100%" border="0">
1428
+ <colgroup>
1429
+ <col width="150px" class="parameters_name">
1430
+ <col class="parameters_description">
1431
+ <col width="200px" class="parameters_annotations">
1432
+ </colgroup>
1433
+ <tbody><tr>
1434
+ <td class="parameter_name"><p>self</p></td>
1435
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1436
+ <td class="parameter_annotations"> </td>
1437
+ </tr></tbody>
1438
+ </table></div>
1439
+ </div>
1440
+ <div class="refsect3">
1441
+ <a name="id-1.5.3.4.10.18.6"></a><h4>Returns</h4>
1442
+ <p> <span class="type">PangoEllipsizeMode</span></p>
1443
+ <p></p>
1444
+ </div>
1445
+ <p class="since">Since 1.0</p>
1446
+ </div>
1447
+ <hr>
1448
+ <div class="refsect2">
1449
+ <a name="clutter-text-set-font-name"></a><h3>clutter_text_set_font_name ()</h3>
1450
+ <pre class="programlisting"><span class="returnvalue">void</span>
1451
+ clutter_text_set_font_name (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1452
+ <em class="parameter"><code>const <span class="type">gchar</span> *font_name</code></em>);</pre>
1453
+ <p>Sets the font used by a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>. The <em class="parameter"><code>font_name</code></em>
1454
+ string
1455
+ must either be <code class="literal">NULL</code>, which means that the font name from the
1456
+ default <a class="link" href="ClutterBackend.html" title="ClutterBackend"><span class="type">ClutterBackend</span></a> will be used; or be something that can
1457
+ be parsed by the <code class="function">pango_font_description_from_string()</code> function,
1458
+ like:</p>
1459
+ <div class="informalexample">
1460
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1461
+ <tbody>
1462
+ <tr>
1463
+ <td class="listing_lines" align="right"><pre>1
1464
+ 2
1465
+ 3
1466
+ 4
1467
+ 5
1468
+ 6
1469
+ 7
1470
+ 8</pre></td>
1471
+ <td class="listing_code"><pre class="programlisting"><span class="comment">// Set the font to the system's Sans, 10 points</span>
1472
+ <span class="function"><a href="ClutterText.html#clutter-text-set-font-name">clutter_text_set_font_name</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">text</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Sans 10"</span><span class="symbol">);</span>
1473
+
1474
+ <span class="comment">// Set the font to the system's Serif, 16 pixels</span>
1475
+ <span class="function"><a href="ClutterText.html#clutter-text-set-font-name">clutter_text_set_font_name</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">text</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Serif 16px"</span><span class="symbol">);</span>
1476
+
1477
+ <span class="comment">// Set the font to Helvetica, 10 points</span>
1478
+ <span class="function"><a href="ClutterText.html#clutter-text-set-font-name">clutter_text_set_font_name</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">text</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Helvetica 10"</span><span class="symbol">);</span></pre></td>
1479
+ </tr>
1480
+ </tbody>
1481
+ </table>
1482
+ </div>
1483
+
1484
+ <p></p>
1485
+ <div class="refsect3">
1486
+ <a name="id-1.5.3.4.10.19.7"></a><h4>Parameters</h4>
1487
+ <div class="informaltable"><table width="100%" border="0">
1488
+ <colgroup>
1489
+ <col width="150px" class="parameters_name">
1490
+ <col class="parameters_description">
1491
+ <col width="200px" class="parameters_annotations">
1492
+ </colgroup>
1493
+ <tbody>
1494
+ <tr>
1495
+ <td class="parameter_name"><p>self</p></td>
1496
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1497
+ <td class="parameter_annotations"> </td>
1498
+ </tr>
1499
+ <tr>
1500
+ <td class="parameter_name"><p>font_name</p></td>
1501
+ <td class="parameter_description"><p> a font name, or <code class="literal">NULL</code> to set the default font name. </p></td>
1502
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1503
+ </tr>
1504
+ </tbody>
1505
+ </table></div>
1506
+ </div>
1507
+ <p class="since">Since 1.0</p>
1508
+ </div>
1509
+ <hr>
1510
+ <div class="refsect2">
1511
+ <a name="clutter-text-get-font-name"></a><h3>clutter_text_get_font_name ()</h3>
1512
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
1513
+ clutter_text_get_font_name (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1514
+ <p>Retrieves the font name as set by <a class="link" href="ClutterText.html#clutter-text-set-font-name" title="clutter_text_set_font_name ()"><code class="function">clutter_text_set_font_name()</code></a>.</p>
1515
+ <div class="refsect3">
1516
+ <a name="id-1.5.3.4.10.20.5"></a><h4>Parameters</h4>
1517
+ <div class="informaltable"><table width="100%" border="0">
1518
+ <colgroup>
1519
+ <col width="150px" class="parameters_name">
1520
+ <col class="parameters_description">
1521
+ <col width="200px" class="parameters_annotations">
1522
+ </colgroup>
1523
+ <tbody><tr>
1524
+ <td class="parameter_name"><p>self</p></td>
1525
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1526
+ <td class="parameter_annotations"> </td>
1527
+ </tr></tbody>
1528
+ </table></div>
1529
+ </div>
1530
+ <div class="refsect3">
1531
+ <a name="id-1.5.3.4.10.20.6"></a><h4>Returns</h4>
1532
+ <p> a string containing the font name. The returned
1533
+ string is owned by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor and should not be
1534
+ modified or freed</p>
1535
+ <p></p>
1536
+ </div>
1537
+ <p class="since">Since 1.0</p>
1538
+ </div>
1539
+ <hr>
1540
+ <div class="refsect2">
1541
+ <a name="clutter-text-set-font-description"></a><h3>clutter_text_set_font_description ()</h3>
1542
+ <pre class="programlisting"><span class="returnvalue">void</span>
1543
+ clutter_text_set_font_description (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1544
+ <em class="parameter"><code><span class="type">PangoFontDescription</span> *font_desc</code></em>);</pre>
1545
+ <p>Sets <em class="parameter"><code>font_desc</code></em>
1546
+ as the font description for a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p>
1547
+ <p>The <span class="type">PangoFontDescription</span> is copied by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor
1548
+ so you can safely call <code class="function">pango_font_description_free()</code> on it after
1549
+ calling this function.</p>
1550
+ <div class="refsect3">
1551
+ <a name="id-1.5.3.4.10.21.6"></a><h4>Parameters</h4>
1552
+ <div class="informaltable"><table width="100%" border="0">
1553
+ <colgroup>
1554
+ <col width="150px" class="parameters_name">
1555
+ <col class="parameters_description">
1556
+ <col width="200px" class="parameters_annotations">
1557
+ </colgroup>
1558
+ <tbody>
1559
+ <tr>
1560
+ <td class="parameter_name"><p>self</p></td>
1561
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1562
+ <td class="parameter_annotations"> </td>
1563
+ </tr>
1564
+ <tr>
1565
+ <td class="parameter_name"><p>font_desc</p></td>
1566
+ <td class="parameter_description"><p>a <span class="type">PangoFontDescription</span></p></td>
1567
+ <td class="parameter_annotations"> </td>
1568
+ </tr>
1569
+ </tbody>
1570
+ </table></div>
1571
+ </div>
1572
+ <p class="since">Since 1.2</p>
1573
+ </div>
1574
+ <hr>
1575
+ <div class="refsect2">
1576
+ <a name="clutter-text-get-font-description"></a><h3>clutter_text_get_font_description ()</h3>
1577
+ <pre class="programlisting"><span class="returnvalue">PangoFontDescription</span> *
1578
+ clutter_text_get_font_description (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1579
+ <p>Retrieves the <span class="type">PangoFontDescription</span> used by <em class="parameter"><code>self</code></em>
1580
+ </p>
1581
+ <div class="refsect3">
1582
+ <a name="id-1.5.3.4.10.22.5"></a><h4>Parameters</h4>
1583
+ <div class="informaltable"><table width="100%" border="0">
1584
+ <colgroup>
1585
+ <col width="150px" class="parameters_name">
1586
+ <col class="parameters_description">
1587
+ <col width="200px" class="parameters_annotations">
1588
+ </colgroup>
1589
+ <tbody><tr>
1590
+ <td class="parameter_name"><p>self</p></td>
1591
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1592
+ <td class="parameter_annotations"> </td>
1593
+ </tr></tbody>
1594
+ </table></div>
1595
+ </div>
1596
+ <div class="refsect3">
1597
+ <a name="id-1.5.3.4.10.22.6"></a><h4>Returns</h4>
1598
+ <p> a <span class="type">PangoFontDescription</span>. The returned value is owned
1599
+ by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor and it should not be modified or freed</p>
1600
+ <p></p>
1601
+ </div>
1602
+ <p class="since">Since 1.2</p>
1603
+ </div>
1604
+ <hr>
1605
+ <div class="refsect2">
1606
+ <a name="clutter-text-set-password-char"></a><h3>clutter_text_set_password_char ()</h3>
1607
+ <pre class="programlisting"><span class="returnvalue">void</span>
1608
+ clutter_text_set_password_char (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1609
+ <em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
1610
+ <p>Sets the character to use in place of the actual text in a
1611
+ password text actor.</p>
1612
+ <p>If <em class="parameter"><code>wc</code></em>
1613
+ is 0 the text will be displayed as it is entered in the
1614
+ <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
1615
+ <div class="refsect3">
1616
+ <a name="id-1.5.3.4.10.23.6"></a><h4>Parameters</h4>
1617
+ <div class="informaltable"><table width="100%" border="0">
1618
+ <colgroup>
1619
+ <col width="150px" class="parameters_name">
1620
+ <col class="parameters_description">
1621
+ <col width="200px" class="parameters_annotations">
1622
+ </colgroup>
1623
+ <tbody>
1624
+ <tr>
1625
+ <td class="parameter_name"><p>self</p></td>
1626
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1627
+ <td class="parameter_annotations"> </td>
1628
+ </tr>
1629
+ <tr>
1630
+ <td class="parameter_name"><p>wc</p></td>
1631
+ <td class="parameter_description"><p>a Unicode character, or 0 to unset the password character</p></td>
1632
+ <td class="parameter_annotations"> </td>
1633
+ </tr>
1634
+ </tbody>
1635
+ </table></div>
1636
+ </div>
1637
+ <p class="since">Since 1.0</p>
1638
+ </div>
1639
+ <hr>
1640
+ <div class="refsect2">
1641
+ <a name="clutter-text-get-password-char"></a><h3>clutter_text_get_password_char ()</h3>
1642
+ <pre class="programlisting"><span class="returnvalue">gunichar</span>
1643
+ clutter_text_get_password_char (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1644
+ <p>Retrieves the character to use in place of the actual text
1645
+ as set by <a class="link" href="ClutterText.html#clutter-text-set-password-char" title="clutter_text_set_password_char ()"><code class="function">clutter_text_set_password_char()</code></a>.</p>
1646
+ <div class="refsect3">
1647
+ <a name="id-1.5.3.4.10.24.5"></a><h4>Parameters</h4>
1648
+ <div class="informaltable"><table width="100%" border="0">
1649
+ <colgroup>
1650
+ <col width="150px" class="parameters_name">
1651
+ <col class="parameters_description">
1652
+ <col width="200px" class="parameters_annotations">
1653
+ </colgroup>
1654
+ <tbody><tr>
1655
+ <td class="parameter_name"><p>self</p></td>
1656
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1657
+ <td class="parameter_annotations"> </td>
1658
+ </tr></tbody>
1659
+ </table></div>
1660
+ </div>
1661
+ <div class="refsect3">
1662
+ <a name="id-1.5.3.4.10.24.6"></a><h4>Returns</h4>
1663
+ <p> a Unicode character or 0 if the password
1664
+ character is not set</p>
1665
+ <p></p>
1666
+ </div>
1667
+ <p class="since">Since 1.0</p>
1668
+ </div>
1669
+ <hr>
1670
+ <div class="refsect2">
1671
+ <a name="clutter-text-set-justify"></a><h3>clutter_text_set_justify ()</h3>
1672
+ <pre class="programlisting"><span class="returnvalue">void</span>
1673
+ clutter_text_set_justify (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1674
+ <em class="parameter"><code><span class="type">gboolean</span> justify</code></em>);</pre>
1675
+ <p>Sets whether the text of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be justified
1676
+ on both margins. This setting is ignored if Clutter is compiled
1677
+ against Pango &lt; 1.18.</p>
1678
+ <div class="refsect3">
1679
+ <a name="id-1.5.3.4.10.25.5"></a><h4>Parameters</h4>
1680
+ <div class="informaltable"><table width="100%" border="0">
1681
+ <colgroup>
1682
+ <col width="150px" class="parameters_name">
1683
+ <col class="parameters_description">
1684
+ <col width="200px" class="parameters_annotations">
1685
+ </colgroup>
1686
+ <tbody>
1687
+ <tr>
1688
+ <td class="parameter_name"><p>self</p></td>
1689
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1690
+ <td class="parameter_annotations"> </td>
1691
+ </tr>
1692
+ <tr>
1693
+ <td class="parameter_name"><p>justify</p></td>
1694
+ <td class="parameter_description"><p>whether the text should be justified</p></td>
1695
+ <td class="parameter_annotations"> </td>
1696
+ </tr>
1697
+ </tbody>
1698
+ </table></div>
1699
+ </div>
1700
+ <p class="since">Since 1.0</p>
1701
+ </div>
1702
+ <hr>
1703
+ <div class="refsect2">
1704
+ <a name="clutter-text-get-justify"></a><h3>clutter_text_get_justify ()</h3>
1705
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1706
+ clutter_text_get_justify (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1707
+ <p>Retrieves whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should justify its contents
1708
+ on both margins.</p>
1709
+ <div class="refsect3">
1710
+ <a name="id-1.5.3.4.10.26.5"></a><h4>Parameters</h4>
1711
+ <div class="informaltable"><table width="100%" border="0">
1712
+ <colgroup>
1713
+ <col width="150px" class="parameters_name">
1714
+ <col class="parameters_description">
1715
+ <col width="200px" class="parameters_annotations">
1716
+ </colgroup>
1717
+ <tbody><tr>
1718
+ <td class="parameter_name"><p>self</p></td>
1719
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1720
+ <td class="parameter_annotations"> </td>
1721
+ </tr></tbody>
1722
+ </table></div>
1723
+ </div>
1724
+ <div class="refsect3">
1725
+ <a name="id-1.5.3.4.10.26.6"></a><h4>Returns</h4>
1726
+ <p> <code class="literal">TRUE</code> if the text should be justified</p>
1727
+ <p></p>
1728
+ </div>
1729
+ <p class="since">Since 0.6</p>
1730
+ </div>
1731
+ <hr>
1732
+ <div class="refsect2">
1733
+ <a name="clutter-text-get-layout"></a><h3>clutter_text_get_layout ()</h3>
1734
+ <pre class="programlisting"><span class="returnvalue">PangoLayout</span> *
1735
+ clutter_text_get_layout (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1736
+ <p>Retrieves the current <span class="type">PangoLayout</span> used by a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
1737
+ <div class="refsect3">
1738
+ <a name="id-1.5.3.4.10.27.5"></a><h4>Parameters</h4>
1739
+ <div class="informaltable"><table width="100%" border="0">
1740
+ <colgroup>
1741
+ <col width="150px" class="parameters_name">
1742
+ <col class="parameters_description">
1743
+ <col width="200px" class="parameters_annotations">
1744
+ </colgroup>
1745
+ <tbody><tr>
1746
+ <td class="parameter_name"><p>self</p></td>
1747
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1748
+ <td class="parameter_annotations"> </td>
1749
+ </tr></tbody>
1750
+ </table></div>
1751
+ </div>
1752
+ <div class="refsect3">
1753
+ <a name="id-1.5.3.4.10.27.6"></a><h4>Returns</h4>
1754
+ <p> a <span class="type">PangoLayout</span>. The returned object is owned by
1755
+ the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor and should not be modified or freed. </p>
1756
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1757
+ </div>
1758
+ <p class="since">Since 1.0</p>
1759
+ </div>
1760
+ <hr>
1761
+ <div class="refsect2">
1762
+ <a name="clutter-text-set-line-alignment"></a><h3>clutter_text_set_line_alignment ()</h3>
1763
+ <pre class="programlisting"><span class="returnvalue">void</span>
1764
+ clutter_text_set_line_alignment (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1765
+ <em class="parameter"><code><span class="type">PangoAlignment</span> alignment</code></em>);</pre>
1766
+ <p>Sets the way that the lines of a wrapped label are aligned with
1767
+ respect to each other. This does not affect the overall alignment
1768
+ of the label within its allocated or specified width.</p>
1769
+ <p>To align a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor you should add it to a container
1770
+ that supports alignment, or use the anchor point.</p>
1771
+ <div class="refsect3">
1772
+ <a name="id-1.5.3.4.10.28.6"></a><h4>Parameters</h4>
1773
+ <div class="informaltable"><table width="100%" border="0">
1774
+ <colgroup>
1775
+ <col width="150px" class="parameters_name">
1776
+ <col class="parameters_description">
1777
+ <col width="200px" class="parameters_annotations">
1778
+ </colgroup>
1779
+ <tbody>
1780
+ <tr>
1781
+ <td class="parameter_name"><p>self</p></td>
1782
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1783
+ <td class="parameter_annotations"> </td>
1784
+ </tr>
1785
+ <tr>
1786
+ <td class="parameter_name"><p>alignment</p></td>
1787
+ <td class="parameter_description"><p>A <span class="type">PangoAlignment</span></p></td>
1788
+ <td class="parameter_annotations"> </td>
1789
+ </tr>
1790
+ </tbody>
1791
+ </table></div>
1792
+ </div>
1793
+ <p class="since">Since 1.0</p>
1794
+ </div>
1795
+ <hr>
1796
+ <div class="refsect2">
1797
+ <a name="clutter-text-get-line-alignment"></a><h3>clutter_text_get_line_alignment ()</h3>
1798
+ <pre class="programlisting"><span class="returnvalue">PangoAlignment</span>
1799
+ clutter_text_get_line_alignment (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1800
+ <p>Retrieves the alignment of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>, as set by
1801
+ <a class="link" href="ClutterText.html#clutter-text-set-line-alignment" title="clutter_text_set_line_alignment ()"><code class="function">clutter_text_set_line_alignment()</code></a>.</p>
1802
+ <div class="refsect3">
1803
+ <a name="id-1.5.3.4.10.29.5"></a><h4>Parameters</h4>
1804
+ <div class="informaltable"><table width="100%" border="0">
1805
+ <colgroup>
1806
+ <col width="150px" class="parameters_name">
1807
+ <col class="parameters_description">
1808
+ <col width="200px" class="parameters_annotations">
1809
+ </colgroup>
1810
+ <tbody><tr>
1811
+ <td class="parameter_name"><p>self</p></td>
1812
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1813
+ <td class="parameter_annotations"> </td>
1814
+ </tr></tbody>
1815
+ </table></div>
1816
+ </div>
1817
+ <div class="refsect3">
1818
+ <a name="id-1.5.3.4.10.29.6"></a><h4>Returns</h4>
1819
+ <p> a <span class="type">PangoAlignment</span></p>
1820
+ <p></p>
1821
+ </div>
1822
+ <p class="since">Since 1.0</p>
1823
+ </div>
1824
+ <hr>
1825
+ <div class="refsect2">
1826
+ <a name="clutter-text-set-line-wrap"></a><h3>clutter_text_set_line_wrap ()</h3>
1827
+ <pre class="programlisting"><span class="returnvalue">void</span>
1828
+ clutter_text_set_line_wrap (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1829
+ <em class="parameter"><code><span class="type">gboolean</span> line_wrap</code></em>);</pre>
1830
+ <p>Sets whether the contents of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should wrap,
1831
+ if they don't fit the size assigned to the actor.</p>
1832
+ <div class="refsect3">
1833
+ <a name="id-1.5.3.4.10.30.5"></a><h4>Parameters</h4>
1834
+ <div class="informaltable"><table width="100%" border="0">
1835
+ <colgroup>
1836
+ <col width="150px" class="parameters_name">
1837
+ <col class="parameters_description">
1838
+ <col width="200px" class="parameters_annotations">
1839
+ </colgroup>
1840
+ <tbody>
1841
+ <tr>
1842
+ <td class="parameter_name"><p>self</p></td>
1843
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1844
+ <td class="parameter_annotations"> </td>
1845
+ </tr>
1846
+ <tr>
1847
+ <td class="parameter_name"><p>line_wrap</p></td>
1848
+ <td class="parameter_description"><p>whether the contents should wrap</p></td>
1849
+ <td class="parameter_annotations"> </td>
1850
+ </tr>
1851
+ </tbody>
1852
+ </table></div>
1853
+ </div>
1854
+ <p class="since">Since 1.0</p>
1855
+ </div>
1856
+ <hr>
1857
+ <div class="refsect2">
1858
+ <a name="clutter-text-get-line-wrap"></a><h3>clutter_text_get_line_wrap ()</h3>
1859
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1860
+ clutter_text_get_line_wrap (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1861
+ <p>Retrieves the value set using <a class="link" href="ClutterText.html#clutter-text-set-line-wrap" title="clutter_text_set_line_wrap ()"><code class="function">clutter_text_set_line_wrap()</code></a>.</p>
1862
+ <div class="refsect3">
1863
+ <a name="id-1.5.3.4.10.31.5"></a><h4>Parameters</h4>
1864
+ <div class="informaltable"><table width="100%" border="0">
1865
+ <colgroup>
1866
+ <col width="150px" class="parameters_name">
1867
+ <col class="parameters_description">
1868
+ <col width="200px" class="parameters_annotations">
1869
+ </colgroup>
1870
+ <tbody><tr>
1871
+ <td class="parameter_name"><p>self</p></td>
1872
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1873
+ <td class="parameter_annotations"> </td>
1874
+ </tr></tbody>
1875
+ </table></div>
1876
+ </div>
1877
+ <div class="refsect3">
1878
+ <a name="id-1.5.3.4.10.31.6"></a><h4>Returns</h4>
1879
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should wrap
1880
+ its contents</p>
1881
+ <p></p>
1882
+ </div>
1883
+ <p class="since">Since 1.0</p>
1884
+ </div>
1885
+ <hr>
1886
+ <div class="refsect2">
1887
+ <a name="clutter-text-set-line-wrap-mode"></a><h3>clutter_text_set_line_wrap_mode ()</h3>
1888
+ <pre class="programlisting"><span class="returnvalue">void</span>
1889
+ clutter_text_set_line_wrap_mode (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1890
+ <em class="parameter"><code><span class="type">PangoWrapMode</span> wrap_mode</code></em>);</pre>
1891
+ <p>If line wrapping is enabled (see <a class="link" href="ClutterText.html#clutter-text-set-line-wrap" title="clutter_text_set_line_wrap ()"><code class="function">clutter_text_set_line_wrap()</code></a>) this
1892
+ function controls how the line wrapping is performed. The default is
1893
+ <code class="literal">PANGO_WRAP_WORD</code> which means wrap on word boundaries.</p>
1894
+ <div class="refsect3">
1895
+ <a name="id-1.5.3.4.10.32.5"></a><h4>Parameters</h4>
1896
+ <div class="informaltable"><table width="100%" border="0">
1897
+ <colgroup>
1898
+ <col width="150px" class="parameters_name">
1899
+ <col class="parameters_description">
1900
+ <col width="200px" class="parameters_annotations">
1901
+ </colgroup>
1902
+ <tbody>
1903
+ <tr>
1904
+ <td class="parameter_name"><p>self</p></td>
1905
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1906
+ <td class="parameter_annotations"> </td>
1907
+ </tr>
1908
+ <tr>
1909
+ <td class="parameter_name"><p>wrap_mode</p></td>
1910
+ <td class="parameter_description"><p>the line wrapping mode</p></td>
1911
+ <td class="parameter_annotations"> </td>
1912
+ </tr>
1913
+ </tbody>
1914
+ </table></div>
1915
+ </div>
1916
+ <p class="since">Since 1.0</p>
1917
+ </div>
1918
+ <hr>
1919
+ <div class="refsect2">
1920
+ <a name="clutter-text-get-line-wrap-mode"></a><h3>clutter_text_get_line_wrap_mode ()</h3>
1921
+ <pre class="programlisting"><span class="returnvalue">PangoWrapMode</span>
1922
+ clutter_text_get_line_wrap_mode (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1923
+ <p>Retrieves the line wrap mode used by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
1924
+ <p>See <a class="link" href="ClutterText.html#clutter-text-set-line-wrap-mode" title="clutter_text_set_line_wrap_mode ()"><code class="function">clutter_text_set_line_wrap_mode()</code></a>.</p>
1925
+ <div class="refsect3">
1926
+ <a name="id-1.5.3.4.10.33.6"></a><h4>Parameters</h4>
1927
+ <div class="informaltable"><table width="100%" border="0">
1928
+ <colgroup>
1929
+ <col width="150px" class="parameters_name">
1930
+ <col class="parameters_description">
1931
+ <col width="200px" class="parameters_annotations">
1932
+ </colgroup>
1933
+ <tbody><tr>
1934
+ <td class="parameter_name"><p>self</p></td>
1935
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1936
+ <td class="parameter_annotations"> </td>
1937
+ </tr></tbody>
1938
+ </table></div>
1939
+ </div>
1940
+ <div class="refsect3">
1941
+ <a name="id-1.5.3.4.10.33.7"></a><h4>Returns</h4>
1942
+ <p> the wrap mode used by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p>
1943
+ <p></p>
1944
+ </div>
1945
+ <p class="since">Since 1.0</p>
1946
+ </div>
1947
+ <hr>
1948
+ <div class="refsect2">
1949
+ <a name="clutter-text-set-max-length"></a><h3>clutter_text_set_max_length ()</h3>
1950
+ <pre class="programlisting"><span class="returnvalue">void</span>
1951
+ clutter_text_set_max_length (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
1952
+ <em class="parameter"><code><span class="type">gint</span> max</code></em>);</pre>
1953
+ <p>Sets the maximum allowed length of the contents of the actor. If the
1954
+ current contents are longer than the given length, then they will be
1955
+ truncated to fit.</p>
1956
+ <div class="refsect3">
1957
+ <a name="id-1.5.3.4.10.34.5"></a><h4>Parameters</h4>
1958
+ <div class="informaltable"><table width="100%" border="0">
1959
+ <colgroup>
1960
+ <col width="150px" class="parameters_name">
1961
+ <col class="parameters_description">
1962
+ <col width="200px" class="parameters_annotations">
1963
+ </colgroup>
1964
+ <tbody>
1965
+ <tr>
1966
+ <td class="parameter_name"><p>self</p></td>
1967
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1968
+ <td class="parameter_annotations"> </td>
1969
+ </tr>
1970
+ <tr>
1971
+ <td class="parameter_name"><p>max</p></td>
1972
+ <td class="parameter_description"><p>the maximum number of characters allowed in the text actor; 0
1973
+ to disable or -1 to set the length of the current string</p></td>
1974
+ <td class="parameter_annotations"> </td>
1975
+ </tr>
1976
+ </tbody>
1977
+ </table></div>
1978
+ </div>
1979
+ <p class="since">Since 1.0</p>
1980
+ </div>
1981
+ <hr>
1982
+ <div class="refsect2">
1983
+ <a name="clutter-text-get-max-length"></a><h3>clutter_text_get_max_length ()</h3>
1984
+ <pre class="programlisting"><span class="returnvalue">gint</span>
1985
+ clutter_text_get_max_length (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
1986
+ <p>Gets the maximum length of text that can be set into a text actor.</p>
1987
+ <p>See <a class="link" href="ClutterText.html#clutter-text-set-max-length" title="clutter_text_set_max_length ()"><code class="function">clutter_text_set_max_length()</code></a>.</p>
1988
+ <div class="refsect3">
1989
+ <a name="id-1.5.3.4.10.35.6"></a><h4>Parameters</h4>
1990
+ <div class="informaltable"><table width="100%" border="0">
1991
+ <colgroup>
1992
+ <col width="150px" class="parameters_name">
1993
+ <col class="parameters_description">
1994
+ <col width="200px" class="parameters_annotations">
1995
+ </colgroup>
1996
+ <tbody><tr>
1997
+ <td class="parameter_name"><p>self</p></td>
1998
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
1999
+ <td class="parameter_annotations"> </td>
2000
+ </tr></tbody>
2001
+ </table></div>
2002
+ </div>
2003
+ <div class="refsect3">
2004
+ <a name="id-1.5.3.4.10.35.7"></a><h4>Returns</h4>
2005
+ <p> the maximum number of characters.</p>
2006
+ <p></p>
2007
+ </div>
2008
+ <p class="since">Since 1.0</p>
2009
+ </div>
2010
+ <hr>
2011
+ <div class="refsect2">
2012
+ <a name="clutter-text-set-selectable"></a><h3>clutter_text_set_selectable ()</h3>
2013
+ <pre class="programlisting"><span class="returnvalue">void</span>
2014
+ clutter_text_set_selectable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2015
+ <em class="parameter"><code><span class="type">gboolean</span> selectable</code></em>);</pre>
2016
+ <p>Sets whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be selectable.</p>
2017
+ <p>A selectable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> will allow selecting its contents using
2018
+ the pointer or the keyboard.</p>
2019
+ <div class="refsect3">
2020
+ <a name="id-1.5.3.4.10.36.6"></a><h4>Parameters</h4>
2021
+ <div class="informaltable"><table width="100%" border="0">
2022
+ <colgroup>
2023
+ <col width="150px" class="parameters_name">
2024
+ <col class="parameters_description">
2025
+ <col width="200px" class="parameters_annotations">
2026
+ </colgroup>
2027
+ <tbody>
2028
+ <tr>
2029
+ <td class="parameter_name"><p>self</p></td>
2030
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2031
+ <td class="parameter_annotations"> </td>
2032
+ </tr>
2033
+ <tr>
2034
+ <td class="parameter_name"><p>selectable</p></td>
2035
+ <td class="parameter_description"><p>whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be selectable</p></td>
2036
+ <td class="parameter_annotations"> </td>
2037
+ </tr>
2038
+ </tbody>
2039
+ </table></div>
2040
+ </div>
2041
+ <p class="since">Since 1.0</p>
2042
+ </div>
2043
+ <hr>
2044
+ <div class="refsect2">
2045
+ <a name="clutter-text-get-selectable"></a><h3>clutter_text_get_selectable ()</h3>
2046
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2047
+ clutter_text_get_selectable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2048
+ <p>Retrieves whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is selectable or not.</p>
2049
+ <div class="refsect3">
2050
+ <a name="id-1.5.3.4.10.37.5"></a><h4>Parameters</h4>
2051
+ <div class="informaltable"><table width="100%" border="0">
2052
+ <colgroup>
2053
+ <col width="150px" class="parameters_name">
2054
+ <col class="parameters_description">
2055
+ <col width="200px" class="parameters_annotations">
2056
+ </colgroup>
2057
+ <tbody><tr>
2058
+ <td class="parameter_name"><p>self</p></td>
2059
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2060
+ <td class="parameter_annotations"> </td>
2061
+ </tr></tbody>
2062
+ </table></div>
2063
+ </div>
2064
+ <div class="refsect3">
2065
+ <a name="id-1.5.3.4.10.37.6"></a><h4>Returns</h4>
2066
+ <p> <code class="literal">TRUE</code> if the actor is selectable</p>
2067
+ <p></p>
2068
+ </div>
2069
+ <p class="since">Since 1.0</p>
2070
+ </div>
2071
+ <hr>
2072
+ <div class="refsect2">
2073
+ <a name="clutter-text-set-selection"></a><h3>clutter_text_set_selection ()</h3>
2074
+ <pre class="programlisting"><span class="returnvalue">void</span>
2075
+ clutter_text_set_selection (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2076
+ <em class="parameter"><code><span class="type">gssize</span> start_pos</code></em>,
2077
+ <em class="parameter"><code><span class="type">gssize</span> end_pos</code></em>);</pre>
2078
+ <p>Selects the region of text between <em class="parameter"><code>start_pos</code></em>
2079
+ and <em class="parameter"><code>end_pos</code></em>
2080
+ .</p>
2081
+ <p>This function changes the position of the cursor to match
2082
+ <em class="parameter"><code>start_pos</code></em>
2083
+ and the selection bound to match <em class="parameter"><code>end_pos</code></em>
2084
+ .</p>
2085
+ <div class="refsect3">
2086
+ <a name="id-1.5.3.4.10.38.6"></a><h4>Parameters</h4>
2087
+ <div class="informaltable"><table width="100%" border="0">
2088
+ <colgroup>
2089
+ <col width="150px" class="parameters_name">
2090
+ <col class="parameters_description">
2091
+ <col width="200px" class="parameters_annotations">
2092
+ </colgroup>
2093
+ <tbody>
2094
+ <tr>
2095
+ <td class="parameter_name"><p>self</p></td>
2096
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2097
+ <td class="parameter_annotations"> </td>
2098
+ </tr>
2099
+ <tr>
2100
+ <td class="parameter_name"><p>start_pos</p></td>
2101
+ <td class="parameter_description"><p>start of the selection, in characters</p></td>
2102
+ <td class="parameter_annotations"> </td>
2103
+ </tr>
2104
+ <tr>
2105
+ <td class="parameter_name"><p>end_pos</p></td>
2106
+ <td class="parameter_description"><p>end of the selection, in characters</p></td>
2107
+ <td class="parameter_annotations"> </td>
2108
+ </tr>
2109
+ </tbody>
2110
+ </table></div>
2111
+ </div>
2112
+ <p class="since">Since 1.0</p>
2113
+ </div>
2114
+ <hr>
2115
+ <div class="refsect2">
2116
+ <a name="clutter-text-get-selection"></a><h3>clutter_text_get_selection ()</h3>
2117
+ <pre class="programlisting"><span class="returnvalue">gchar</span> *
2118
+ clutter_text_get_selection (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2119
+ <p>Retrieves the currently selected text.</p>
2120
+ <div class="refsect3">
2121
+ <a name="id-1.5.3.4.10.39.5"></a><h4>Parameters</h4>
2122
+ <div class="informaltable"><table width="100%" border="0">
2123
+ <colgroup>
2124
+ <col width="150px" class="parameters_name">
2125
+ <col class="parameters_description">
2126
+ <col width="200px" class="parameters_annotations">
2127
+ </colgroup>
2128
+ <tbody><tr>
2129
+ <td class="parameter_name"><p>self</p></td>
2130
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2131
+ <td class="parameter_annotations"> </td>
2132
+ </tr></tbody>
2133
+ </table></div>
2134
+ </div>
2135
+ <div class="refsect3">
2136
+ <a name="id-1.5.3.4.10.39.6"></a><h4>Returns</h4>
2137
+ <p> a newly allocated string containing the currently
2138
+ selected text, or <code class="literal">NULL</code>. Use <code class="function">g_free()</code> to free the returned
2139
+ string.</p>
2140
+ <p></p>
2141
+ </div>
2142
+ <p class="since">Since 1.0</p>
2143
+ </div>
2144
+ <hr>
2145
+ <div class="refsect2">
2146
+ <a name="clutter-text-set-selection-bound"></a><h3>clutter_text_set_selection_bound ()</h3>
2147
+ <pre class="programlisting"><span class="returnvalue">void</span>
2148
+ clutter_text_set_selection_bound (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2149
+ <em class="parameter"><code><span class="type">gint</span> selection_bound</code></em>);</pre>
2150
+ <p>Sets the other end of the selection, starting from the current
2151
+ cursor position.</p>
2152
+ <p>If <em class="parameter"><code>selection_bound</code></em>
2153
+ is -1, the selection unset.</p>
2154
+ <div class="refsect3">
2155
+ <a name="id-1.5.3.4.10.40.6"></a><h4>Parameters</h4>
2156
+ <div class="informaltable"><table width="100%" border="0">
2157
+ <colgroup>
2158
+ <col width="150px" class="parameters_name">
2159
+ <col class="parameters_description">
2160
+ <col width="200px" class="parameters_annotations">
2161
+ </colgroup>
2162
+ <tbody>
2163
+ <tr>
2164
+ <td class="parameter_name"><p>self</p></td>
2165
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2166
+ <td class="parameter_annotations"> </td>
2167
+ </tr>
2168
+ <tr>
2169
+ <td class="parameter_name"><p>selection_bound</p></td>
2170
+ <td class="parameter_description"><p>the position of the end of the selection, in characters</p></td>
2171
+ <td class="parameter_annotations"> </td>
2172
+ </tr>
2173
+ </tbody>
2174
+ </table></div>
2175
+ </div>
2176
+ <p class="since">Since 1.0</p>
2177
+ </div>
2178
+ <hr>
2179
+ <div class="refsect2">
2180
+ <a name="clutter-text-get-selection-bound"></a><h3>clutter_text_get_selection_bound ()</h3>
2181
+ <pre class="programlisting"><span class="returnvalue">gint</span>
2182
+ clutter_text_get_selection_bound (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2183
+ <p>Retrieves the other end of the selection of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor,
2184
+ in characters from the current cursor position.</p>
2185
+ <div class="refsect3">
2186
+ <a name="id-1.5.3.4.10.41.5"></a><h4>Parameters</h4>
2187
+ <div class="informaltable"><table width="100%" border="0">
2188
+ <colgroup>
2189
+ <col width="150px" class="parameters_name">
2190
+ <col class="parameters_description">
2191
+ <col width="200px" class="parameters_annotations">
2192
+ </colgroup>
2193
+ <tbody><tr>
2194
+ <td class="parameter_name"><p>self</p></td>
2195
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2196
+ <td class="parameter_annotations"> </td>
2197
+ </tr></tbody>
2198
+ </table></div>
2199
+ </div>
2200
+ <div class="refsect3">
2201
+ <a name="id-1.5.3.4.10.41.6"></a><h4>Returns</h4>
2202
+ <p> the position of the other end of the selection</p>
2203
+ <p></p>
2204
+ </div>
2205
+ <p class="since">Since 1.0</p>
2206
+ </div>
2207
+ <hr>
2208
+ <div class="refsect2">
2209
+ <a name="clutter-text-set-single-line-mode"></a><h3>clutter_text_set_single_line_mode ()</h3>
2210
+ <pre class="programlisting"><span class="returnvalue">void</span>
2211
+ clutter_text_set_single_line_mode (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2212
+ <em class="parameter"><code><span class="type">gboolean</span> single_line</code></em>);</pre>
2213
+ <p>Sets whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be in single line mode
2214
+ or not. Only editable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>&lt;!-- --&gt;s can be in single line
2215
+ mode.</p>
2216
+ <p>A text actor in single line mode will not wrap text and will clip
2217
+ the visible area to the predefined size. The contents of the
2218
+ text actor will scroll to display the end of the text if its length
2219
+ is bigger than the allocated width.</p>
2220
+ <p>When setting the single line mode the <a class="link" href="ClutterText.html#ClutterText--activatable" title="The “activatable” property"><span class="type">“activatable”</span></a>
2221
+ property is also set as a side effect. Instead of entering a new
2222
+ line character, the text actor will emit the <a class="link" href="ClutterText.html#ClutterText-activate" title="The “activate” signal"><span class="type">“activate”</span></a>
2223
+ signal.</p>
2224
+ <div class="refsect3">
2225
+ <a name="id-1.5.3.4.10.42.7"></a><h4>Parameters</h4>
2226
+ <div class="informaltable"><table width="100%" border="0">
2227
+ <colgroup>
2228
+ <col width="150px" class="parameters_name">
2229
+ <col class="parameters_description">
2230
+ <col width="200px" class="parameters_annotations">
2231
+ </colgroup>
2232
+ <tbody>
2233
+ <tr>
2234
+ <td class="parameter_name"><p>self</p></td>
2235
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2236
+ <td class="parameter_annotations"> </td>
2237
+ </tr>
2238
+ <tr>
2239
+ <td class="parameter_name"><p>single_line</p></td>
2240
+ <td class="parameter_description"><p>whether to enable single line mode</p></td>
2241
+ <td class="parameter_annotations"> </td>
2242
+ </tr>
2243
+ </tbody>
2244
+ </table></div>
2245
+ </div>
2246
+ <p class="since">Since 1.0</p>
2247
+ </div>
2248
+ <hr>
2249
+ <div class="refsect2">
2250
+ <a name="clutter-text-get-single-line-mode"></a><h3>clutter_text_get_single_line_mode ()</h3>
2251
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2252
+ clutter_text_get_single_line_mode (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2253
+ <p>Retrieves whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor is in single line mode.</p>
2254
+ <div class="refsect3">
2255
+ <a name="id-1.5.3.4.10.43.5"></a><h4>Parameters</h4>
2256
+ <div class="informaltable"><table width="100%" border="0">
2257
+ <colgroup>
2258
+ <col width="150px" class="parameters_name">
2259
+ <col class="parameters_description">
2260
+ <col width="200px" class="parameters_annotations">
2261
+ </colgroup>
2262
+ <tbody><tr>
2263
+ <td class="parameter_name"><p>self</p></td>
2264
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2265
+ <td class="parameter_annotations"> </td>
2266
+ </tr></tbody>
2267
+ </table></div>
2268
+ </div>
2269
+ <div class="refsect3">
2270
+ <a name="id-1.5.3.4.10.43.6"></a><h4>Returns</h4>
2271
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor is in single line mode</p>
2272
+ <p></p>
2273
+ </div>
2274
+ <p class="since">Since 1.0</p>
2275
+ </div>
2276
+ <hr>
2277
+ <div class="refsect2">
2278
+ <a name="clutter-text-set-use-markup"></a><h3>clutter_text_set_use_markup ()</h3>
2279
+ <pre class="programlisting"><span class="returnvalue">void</span>
2280
+ clutter_text_set_use_markup (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2281
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
2282
+ <p>Sets whether the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor contains markup
2283
+ in &lt;link linkend="PangoMarkupFormat"&gt;Pango's text markup language&lt;/link&gt;.</p>
2284
+ <p>Setting <a class="link" href="ClutterText.html#ClutterText--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a> on an editable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> will
2285
+ not have any effect except hiding the markup.</p>
2286
+ <p>See also <a class="link" href="ClutterText.html#ClutterText--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a>.</p>
2287
+ <div class="refsect3">
2288
+ <a name="id-1.5.3.4.10.44.7"></a><h4>Parameters</h4>
2289
+ <div class="informaltable"><table width="100%" border="0">
2290
+ <colgroup>
2291
+ <col width="150px" class="parameters_name">
2292
+ <col class="parameters_description">
2293
+ <col width="200px" class="parameters_annotations">
2294
+ </colgroup>
2295
+ <tbody>
2296
+ <tr>
2297
+ <td class="parameter_name"><p>self</p></td>
2298
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2299
+ <td class="parameter_annotations"> </td>
2300
+ </tr>
2301
+ <tr>
2302
+ <td class="parameter_name"><p>setting</p></td>
2303
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the text should be parsed for markup.</p></td>
2304
+ <td class="parameter_annotations"> </td>
2305
+ </tr>
2306
+ </tbody>
2307
+ </table></div>
2308
+ </div>
2309
+ <p class="since">Since 1.0</p>
2310
+ </div>
2311
+ <hr>
2312
+ <div class="refsect2">
2313
+ <a name="clutter-text-get-use-markup"></a><h3>clutter_text_get_use_markup ()</h3>
2314
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2315
+ clutter_text_get_use_markup (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2316
+ <p>Retrieves whether the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be
2317
+ parsed for the Pango text markup.</p>
2318
+ <div class="refsect3">
2319
+ <a name="id-1.5.3.4.10.45.5"></a><h4>Parameters</h4>
2320
+ <div class="informaltable"><table width="100%" border="0">
2321
+ <colgroup>
2322
+ <col width="150px" class="parameters_name">
2323
+ <col class="parameters_description">
2324
+ <col width="200px" class="parameters_annotations">
2325
+ </colgroup>
2326
+ <tbody><tr>
2327
+ <td class="parameter_name"><p>self</p></td>
2328
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2329
+ <td class="parameter_annotations"> </td>
2330
+ </tr></tbody>
2331
+ </table></div>
2332
+ </div>
2333
+ <div class="refsect3">
2334
+ <a name="id-1.5.3.4.10.45.6"></a><h4>Returns</h4>
2335
+ <p> <code class="literal">TRUE</code> if the contents will be parsed for markup</p>
2336
+ <p></p>
2337
+ </div>
2338
+ <p class="since">Since 1.0</p>
2339
+ </div>
2340
+ <hr>
2341
+ <div class="refsect2">
2342
+ <a name="clutter-text-set-editable"></a><h3>clutter_text_set_editable ()</h3>
2343
+ <pre class="programlisting"><span class="returnvalue">void</span>
2344
+ clutter_text_set_editable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2345
+ <em class="parameter"><code><span class="type">gboolean</span> editable</code></em>);</pre>
2346
+ <p>Sets whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be editable.</p>
2347
+ <p>An editable <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> with key focus set using
2348
+ <a class="link" href="ClutterActor.html#clutter-actor-grab-key-focus" title="clutter_actor_grab_key_focus ()"><code class="function">clutter_actor_grab_key_focus()</code></a> or <a class="link" href="ClutterStage.html#clutter-stage-set-key-focus" title="clutter_stage_set_key_focus ()"><code class="function">clutter_stage_set_key_focus()</code></a>
2349
+ will receive key events and will update its contents accordingly.</p>
2350
+ <div class="refsect3">
2351
+ <a name="id-1.5.3.4.10.46.6"></a><h4>Parameters</h4>
2352
+ <div class="informaltable"><table width="100%" border="0">
2353
+ <colgroup>
2354
+ <col width="150px" class="parameters_name">
2355
+ <col class="parameters_description">
2356
+ <col width="200px" class="parameters_annotations">
2357
+ </colgroup>
2358
+ <tbody>
2359
+ <tr>
2360
+ <td class="parameter_name"><p>self</p></td>
2361
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2362
+ <td class="parameter_annotations"> </td>
2363
+ </tr>
2364
+ <tr>
2365
+ <td class="parameter_name"><p>editable</p></td>
2366
+ <td class="parameter_description"><p>whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> should be editable</p></td>
2367
+ <td class="parameter_annotations"> </td>
2368
+ </tr>
2369
+ </tbody>
2370
+ </table></div>
2371
+ </div>
2372
+ <p class="since">Since 1.0</p>
2373
+ </div>
2374
+ <hr>
2375
+ <div class="refsect2">
2376
+ <a name="clutter-text-get-editable"></a><h3>clutter_text_get_editable ()</h3>
2377
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2378
+ clutter_text_get_editable (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2379
+ <p>Retrieves whether a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is editable or not.</p>
2380
+ <div class="refsect3">
2381
+ <a name="id-1.5.3.4.10.47.5"></a><h4>Parameters</h4>
2382
+ <div class="informaltable"><table width="100%" border="0">
2383
+ <colgroup>
2384
+ <col width="150px" class="parameters_name">
2385
+ <col class="parameters_description">
2386
+ <col width="200px" class="parameters_annotations">
2387
+ </colgroup>
2388
+ <tbody><tr>
2389
+ <td class="parameter_name"><p>self</p></td>
2390
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2391
+ <td class="parameter_annotations"> </td>
2392
+ </tr></tbody>
2393
+ </table></div>
2394
+ </div>
2395
+ <div class="refsect3">
2396
+ <a name="id-1.5.3.4.10.47.6"></a><h4>Returns</h4>
2397
+ <p> <code class="literal">TRUE</code> if the actor is editable</p>
2398
+ <p></p>
2399
+ </div>
2400
+ <p class="since">Since 1.0</p>
2401
+ </div>
2402
+ <hr>
2403
+ <div class="refsect2">
2404
+ <a name="clutter-text-insert-text"></a><h3>clutter_text_insert_text ()</h3>
2405
+ <pre class="programlisting"><span class="returnvalue">void</span>
2406
+ clutter_text_insert_text (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2407
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
2408
+ <em class="parameter"><code><span class="type">gssize</span> position</code></em>);</pre>
2409
+ <p>Inserts <em class="parameter"><code>text</code></em>
2410
+ into a <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> at the given position.</p>
2411
+ <p>If <em class="parameter"><code>position</code></em>
2412
+ is a negative number, the text will be appended
2413
+ at the end of the current contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>.</p>
2414
+ <p>The position is expressed in characters, not in bytes.</p>
2415
+ <div class="refsect3">
2416
+ <a name="id-1.5.3.4.10.48.7"></a><h4>Parameters</h4>
2417
+ <div class="informaltable"><table width="100%" border="0">
2418
+ <colgroup>
2419
+ <col width="150px" class="parameters_name">
2420
+ <col class="parameters_description">
2421
+ <col width="200px" class="parameters_annotations">
2422
+ </colgroup>
2423
+ <tbody>
2424
+ <tr>
2425
+ <td class="parameter_name"><p>self</p></td>
2426
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2427
+ <td class="parameter_annotations"> </td>
2428
+ </tr>
2429
+ <tr>
2430
+ <td class="parameter_name"><p>text</p></td>
2431
+ <td class="parameter_description"><p>the text to be inserted</p></td>
2432
+ <td class="parameter_annotations"> </td>
2433
+ </tr>
2434
+ <tr>
2435
+ <td class="parameter_name"><p>position</p></td>
2436
+ <td class="parameter_description"><p>the position of the insertion, or -1</p></td>
2437
+ <td class="parameter_annotations"> </td>
2438
+ </tr>
2439
+ </tbody>
2440
+ </table></div>
2441
+ </div>
2442
+ <p class="since">Since 1.0</p>
2443
+ </div>
2444
+ <hr>
2445
+ <div class="refsect2">
2446
+ <a name="clutter-text-insert-unichar"></a><h3>clutter_text_insert_unichar ()</h3>
2447
+ <pre class="programlisting"><span class="returnvalue">void</span>
2448
+ clutter_text_insert_unichar (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2449
+ <em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
2450
+ <p>Inserts <em class="parameter"><code>wc</code></em>
2451
+ at the current cursor position of a
2452
+ <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2453
+ <div class="refsect3">
2454
+ <a name="id-1.5.3.4.10.49.5"></a><h4>Parameters</h4>
2455
+ <div class="informaltable"><table width="100%" border="0">
2456
+ <colgroup>
2457
+ <col width="150px" class="parameters_name">
2458
+ <col class="parameters_description">
2459
+ <col width="200px" class="parameters_annotations">
2460
+ </colgroup>
2461
+ <tbody>
2462
+ <tr>
2463
+ <td class="parameter_name"><p>self</p></td>
2464
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2465
+ <td class="parameter_annotations"> </td>
2466
+ </tr>
2467
+ <tr>
2468
+ <td class="parameter_name"><p>wc</p></td>
2469
+ <td class="parameter_description"><p>a Unicode character</p></td>
2470
+ <td class="parameter_annotations"> </td>
2471
+ </tr>
2472
+ </tbody>
2473
+ </table></div>
2474
+ </div>
2475
+ <p class="since">Since 1.0</p>
2476
+ </div>
2477
+ <hr>
2478
+ <div class="refsect2">
2479
+ <a name="clutter-text-delete-chars"></a><h3>clutter_text_delete_chars ()</h3>
2480
+ <pre class="programlisting"><span class="returnvalue">void</span>
2481
+ clutter_text_delete_chars (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2482
+ <em class="parameter"><code><span class="type">guint</span> n_chars</code></em>);</pre>
2483
+ <p>Deletes <em class="parameter"><code>n_chars</code></em>
2484
+ inside a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor, starting from the
2485
+ current cursor position.</p>
2486
+ <p>Somewhat awkwardly, the cursor position is decremented by the same
2487
+ number of characters you've deleted.</p>
2488
+ <div class="refsect3">
2489
+ <a name="id-1.5.3.4.10.50.6"></a><h4>Parameters</h4>
2490
+ <div class="informaltable"><table width="100%" border="0">
2491
+ <colgroup>
2492
+ <col width="150px" class="parameters_name">
2493
+ <col class="parameters_description">
2494
+ <col width="200px" class="parameters_annotations">
2495
+ </colgroup>
2496
+ <tbody>
2497
+ <tr>
2498
+ <td class="parameter_name"><p>self</p></td>
2499
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2500
+ <td class="parameter_annotations"> </td>
2501
+ </tr>
2502
+ <tr>
2503
+ <td class="parameter_name"><p>n_chars</p></td>
2504
+ <td class="parameter_description"><p>the number of characters to delete</p></td>
2505
+ <td class="parameter_annotations"> </td>
2506
+ </tr>
2507
+ </tbody>
2508
+ </table></div>
2509
+ </div>
2510
+ <p class="since">Since 1.0</p>
2511
+ </div>
2512
+ <hr>
2513
+ <div class="refsect2">
2514
+ <a name="clutter-text-delete-text"></a><h3>clutter_text_delete_text ()</h3>
2515
+ <pre class="programlisting"><span class="returnvalue">void</span>
2516
+ clutter_text_delete_text (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2517
+ <em class="parameter"><code><span class="type">gssize</span> start_pos</code></em>,
2518
+ <em class="parameter"><code><span class="type">gssize</span> end_pos</code></em>);</pre>
2519
+ <p>Deletes the text inside a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor between <em class="parameter"><code>start_pos</code></em>
2520
+
2521
+ and <em class="parameter"><code>end_pos</code></em>
2522
+ .</p>
2523
+ <p>The starting and ending positions are expressed in characters,
2524
+ not in bytes.</p>
2525
+ <div class="refsect3">
2526
+ <a name="id-1.5.3.4.10.51.6"></a><h4>Parameters</h4>
2527
+ <div class="informaltable"><table width="100%" border="0">
2528
+ <colgroup>
2529
+ <col width="150px" class="parameters_name">
2530
+ <col class="parameters_description">
2531
+ <col width="200px" class="parameters_annotations">
2532
+ </colgroup>
2533
+ <tbody>
2534
+ <tr>
2535
+ <td class="parameter_name"><p>self</p></td>
2536
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2537
+ <td class="parameter_annotations"> </td>
2538
+ </tr>
2539
+ <tr>
2540
+ <td class="parameter_name"><p>start_pos</p></td>
2541
+ <td class="parameter_description"><p>starting position</p></td>
2542
+ <td class="parameter_annotations"> </td>
2543
+ </tr>
2544
+ <tr>
2545
+ <td class="parameter_name"><p>end_pos</p></td>
2546
+ <td class="parameter_description"><p>ending position</p></td>
2547
+ <td class="parameter_annotations"> </td>
2548
+ </tr>
2549
+ </tbody>
2550
+ </table></div>
2551
+ </div>
2552
+ <p class="since">Since 1.0</p>
2553
+ </div>
2554
+ <hr>
2555
+ <div class="refsect2">
2556
+ <a name="clutter-text-delete-selection"></a><h3>clutter_text_delete_selection ()</h3>
2557
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2558
+ clutter_text_delete_selection (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2559
+ <p>Deletes the currently selected text</p>
2560
+ <p>This function is only useful in subclasses of <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p>
2561
+ <div class="refsect3">
2562
+ <a name="id-1.5.3.4.10.52.6"></a><h4>Parameters</h4>
2563
+ <div class="informaltable"><table width="100%" border="0">
2564
+ <colgroup>
2565
+ <col width="150px" class="parameters_name">
2566
+ <col class="parameters_description">
2567
+ <col width="200px" class="parameters_annotations">
2568
+ </colgroup>
2569
+ <tbody><tr>
2570
+ <td class="parameter_name"><p>self</p></td>
2571
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2572
+ <td class="parameter_annotations"> </td>
2573
+ </tr></tbody>
2574
+ </table></div>
2575
+ </div>
2576
+ <div class="refsect3">
2577
+ <a name="id-1.5.3.4.10.52.7"></a><h4>Returns</h4>
2578
+ <p> <code class="literal">TRUE</code> if text was deleted or if the text actor
2579
+ is empty, and <code class="literal">FALSE</code> otherwise</p>
2580
+ <p></p>
2581
+ </div>
2582
+ <p class="since">Since 1.0</p>
2583
+ </div>
2584
+ <hr>
2585
+ <div class="refsect2">
2586
+ <a name="clutter-text-get-chars"></a><h3>clutter_text_get_chars ()</h3>
2587
+ <pre class="programlisting"><span class="returnvalue">gchar</span> *
2588
+ clutter_text_get_chars (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2589
+ <em class="parameter"><code><span class="type">gssize</span> start_pos</code></em>,
2590
+ <em class="parameter"><code><span class="type">gssize</span> end_pos</code></em>);</pre>
2591
+ <p>Retrieves the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor between
2592
+ <em class="parameter"><code>start_pos</code></em>
2593
+ and <em class="parameter"><code>end_pos</code></em>
2594
+ , but not including <em class="parameter"><code>end_pos</code></em>
2595
+ .</p>
2596
+ <p>The positions are specified in characters, not in bytes.</p>
2597
+ <div class="refsect3">
2598
+ <a name="id-1.5.3.4.10.53.6"></a><h4>Parameters</h4>
2599
+ <div class="informaltable"><table width="100%" border="0">
2600
+ <colgroup>
2601
+ <col width="150px" class="parameters_name">
2602
+ <col class="parameters_description">
2603
+ <col width="200px" class="parameters_annotations">
2604
+ </colgroup>
2605
+ <tbody>
2606
+ <tr>
2607
+ <td class="parameter_name"><p>self</p></td>
2608
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2609
+ <td class="parameter_annotations"> </td>
2610
+ </tr>
2611
+ <tr>
2612
+ <td class="parameter_name"><p>start_pos</p></td>
2613
+ <td class="parameter_description"><p>start of text, in characters</p></td>
2614
+ <td class="parameter_annotations"> </td>
2615
+ </tr>
2616
+ <tr>
2617
+ <td class="parameter_name"><p>end_pos</p></td>
2618
+ <td class="parameter_description"><p>end of text, in characters</p></td>
2619
+ <td class="parameter_annotations"> </td>
2620
+ </tr>
2621
+ </tbody>
2622
+ </table></div>
2623
+ </div>
2624
+ <div class="refsect3">
2625
+ <a name="id-1.5.3.4.10.53.7"></a><h4>Returns</h4>
2626
+ <p> a newly allocated string with the contents of
2627
+ the text actor between the specified positions. Use <code class="function">g_free()</code>
2628
+ to free the resources when done</p>
2629
+ <p></p>
2630
+ </div>
2631
+ <p class="since">Since 1.0</p>
2632
+ </div>
2633
+ <hr>
2634
+ <div class="refsect2">
2635
+ <a name="clutter-text-set-cursor-color"></a><h3>clutter_text_set_cursor_color ()</h3>
2636
+ <pre class="programlisting"><span class="returnvalue">void</span>
2637
+ clutter_text_set_cursor_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2638
+ <em class="parameter"><code>const <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2639
+ <p>Sets the color of the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2640
+ <p>If <em class="parameter"><code>color</code></em>
2641
+ is <code class="literal">NULL</code>, the cursor color will be the same as the
2642
+ text color.</p>
2643
+ <div class="refsect3">
2644
+ <a name="id-1.5.3.4.10.54.6"></a><h4>Parameters</h4>
2645
+ <div class="informaltable"><table width="100%" border="0">
2646
+ <colgroup>
2647
+ <col width="150px" class="parameters_name">
2648
+ <col class="parameters_description">
2649
+ <col width="200px" class="parameters_annotations">
2650
+ </colgroup>
2651
+ <tbody>
2652
+ <tr>
2653
+ <td class="parameter_name"><p>self</p></td>
2654
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2655
+ <td class="parameter_annotations"> </td>
2656
+ </tr>
2657
+ <tr>
2658
+ <td class="parameter_name"><p>color</p></td>
2659
+ <td class="parameter_description"><p> the color of the cursor, or <code class="literal">NULL</code> to unset it. </p></td>
2660
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2661
+ </tr>
2662
+ </tbody>
2663
+ </table></div>
2664
+ </div>
2665
+ <p class="since">Since 1.0</p>
2666
+ </div>
2667
+ <hr>
2668
+ <div class="refsect2">
2669
+ <a name="clutter-text-get-cursor-color"></a><h3>clutter_text_get_cursor_color ()</h3>
2670
+ <pre class="programlisting"><span class="returnvalue">void</span>
2671
+ clutter_text_get_cursor_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2672
+ <em class="parameter"><code><a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2673
+ <p>Retrieves the color of the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2674
+ <div class="refsect3">
2675
+ <a name="id-1.5.3.4.10.55.5"></a><h4>Parameters</h4>
2676
+ <div class="informaltable"><table width="100%" border="0">
2677
+ <colgroup>
2678
+ <col width="150px" class="parameters_name">
2679
+ <col class="parameters_description">
2680
+ <col width="200px" class="parameters_annotations">
2681
+ </colgroup>
2682
+ <tbody>
2683
+ <tr>
2684
+ <td class="parameter_name"><p>self</p></td>
2685
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2686
+ <td class="parameter_annotations"> </td>
2687
+ </tr>
2688
+ <tr>
2689
+ <td class="parameter_name"><p>color</p></td>
2690
+ <td class="parameter_description"><p> return location for a <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a>. </p></td>
2691
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
2692
+ </tr>
2693
+ </tbody>
2694
+ </table></div>
2695
+ </div>
2696
+ <p class="since">Since 1.0</p>
2697
+ </div>
2698
+ <hr>
2699
+ <div class="refsect2">
2700
+ <a name="clutter-text-set-selection-color"></a><h3>clutter_text_set_selection_color ()</h3>
2701
+ <pre class="programlisting"><span class="returnvalue">void</span>
2702
+ clutter_text_set_selection_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2703
+ <em class="parameter"><code>const <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2704
+ <p>Sets the color of the selection of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2705
+ <p>If <em class="parameter"><code>color</code></em>
2706
+ is <code class="literal">NULL</code>, the selection color will be the same as the
2707
+ cursor color, or if no cursor color is set either then it will be
2708
+ the same as the text color.</p>
2709
+ <div class="refsect3">
2710
+ <a name="id-1.5.3.4.10.56.6"></a><h4>Parameters</h4>
2711
+ <div class="informaltable"><table width="100%" border="0">
2712
+ <colgroup>
2713
+ <col width="150px" class="parameters_name">
2714
+ <col class="parameters_description">
2715
+ <col width="200px" class="parameters_annotations">
2716
+ </colgroup>
2717
+ <tbody>
2718
+ <tr>
2719
+ <td class="parameter_name"><p>self</p></td>
2720
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2721
+ <td class="parameter_annotations"> </td>
2722
+ </tr>
2723
+ <tr>
2724
+ <td class="parameter_name"><p>color</p></td>
2725
+ <td class="parameter_description"><p> the color of the selection, or <code class="literal">NULL</code> to unset it. </p></td>
2726
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2727
+ </tr>
2728
+ </tbody>
2729
+ </table></div>
2730
+ </div>
2731
+ <p class="since">Since 1.0</p>
2732
+ </div>
2733
+ <hr>
2734
+ <div class="refsect2">
2735
+ <a name="clutter-text-get-selection-color"></a><h3>clutter_text_get_selection_color ()</h3>
2736
+ <pre class="programlisting"><span class="returnvalue">void</span>
2737
+ clutter_text_get_selection_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2738
+ <em class="parameter"><code><a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2739
+ <p>Retrieves the color of the selection of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2740
+ <div class="refsect3">
2741
+ <a name="id-1.5.3.4.10.57.5"></a><h4>Parameters</h4>
2742
+ <div class="informaltable"><table width="100%" border="0">
2743
+ <colgroup>
2744
+ <col width="150px" class="parameters_name">
2745
+ <col class="parameters_description">
2746
+ <col width="200px" class="parameters_annotations">
2747
+ </colgroup>
2748
+ <tbody>
2749
+ <tr>
2750
+ <td class="parameter_name"><p>self</p></td>
2751
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2752
+ <td class="parameter_annotations"> </td>
2753
+ </tr>
2754
+ <tr>
2755
+ <td class="parameter_name"><p>color</p></td>
2756
+ <td class="parameter_description"><p> return location for a <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a>. </p></td>
2757
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
2758
+ </tr>
2759
+ </tbody>
2760
+ </table></div>
2761
+ </div>
2762
+ <p class="since">Since 1.0</p>
2763
+ </div>
2764
+ <hr>
2765
+ <div class="refsect2">
2766
+ <a name="clutter-text-set-selected-text-color"></a><h3>clutter_text_set_selected_text_color ()</h3>
2767
+ <pre class="programlisting"><span class="returnvalue">void</span>
2768
+ clutter_text_set_selected_text_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2769
+ <em class="parameter"><code>const <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2770
+ <p>Sets the selected text color of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2771
+ <p>If <em class="parameter"><code>color</code></em>
2772
+ is <code class="literal">NULL</code>, the selected text color will be the same as the
2773
+ selection color, which then falls back to cursor, and then text color.</p>
2774
+ <div class="refsect3">
2775
+ <a name="id-1.5.3.4.10.58.6"></a><h4>Parameters</h4>
2776
+ <div class="informaltable"><table width="100%" border="0">
2777
+ <colgroup>
2778
+ <col width="150px" class="parameters_name">
2779
+ <col class="parameters_description">
2780
+ <col width="200px" class="parameters_annotations">
2781
+ </colgroup>
2782
+ <tbody>
2783
+ <tr>
2784
+ <td class="parameter_name"><p>self</p></td>
2785
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2786
+ <td class="parameter_annotations"> </td>
2787
+ </tr>
2788
+ <tr>
2789
+ <td class="parameter_name"><p>color</p></td>
2790
+ <td class="parameter_description"><p> the selected text color, or <code class="literal">NULL</code> to unset it. </p></td>
2791
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2792
+ </tr>
2793
+ </tbody>
2794
+ </table></div>
2795
+ </div>
2796
+ <p class="since">Since 1.8</p>
2797
+ </div>
2798
+ <hr>
2799
+ <div class="refsect2">
2800
+ <a name="clutter-text-get-selected-text-color"></a><h3>clutter_text_get_selected_text_color ()</h3>
2801
+ <pre class="programlisting"><span class="returnvalue">void</span>
2802
+ clutter_text_get_selected_text_color (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2803
+ <em class="parameter"><code><a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *color</code></em>);</pre>
2804
+ <p>Retrieves the color of selected text of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2805
+ <div class="refsect3">
2806
+ <a name="id-1.5.3.4.10.59.5"></a><h4>Parameters</h4>
2807
+ <div class="informaltable"><table width="100%" border="0">
2808
+ <colgroup>
2809
+ <col width="150px" class="parameters_name">
2810
+ <col class="parameters_description">
2811
+ <col width="200px" class="parameters_annotations">
2812
+ </colgroup>
2813
+ <tbody>
2814
+ <tr>
2815
+ <td class="parameter_name"><p>self</p></td>
2816
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2817
+ <td class="parameter_annotations"> </td>
2818
+ </tr>
2819
+ <tr>
2820
+ <td class="parameter_name"><p>color</p></td>
2821
+ <td class="parameter_description"><p> return location for a <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a>. </p></td>
2822
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
2823
+ </tr>
2824
+ </tbody>
2825
+ </table></div>
2826
+ </div>
2827
+ <p class="since">Since 1.8</p>
2828
+ </div>
2829
+ <hr>
2830
+ <div class="refsect2">
2831
+ <a name="clutter-text-set-cursor-position"></a><h3>clutter_text_set_cursor_position ()</h3>
2832
+ <pre class="programlisting"><span class="returnvalue">void</span>
2833
+ clutter_text_set_cursor_position (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2834
+ <em class="parameter"><code><span class="type">gint</span> position</code></em>);</pre>
2835
+ <p>Sets the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor at <em class="parameter"><code>position</code></em>
2836
+ .</p>
2837
+ <p>The position is expressed in characters, not in bytes.</p>
2838
+ <div class="refsect3">
2839
+ <a name="id-1.5.3.4.10.60.6"></a><h4>Parameters</h4>
2840
+ <div class="informaltable"><table width="100%" border="0">
2841
+ <colgroup>
2842
+ <col width="150px" class="parameters_name">
2843
+ <col class="parameters_description">
2844
+ <col width="200px" class="parameters_annotations">
2845
+ </colgroup>
2846
+ <tbody>
2847
+ <tr>
2848
+ <td class="parameter_name"><p>self</p></td>
2849
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2850
+ <td class="parameter_annotations"> </td>
2851
+ </tr>
2852
+ <tr>
2853
+ <td class="parameter_name"><p>position</p></td>
2854
+ <td class="parameter_description"><p>the new cursor position, in characters</p></td>
2855
+ <td class="parameter_annotations"> </td>
2856
+ </tr>
2857
+ </tbody>
2858
+ </table></div>
2859
+ </div>
2860
+ <p class="since">Since 1.0</p>
2861
+ </div>
2862
+ <hr>
2863
+ <div class="refsect2">
2864
+ <a name="clutter-text-get-cursor-position"></a><h3>clutter_text_get_cursor_position ()</h3>
2865
+ <pre class="programlisting"><span class="returnvalue">gint</span>
2866
+ clutter_text_get_cursor_position (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2867
+ <p>Retrieves the cursor position.</p>
2868
+ <div class="refsect3">
2869
+ <a name="id-1.5.3.4.10.61.5"></a><h4>Parameters</h4>
2870
+ <div class="informaltable"><table width="100%" border="0">
2871
+ <colgroup>
2872
+ <col width="150px" class="parameters_name">
2873
+ <col class="parameters_description">
2874
+ <col width="200px" class="parameters_annotations">
2875
+ </colgroup>
2876
+ <tbody><tr>
2877
+ <td class="parameter_name"><p>self</p></td>
2878
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2879
+ <td class="parameter_annotations"> </td>
2880
+ </tr></tbody>
2881
+ </table></div>
2882
+ </div>
2883
+ <div class="refsect3">
2884
+ <a name="id-1.5.3.4.10.61.6"></a><h4>Returns</h4>
2885
+ <p> the cursor position, in characters</p>
2886
+ <p></p>
2887
+ </div>
2888
+ <p class="since">Since 1.0</p>
2889
+ </div>
2890
+ <hr>
2891
+ <div class="refsect2">
2892
+ <a name="clutter-text-set-cursor-visible"></a><h3>clutter_text_set_cursor_visible ()</h3>
2893
+ <pre class="programlisting"><span class="returnvalue">void</span>
2894
+ clutter_text_set_cursor_visible (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2895
+ <em class="parameter"><code><span class="type">gboolean</span> cursor_visible</code></em>);</pre>
2896
+ <p>Sets whether the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be
2897
+ visible or not.</p>
2898
+ <p>The color of the cursor will be the same as the text color
2899
+ unless <a class="link" href="ClutterText.html#clutter-text-set-cursor-color" title="clutter_text_set_cursor_color ()"><code class="function">clutter_text_set_cursor_color()</code></a> has been called.</p>
2900
+ <p>The size of the cursor can be set using <a class="link" href="ClutterText.html#clutter-text-set-cursor-size" title="clutter_text_set_cursor_size ()"><code class="function">clutter_text_set_cursor_size()</code></a>.</p>
2901
+ <p>The position of the cursor can be changed programmatically using
2902
+ <a class="link" href="ClutterText.html#clutter-text-set-cursor-position" title="clutter_text_set_cursor_position ()"><code class="function">clutter_text_set_cursor_position()</code></a>.</p>
2903
+ <div class="refsect3">
2904
+ <a name="id-1.5.3.4.10.62.8"></a><h4>Parameters</h4>
2905
+ <div class="informaltable"><table width="100%" border="0">
2906
+ <colgroup>
2907
+ <col width="150px" class="parameters_name">
2908
+ <col class="parameters_description">
2909
+ <col width="200px" class="parameters_annotations">
2910
+ </colgroup>
2911
+ <tbody>
2912
+ <tr>
2913
+ <td class="parameter_name"><p>self</p></td>
2914
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2915
+ <td class="parameter_annotations"> </td>
2916
+ </tr>
2917
+ <tr>
2918
+ <td class="parameter_name"><p>cursor_visible</p></td>
2919
+ <td class="parameter_description"><p>whether the cursor should be visible</p></td>
2920
+ <td class="parameter_annotations"> </td>
2921
+ </tr>
2922
+ </tbody>
2923
+ </table></div>
2924
+ </div>
2925
+ <p class="since">Since 1.0</p>
2926
+ </div>
2927
+ <hr>
2928
+ <div class="refsect2">
2929
+ <a name="clutter-text-get-cursor-visible"></a><h3>clutter_text_get_cursor_visible ()</h3>
2930
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
2931
+ clutter_text_get_cursor_visible (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2932
+ <p>Retrieves whether the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor is visible.</p>
2933
+ <div class="refsect3">
2934
+ <a name="id-1.5.3.4.10.63.5"></a><h4>Parameters</h4>
2935
+ <div class="informaltable"><table width="100%" border="0">
2936
+ <colgroup>
2937
+ <col width="150px" class="parameters_name">
2938
+ <col class="parameters_description">
2939
+ <col width="200px" class="parameters_annotations">
2940
+ </colgroup>
2941
+ <tbody><tr>
2942
+ <td class="parameter_name"><p>self</p></td>
2943
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2944
+ <td class="parameter_annotations"> </td>
2945
+ </tr></tbody>
2946
+ </table></div>
2947
+ </div>
2948
+ <div class="refsect3">
2949
+ <a name="id-1.5.3.4.10.63.6"></a><h4>Returns</h4>
2950
+ <p> <code class="literal">TRUE</code> if the cursor is visible</p>
2951
+ <p></p>
2952
+ </div>
2953
+ <p class="since">Since 1.0</p>
2954
+ </div>
2955
+ <hr>
2956
+ <div class="refsect2">
2957
+ <a name="clutter-text-set-cursor-size"></a><h3>clutter_text_set_cursor_size ()</h3>
2958
+ <pre class="programlisting"><span class="returnvalue">void</span>
2959
+ clutter_text_set_cursor_size (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
2960
+ <em class="parameter"><code><span class="type">gint</span> size</code></em>);</pre>
2961
+ <p>Sets the size of the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>. The cursor
2962
+ will only be visible if the <a class="link" href="ClutterText.html#ClutterText--cursor-visible" title="The “cursor-visible” property"><span class="type">“cursor-visible”</span></a> property
2963
+ is set to <code class="literal">TRUE</code>.</p>
2964
+ <div class="refsect3">
2965
+ <a name="id-1.5.3.4.10.64.5"></a><h4>Parameters</h4>
2966
+ <div class="informaltable"><table width="100%" border="0">
2967
+ <colgroup>
2968
+ <col width="150px" class="parameters_name">
2969
+ <col class="parameters_description">
2970
+ <col width="200px" class="parameters_annotations">
2971
+ </colgroup>
2972
+ <tbody>
2973
+ <tr>
2974
+ <td class="parameter_name"><p>self</p></td>
2975
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
2976
+ <td class="parameter_annotations"> </td>
2977
+ </tr>
2978
+ <tr>
2979
+ <td class="parameter_name"><p>size</p></td>
2980
+ <td class="parameter_description"><p>the size of the cursor, in pixels, or -1 to use the
2981
+ default value</p></td>
2982
+ <td class="parameter_annotations"> </td>
2983
+ </tr>
2984
+ </tbody>
2985
+ </table></div>
2986
+ </div>
2987
+ <p class="since">Since 1.0</p>
2988
+ </div>
2989
+ <hr>
2990
+ <div class="refsect2">
2991
+ <a name="clutter-text-get-cursor-size"></a><h3>clutter_text_get_cursor_size ()</h3>
2992
+ <pre class="programlisting"><span class="returnvalue">guint</span>
2993
+ clutter_text_get_cursor_size (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
2994
+ <p>Retrieves the size of the cursor of a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
2995
+ <div class="refsect3">
2996
+ <a name="id-1.5.3.4.10.65.5"></a><h4>Parameters</h4>
2997
+ <div class="informaltable"><table width="100%" border="0">
2998
+ <colgroup>
2999
+ <col width="150px" class="parameters_name">
3000
+ <col class="parameters_description">
3001
+ <col width="200px" class="parameters_annotations">
3002
+ </colgroup>
3003
+ <tbody><tr>
3004
+ <td class="parameter_name"><p>self</p></td>
3005
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3006
+ <td class="parameter_annotations"> </td>
3007
+ </tr></tbody>
3008
+ </table></div>
3009
+ </div>
3010
+ <div class="refsect3">
3011
+ <a name="id-1.5.3.4.10.65.6"></a><h4>Returns</h4>
3012
+ <p> the size of the cursor, in pixels</p>
3013
+ <p></p>
3014
+ </div>
3015
+ <p class="since">Since 1.0</p>
3016
+ </div>
3017
+ <hr>
3018
+ <div class="refsect2">
3019
+ <a name="clutter-text-get-cursor-rect"></a><h3>clutter_text_get_cursor_rect ()</h3>
3020
+ <pre class="programlisting"><span class="returnvalue">void</span>
3021
+ clutter_text_get_cursor_rect (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
3022
+ <em class="parameter"><code><a class="link" href="clutter-Base-geometric-types.html#ClutterRect" title="struct ClutterRect"><span class="type">ClutterRect</span></a> *rect</code></em>);</pre>
3023
+ <p>Retrieves the rectangle that contains the cursor.</p>
3024
+ <p>The coordinates of the rectangle's origin are in actor-relative
3025
+ coordinates.</p>
3026
+ <div class="refsect3">
3027
+ <a name="id-1.5.3.4.10.66.6"></a><h4>Parameters</h4>
3028
+ <div class="informaltable"><table width="100%" border="0">
3029
+ <colgroup>
3030
+ <col width="150px" class="parameters_name">
3031
+ <col class="parameters_description">
3032
+ <col width="200px" class="parameters_annotations">
3033
+ </colgroup>
3034
+ <tbody>
3035
+ <tr>
3036
+ <td class="parameter_name"><p>self</p></td>
3037
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3038
+ <td class="parameter_annotations"> </td>
3039
+ </tr>
3040
+ <tr>
3041
+ <td class="parameter_name"><p>rect</p></td>
3042
+ <td class="parameter_description"><p> return location of a <a class="link" href="clutter-Base-geometric-types.html#ClutterRect" title="struct ClutterRect"><span class="type">ClutterRect</span></a>. </p></td>
3043
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
3044
+ </tr>
3045
+ </tbody>
3046
+ </table></div>
3047
+ </div>
3048
+ <p class="since">Since 1.16</p>
3049
+ </div>
3050
+ <hr>
3051
+ <div class="refsect2">
3052
+ <a name="clutter-text-activate"></a><h3>clutter_text_activate ()</h3>
3053
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
3054
+ clutter_text_activate (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>);</pre>
3055
+ <p>Emits the <a class="link" href="ClutterText.html#ClutterText-activate" title="The “activate” signal"><span class="type">“activate”</span></a> signal, if <em class="parameter"><code>self</code></em>
3056
+ has been set
3057
+ as activatable using <a class="link" href="ClutterText.html#clutter-text-set-activatable" title="clutter_text_set_activatable ()"><code class="function">clutter_text_set_activatable()</code></a>.</p>
3058
+ <p>This function can be used to emit the ::activate signal inside
3059
+ a <a class="link" href="ClutterActor.html#ClutterActor-captured-event" title="The “captured-event” signal"><span class="type">“captured-event”</span></a> or <a class="link" href="ClutterActor.html#ClutterActor-key-press-event" title="The “key-press-event” signal"><span class="type">“key-press-event”</span></a>
3060
+ signal handlers before the default signal handler for the
3061
+ <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> is invoked.</p>
3062
+ <div class="refsect3">
3063
+ <a name="id-1.5.3.4.10.67.6"></a><h4>Parameters</h4>
3064
+ <div class="informaltable"><table width="100%" border="0">
3065
+ <colgroup>
3066
+ <col width="150px" class="parameters_name">
3067
+ <col class="parameters_description">
3068
+ <col width="200px" class="parameters_annotations">
3069
+ </colgroup>
3070
+ <tbody><tr>
3071
+ <td class="parameter_name"><p>self</p></td>
3072
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3073
+ <td class="parameter_annotations"> </td>
3074
+ </tr></tbody>
3075
+ </table></div>
3076
+ </div>
3077
+ <div class="refsect3">
3078
+ <a name="id-1.5.3.4.10.67.7"></a><h4>Returns</h4>
3079
+ <p> <code class="literal">TRUE</code> if the ::activate signal has been emitted,
3080
+ and <code class="literal">FALSE</code> otherwise</p>
3081
+ <p></p>
3082
+ </div>
3083
+ <p class="since">Since 1.0</p>
3084
+ </div>
3085
+ <hr>
3086
+ <div class="refsect2">
3087
+ <a name="clutter-text-coords-to-position"></a><h3>clutter_text_coords_to_position ()</h3>
3088
+ <pre class="programlisting"><span class="returnvalue">gint</span>
3089
+ clutter_text_coords_to_position (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
3090
+ <em class="parameter"><code><span class="type">gfloat</span> x</code></em>,
3091
+ <em class="parameter"><code><span class="type">gfloat</span> y</code></em>);</pre>
3092
+ <p>Retrieves the position of the character at the given coordinates.</p>
3093
+ <p>Return: the position of the character</p>
3094
+ <div class="refsect3">
3095
+ <a name="id-1.5.3.4.10.68.6"></a><h4>Parameters</h4>
3096
+ <div class="informaltable"><table width="100%" border="0">
3097
+ <colgroup>
3098
+ <col width="150px" class="parameters_name">
3099
+ <col class="parameters_description">
3100
+ <col width="200px" class="parameters_annotations">
3101
+ </colgroup>
3102
+ <tbody>
3103
+ <tr>
3104
+ <td class="parameter_name"><p>self</p></td>
3105
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3106
+ <td class="parameter_annotations"> </td>
3107
+ </tr>
3108
+ <tr>
3109
+ <td class="parameter_name"><p>x</p></td>
3110
+ <td class="parameter_description"><p>the X coordinate, relative to the actor</p></td>
3111
+ <td class="parameter_annotations"> </td>
3112
+ </tr>
3113
+ <tr>
3114
+ <td class="parameter_name"><p>y</p></td>
3115
+ <td class="parameter_description"><p>the Y coordinate, relative to the actor</p></td>
3116
+ <td class="parameter_annotations"> </td>
3117
+ </tr>
3118
+ </tbody>
3119
+ </table></div>
3120
+ </div>
3121
+ <p class="since">Since 1.10</p>
3122
+ </div>
3123
+ <hr>
3124
+ <div class="refsect2">
3125
+ <a name="clutter-text-position-to-coords"></a><h3>clutter_text_position_to_coords ()</h3>
3126
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
3127
+ clutter_text_position_to_coords (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
3128
+ <em class="parameter"><code><span class="type">gint</span> position</code></em>,
3129
+ <em class="parameter"><code><span class="type">gfloat</span> *x</code></em>,
3130
+ <em class="parameter"><code><span class="type">gfloat</span> *y</code></em>,
3131
+ <em class="parameter"><code><span class="type">gfloat</span> *line_height</code></em>);</pre>
3132
+ <p>Retrieves the coordinates of the given <em class="parameter"><code>position</code></em>
3133
+ .</p>
3134
+ <div class="refsect3">
3135
+ <a name="id-1.5.3.4.10.69.5"></a><h4>Parameters</h4>
3136
+ <div class="informaltable"><table width="100%" border="0">
3137
+ <colgroup>
3138
+ <col width="150px" class="parameters_name">
3139
+ <col class="parameters_description">
3140
+ <col width="200px" class="parameters_annotations">
3141
+ </colgroup>
3142
+ <tbody>
3143
+ <tr>
3144
+ <td class="parameter_name"><p>self</p></td>
3145
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3146
+ <td class="parameter_annotations"> </td>
3147
+ </tr>
3148
+ <tr>
3149
+ <td class="parameter_name"><p>position</p></td>
3150
+ <td class="parameter_description"><p>position in characters</p></td>
3151
+ <td class="parameter_annotations"> </td>
3152
+ </tr>
3153
+ <tr>
3154
+ <td class="parameter_name"><p>x</p></td>
3155
+ <td class="parameter_description"><p> return location for the X coordinate, or <code class="literal">NULL</code>. </p></td>
3156
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
3157
+ </tr>
3158
+ <tr>
3159
+ <td class="parameter_name"><p>y</p></td>
3160
+ <td class="parameter_description"><p> return location for the Y coordinate, or <code class="literal">NULL</code>. </p></td>
3161
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
3162
+ </tr>
3163
+ <tr>
3164
+ <td class="parameter_name"><p>line_height</p></td>
3165
+ <td class="parameter_description"><p> return location for the line height, or <code class="literal">NULL</code>. </p></td>
3166
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
3167
+ </tr>
3168
+ </tbody>
3169
+ </table></div>
3170
+ </div>
3171
+ <div class="refsect3">
3172
+ <a name="id-1.5.3.4.10.69.6"></a><h4>Returns</h4>
3173
+ <p> <code class="literal">TRUE</code> if the conversion was successful</p>
3174
+ <p></p>
3175
+ </div>
3176
+ <p class="since">Since 1.0</p>
3177
+ </div>
3178
+ <hr>
3179
+ <div class="refsect2">
3180
+ <a name="clutter-text-set-preedit-string"></a><h3>clutter_text_set_preedit_string ()</h3>
3181
+ <pre class="programlisting"><span class="returnvalue">void</span>
3182
+ clutter_text_set_preedit_string (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
3183
+ <em class="parameter"><code>const <span class="type">gchar</span> *preedit_str</code></em>,
3184
+ <em class="parameter"><code><span class="type">PangoAttrList</span> *preedit_attrs</code></em>,
3185
+ <em class="parameter"><code><span class="type">guint</span> cursor_pos</code></em>);</pre>
3186
+ <p>Sets, or unsets, the pre-edit string. This function is useful
3187
+ for input methods to display a string (with eventual specific
3188
+ Pango attributes) before it is entered inside the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>
3189
+ buffer.</p>
3190
+ <p>The preedit string and attributes are ignored if the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>
3191
+ actor is not editable.</p>
3192
+ <p>This function should not be used by applications</p>
3193
+ <div class="refsect3">
3194
+ <a name="id-1.5.3.4.10.70.7"></a><h4>Parameters</h4>
3195
+ <div class="informaltable"><table width="100%" border="0">
3196
+ <colgroup>
3197
+ <col width="150px" class="parameters_name">
3198
+ <col class="parameters_description">
3199
+ <col width="200px" class="parameters_annotations">
3200
+ </colgroup>
3201
+ <tbody>
3202
+ <tr>
3203
+ <td class="parameter_name"><p>self</p></td>
3204
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3205
+ <td class="parameter_annotations"> </td>
3206
+ </tr>
3207
+ <tr>
3208
+ <td class="parameter_name"><p>preedit_str</p></td>
3209
+ <td class="parameter_description"><p> the pre-edit string, or <code class="literal">NULL</code> to unset it. </p></td>
3210
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
3211
+ </tr>
3212
+ <tr>
3213
+ <td class="parameter_name"><p>preedit_attrs</p></td>
3214
+ <td class="parameter_description"><p> the pre-edit string attributes. </p></td>
3215
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
3216
+ </tr>
3217
+ <tr>
3218
+ <td class="parameter_name"><p>cursor_pos</p></td>
3219
+ <td class="parameter_description"><p>the cursor position for the pre-edit string</p></td>
3220
+ <td class="parameter_annotations"> </td>
3221
+ </tr>
3222
+ </tbody>
3223
+ </table></div>
3224
+ </div>
3225
+ <p class="since">Since 1.2</p>
3226
+ </div>
3227
+ <hr>
3228
+ <div class="refsect2">
3229
+ <a name="clutter-text-get-layout-offsets"></a><h3>clutter_text_get_layout_offsets ()</h3>
3230
+ <pre class="programlisting"><span class="returnvalue">void</span>
3231
+ clutter_text_get_layout_offsets (<em class="parameter"><code><a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self</code></em>,
3232
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
3233
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>);</pre>
3234
+ <p>Obtains the coordinates where the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> will draw the <span class="type">PangoLayout</span>
3235
+ representing the text.</p>
3236
+ <div class="refsect3">
3237
+ <a name="id-1.5.3.4.10.71.5"></a><h4>Parameters</h4>
3238
+ <div class="informaltable"><table width="100%" border="0">
3239
+ <colgroup>
3240
+ <col width="150px" class="parameters_name">
3241
+ <col class="parameters_description">
3242
+ <col width="200px" class="parameters_annotations">
3243
+ </colgroup>
3244
+ <tbody>
3245
+ <tr>
3246
+ <td class="parameter_name"><p>self</p></td>
3247
+ <td class="parameter_description"><p>a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p></td>
3248
+ <td class="parameter_annotations"> </td>
3249
+ </tr>
3250
+ <tr>
3251
+ <td class="parameter_name"><p>x</p></td>
3252
+ <td class="parameter_description"><p> location to store X offset of layout, or <code class="literal">NULL</code>. </p></td>
3253
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
3254
+ </tr>
3255
+ <tr>
3256
+ <td class="parameter_name"><p>y</p></td>
3257
+ <td class="parameter_description"><p> location to store Y offset of layout, or <code class="literal">NULL</code>. </p></td>
3258
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
3259
+ </tr>
3260
+ </tbody>
3261
+ </table></div>
3262
+ </div>
3263
+ <p class="since">Since 1.8</p>
3264
+ </div>
3265
+ </div>
3266
+ <div class="refsect1">
3267
+ <a name="ClutterText.other_details"></a><h2>Types and Values</h2>
3268
+ <div class="refsect2">
3269
+ <a name="ClutterText-struct"></a><h3>struct ClutterText</h3>
3270
+ <pre class="programlisting">struct ClutterText;</pre>
3271
+ <p>The <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> struct contains only private data.</p>
3272
+ <p class="since">Since 1.0</p>
3273
+ </div>
3274
+ <hr>
3275
+ <div class="refsect2">
3276
+ <a name="ClutterTextClass"></a><h3>struct ClutterTextClass</h3>
3277
+ <pre class="programlisting">struct ClutterTextClass {
3278
+ /* signals, not vfuncs */
3279
+ void (* text_changed) (ClutterText *self);
3280
+ void (* activate) (ClutterText *self);
3281
+ void (* cursor_event) (ClutterText *self,
3282
+ const ClutterGeometry *geometry);
3283
+ void (* cursor_changed) (ClutterText *self);
3284
+ };
3285
+ </pre>
3286
+ <p>The <a class="link" href="ClutterText.html#ClutterTextClass" title="struct ClutterTextClass"><span class="type">ClutterTextClass</span></a> struct contains only private data.</p>
3287
+ <div class="refsect3">
3288
+ <a name="id-1.5.3.4.11.3.5"></a><h4>Members</h4>
3289
+ <div class="informaltable"><table width="100%" border="0">
3290
+ <colgroup>
3291
+ <col width="300px" class="struct_members_name">
3292
+ <col class="struct_members_description">
3293
+ <col width="200px" class="struct_members_annotations">
3294
+ </colgroup>
3295
+ <tbody>
3296
+ <tr>
3297
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextClass.text-changed"></a>text_changed</code></em> ()</p></td>
3298
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="ClutterText.html#ClutterText-text-changed" title="The “text-changed” signal"><span class="type">“text-changed”</span></a> signal</p></td>
3299
+ <td class="struct_member_annotations"> </td>
3300
+ </tr>
3301
+ <tr>
3302
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextClass.activate"></a>activate</code></em> ()</p></td>
3303
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="ClutterText.html#ClutterText-activate" title="The “activate” signal"><span class="type">“activate”</span></a> signal</p></td>
3304
+ <td class="struct_member_annotations"> </td>
3305
+ </tr>
3306
+ <tr>
3307
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextClass.cursor-event"></a>cursor_event</code></em> ()</p></td>
3308
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="ClutterText.html#ClutterText-cursor-event" title="The “cursor-event” signal"><span class="type">“cursor-event”</span></a> signal</p></td>
3309
+ <td class="struct_member_annotations"> </td>
3310
+ </tr>
3311
+ <tr>
3312
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextClass.cursor-changed"></a>cursor_changed</code></em> ()</p></td>
3313
+ <td class="struct_member_description"><p>class handler for the <a class="link" href="ClutterText.html#ClutterText-cursor-changed" title="The “cursor-changed” signal"><span class="type">“cursor-changed”</span></a> signal</p></td>
3314
+ <td class="struct_member_annotations"> </td>
3315
+ </tr>
3316
+ </tbody>
3317
+ </table></div>
3318
+ </div>
3319
+ <p class="since">Since 1.0</p>
3320
+ </div>
3321
+ </div>
3322
+ <div class="refsect1">
3323
+ <a name="ClutterText.property-details"></a><h2>Property Details</h2>
3324
+ <div class="refsect2">
3325
+ <a name="ClutterText--activatable"></a><h3>The <code class="literal">“activatable”</code> property</h3>
3326
+ <pre class="programlisting"> “activatable” <span class="type">gboolean</span></pre>
3327
+ <p>Toggles whether return invokes the activate signal or not.</p>
3328
+ <p>Flags: Read / Write</p>
3329
+ <p>Default value: TRUE</p>
3330
+ <p class="since">Since 1.0</p>
3331
+ </div>
3332
+ <hr>
3333
+ <div class="refsect2">
3334
+ <a name="ClutterText--attributes"></a><h3>The <code class="literal">“attributes”</code> property</h3>
3335
+ <pre class="programlisting"> “attributes” <span class="type">PangoAttrList</span> *</pre>
3336
+ <p>A list of <span class="type">PangoStyleAttribute</span>&lt;!-- --&gt;s to be applied to the
3337
+ contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
3338
+ <p>Flags: Read / Write</p>
3339
+ <p class="since">Since 1.0</p>
3340
+ </div>
3341
+ <hr>
3342
+ <div class="refsect2">
3343
+ <a name="ClutterText--buffer"></a><h3>The <code class="literal">“buffer”</code> property</h3>
3344
+ <pre class="programlisting"> “buffer” <a class="link" href="ClutterTextBuffer.html" title="ClutterTextBuffer"><span class="type">ClutterTextBuffer</span></a> *</pre>
3345
+ <p>The buffer which stores the text for this <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>.</p>
3346
+ <p>If set to <code class="literal">NULL</code>, a default buffer will be created.</p>
3347
+ <p>Flags: Read / Write</p>
3348
+ <p class="since">Since 1.8</p>
3349
+ </div>
3350
+ <hr>
3351
+ <div class="refsect2">
3352
+ <a name="ClutterText--color"></a><h3>The <code class="literal">“color”</code> property</h3>
3353
+ <pre class="programlisting"> “color” <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</pre>
3354
+ <p>The color used to render the text.</p>
3355
+ <p>Flags: Read / Write</p>
3356
+ <p class="since">Since 1.0</p>
3357
+ </div>
3358
+ <hr>
3359
+ <div class="refsect2">
3360
+ <a name="ClutterText--cursor-color"></a><h3>The <code class="literal">“cursor-color”</code> property</h3>
3361
+ <pre class="programlisting"> “cursor-color” <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</pre>
3362
+ <p>The color of the cursor.</p>
3363
+ <p>Flags: Read / Write</p>
3364
+ <p class="since">Since 1.0</p>
3365
+ </div>
3366
+ <hr>
3367
+ <div class="refsect2">
3368
+ <a name="ClutterText--cursor-color-set"></a><h3>The <code class="literal">“cursor-color-set”</code> property</h3>
3369
+ <pre class="programlisting"> “cursor-color-set” <span class="type">gboolean</span></pre>
3370
+ <p>Will be set to <code class="literal">TRUE</code> if <a class="link" href="ClutterText.html#ClutterText--cursor-color" title="The “cursor-color” property"><span class="type">“cursor-color”</span></a> has been set.</p>
3371
+ <p>Flags: Read</p>
3372
+ <p>Default value: FALSE</p>
3373
+ <p class="since">Since 1.0</p>
3374
+ </div>
3375
+ <hr>
3376
+ <div class="refsect2">
3377
+ <a name="ClutterText--cursor-position"></a><h3>The <code class="literal">“cursor-position”</code> property</h3>
3378
+ <pre class="programlisting"> “cursor-position” <span class="type">gint</span></pre>
3379
+ <p>The current input cursor position. -1 is taken to be the end of the text</p>
3380
+ <p>Flags: Read / Write</p>
3381
+ <p>Allowed values: &gt;= -1</p>
3382
+ <p>Default value: -1</p>
3383
+ <p class="since">Since 1.12</p>
3384
+ </div>
3385
+ <hr>
3386
+ <div class="refsect2">
3387
+ <a name="ClutterText--cursor-size"></a><h3>The <code class="literal">“cursor-size”</code> property</h3>
3388
+ <pre class="programlisting"> “cursor-size” <span class="type">gint</span></pre>
3389
+ <p>The size of the cursor, in pixels. If set to -1 the size used will
3390
+ be the default cursor size of 2 pixels.</p>
3391
+ <p>Flags: Read / Write</p>
3392
+ <p>Allowed values: &gt;= -1</p>
3393
+ <p>Default value: 2</p>
3394
+ <p class="since">Since 1.0</p>
3395
+ </div>
3396
+ <hr>
3397
+ <div class="refsect2">
3398
+ <a name="ClutterText--cursor-visible"></a><h3>The <code class="literal">“cursor-visible”</code> property</h3>
3399
+ <pre class="programlisting"> “cursor-visible” <span class="type">gboolean</span></pre>
3400
+ <p>Whether the input cursor is visible or not, it will only be visible
3401
+ if both <a class="link" href="ClutterText.html#ClutterText--cursor-visible" title="The “cursor-visible” property"><span class="type">“cursor-visible”</span></a> and <a class="link" href="ClutterText.html#ClutterText--editable" title="The “editable” property"><span class="type">“editable”</span></a> are
3402
+ set to <code class="literal">TRUE</code>.</p>
3403
+ <p>Flags: Read / Write</p>
3404
+ <p>Default value: TRUE</p>
3405
+ <p class="since">Since 1.0</p>
3406
+ </div>
3407
+ <hr>
3408
+ <div class="refsect2">
3409
+ <a name="ClutterText--editable"></a><h3>The <code class="literal">“editable”</code> property</h3>
3410
+ <pre class="programlisting"> “editable” <span class="type">gboolean</span></pre>
3411
+ <p>Whether key events delivered to the actor causes editing.</p>
3412
+ <p>Flags: Read / Write</p>
3413
+ <p>Default value: FALSE</p>
3414
+ <p class="since">Since 1.0</p>
3415
+ </div>
3416
+ <hr>
3417
+ <div class="refsect2">
3418
+ <a name="ClutterText--ellipsize"></a><h3>The <code class="literal">“ellipsize”</code> property</h3>
3419
+ <pre class="programlisting"> “ellipsize” <span class="type">PangoEllipsizeMode</span></pre>
3420
+ <p>The preferred place to ellipsize the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor</p>
3421
+ <p>Flags: Read / Write</p>
3422
+ <p>Default value: PANGO_ELLIPSIZE_NONE</p>
3423
+ <p class="since">Since 1.0</p>
3424
+ </div>
3425
+ <hr>
3426
+ <div class="refsect2">
3427
+ <a name="ClutterText--font-description"></a><h3>The <code class="literal">“font-description”</code> property</h3>
3428
+ <pre class="programlisting"> “font-description” <span class="type">PangoFontDescription</span> *</pre>
3429
+ <p>The <span class="type">PangoFontDescription</span> that should be used by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a></p>
3430
+ <p>If you have a string describing the font then you should look at
3431
+ <a class="link" href="ClutterText.html#ClutterText--font-name" title="The “font-name” property"><span class="type">“font-name”</span></a> instead</p>
3432
+ <p>Flags: Read / Write</p>
3433
+ <p class="since">Since 1.2</p>
3434
+ </div>
3435
+ <hr>
3436
+ <div class="refsect2">
3437
+ <a name="ClutterText--font-name"></a><h3>The <code class="literal">“font-name”</code> property</h3>
3438
+ <pre class="programlisting"> “font-name” <span class="type">gchar</span> *</pre>
3439
+ <p>The font to be used by the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a>, as a string
3440
+ that can be parsed by <code class="function">pango_font_description_from_string()</code>.</p>
3441
+ <p>If set to <code class="literal">NULL</code>, the default system font will be used instead.</p>
3442
+ <p>Flags: Read / Write</p>
3443
+ <p>Default value: NULL</p>
3444
+ <p class="since">Since 1.0</p>
3445
+ </div>
3446
+ <hr>
3447
+ <div class="refsect2">
3448
+ <a name="ClutterText--justify"></a><h3>The <code class="literal">“justify”</code> property</h3>
3449
+ <pre class="programlisting"> “justify” <span class="type">gboolean</span></pre>
3450
+ <p>Whether the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> should be justified
3451
+ on both margins.</p>
3452
+ <p>Flags: Read / Write</p>
3453
+ <p>Default value: FALSE</p>
3454
+ <p class="since">Since 1.0</p>
3455
+ </div>
3456
+ <hr>
3457
+ <div class="refsect2">
3458
+ <a name="ClutterText--line-alignment"></a><h3>The <code class="literal">“line-alignment”</code> property</h3>
3459
+ <pre class="programlisting"> “line-alignment” <span class="type">PangoAlignment</span></pre>
3460
+ <p>The preferred alignment for the text. This property controls
3461
+ the alignment of multi-line paragraphs.</p>
3462
+ <p>Flags: Read / Write</p>
3463
+ <p>Default value: PANGO_ALIGN_LEFT</p>
3464
+ <p class="since">Since 1.0</p>
3465
+ </div>
3466
+ <hr>
3467
+ <div class="refsect2">
3468
+ <a name="ClutterText--line-wrap"></a><h3>The <code class="literal">“line-wrap”</code> property</h3>
3469
+ <pre class="programlisting"> “line-wrap” <span class="type">gboolean</span></pre>
3470
+ <p>Whether to wrap the lines of <a class="link" href="ClutterText.html#ClutterText--text" title="The “text” property"><span class="type">“text”</span></a> if the contents
3471
+ exceed the available allocation. The wrapping strategy is
3472
+ controlled by the <a class="link" href="ClutterText.html#ClutterText--line-wrap-mode" title="The “line-wrap-mode” property"><span class="type">“line-wrap-mode”</span></a> property.</p>
3473
+ <p>Flags: Read / Write</p>
3474
+ <p>Default value: FALSE</p>
3475
+ <p class="since">Since 1.0</p>
3476
+ </div>
3477
+ <hr>
3478
+ <div class="refsect2">
3479
+ <a name="ClutterText--line-wrap-mode"></a><h3>The <code class="literal">“line-wrap-mode”</code> property</h3>
3480
+ <pre class="programlisting"> “line-wrap-mode” <span class="type">PangoWrapMode</span></pre>
3481
+ <p>If <a class="link" href="ClutterText.html#ClutterText--line-wrap" title="The “line-wrap” property"><span class="type">“line-wrap”</span></a> is set to <code class="literal">TRUE</code>, this property will
3482
+ control how the text is wrapped.</p>
3483
+ <p>Flags: Read / Write</p>
3484
+ <p>Default value: PANGO_WRAP_WORD</p>
3485
+ <p class="since">Since 1.0</p>
3486
+ </div>
3487
+ <hr>
3488
+ <div class="refsect2">
3489
+ <a name="ClutterText--max-length"></a><h3>The <code class="literal">“max-length”</code> property</h3>
3490
+ <pre class="programlisting"> “max-length” <span class="type">gint</span></pre>
3491
+ <p>The maximum length of the contents of the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor.</p>
3492
+ <p>Flags: Read / Write</p>
3493
+ <p>Allowed values: &gt;= -1</p>
3494
+ <p>Default value: 0</p>
3495
+ <p class="since">Since 1.0</p>
3496
+ </div>
3497
+ <hr>
3498
+ <div class="refsect2">
3499
+ <a name="ClutterText--password-char"></a><h3>The <code class="literal">“password-char”</code> property</h3>
3500
+ <pre class="programlisting"> “password-char” <span class="type">guint</span></pre>
3501
+ <p>If non-zero, the character that should be used in place of
3502
+ the actual text in a password text actor.</p>
3503
+ <p>Flags: Read / Write</p>
3504
+ <p>Default value: 0</p>
3505
+ <p class="since">Since 1.0</p>
3506
+ </div>
3507
+ <hr>
3508
+ <div class="refsect2">
3509
+ <a name="ClutterText--position"></a><h3>The <code class="literal">“position”</code> property</h3>
3510
+ <pre class="programlisting"> “position” <span class="type">gint</span></pre>
3511
+ <p>The current input cursor position. -1 is taken to be the end of the text</p>
3512
+ <div class="warning">
3513
+ <p><code class="literal">ClutterText:position</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p>
3514
+ <p>Use ClutterText:cursor-position instead.</p>
3515
+ </div>
3516
+ <p>Flags: Read / Write</p>
3517
+ <p>Allowed values: &gt;= -1</p>
3518
+ <p>Default value: -1</p>
3519
+ <p class="since">Since 1.0</p>
3520
+ </div>
3521
+ <hr>
3522
+ <div class="refsect2">
3523
+ <a name="ClutterText--selectable"></a><h3>The <code class="literal">“selectable”</code> property</h3>
3524
+ <pre class="programlisting"> “selectable” <span class="type">gboolean</span></pre>
3525
+ <p>Whether it is possible to select text, either using the pointer
3526
+ or the keyboard.</p>
3527
+ <p>Flags: Read / Write</p>
3528
+ <p>Default value: TRUE</p>
3529
+ <p class="since">Since 1.0</p>
3530
+ </div>
3531
+ <hr>
3532
+ <div class="refsect2">
3533
+ <a name="ClutterText--selected-text-color"></a><h3>The <code class="literal">“selected-text-color”</code> property</h3>
3534
+ <pre class="programlisting"> “selected-text-color” <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</pre>
3535
+ <p>The color of selected text.</p>
3536
+ <p>Flags: Read / Write</p>
3537
+ <p class="since">Since 1.8</p>
3538
+ </div>
3539
+ <hr>
3540
+ <div class="refsect2">
3541
+ <a name="ClutterText--selected-text-color-set"></a><h3>The <code class="literal">“selected-text-color-set”</code> property</h3>
3542
+ <pre class="programlisting"> “selected-text-color-set” <span class="type">gboolean</span></pre>
3543
+ <p>Will be set to <code class="literal">TRUE</code> if <a class="link" href="ClutterText.html#ClutterText--selected-text-color" title="The “selected-text-color” property"><span class="type">“selected-text-color”</span></a> has been set.</p>
3544
+ <p>Flags: Read</p>
3545
+ <p>Default value: FALSE</p>
3546
+ <p class="since">Since 1.8</p>
3547
+ </div>
3548
+ <hr>
3549
+ <div class="refsect2">
3550
+ <a name="ClutterText--selection-bound"></a><h3>The <code class="literal">“selection-bound”</code> property</h3>
3551
+ <pre class="programlisting"> “selection-bound” <span class="type">gint</span></pre>
3552
+ <p>The current input cursor position. -1 is taken to be the end of the text</p>
3553
+ <p>Flags: Read / Write</p>
3554
+ <p>Allowed values: &gt;= -1</p>
3555
+ <p>Default value: -1</p>
3556
+ <p class="since">Since 1.0</p>
3557
+ </div>
3558
+ <hr>
3559
+ <div class="refsect2">
3560
+ <a name="ClutterText--selection-color"></a><h3>The <code class="literal">“selection-color”</code> property</h3>
3561
+ <pre class="programlisting"> “selection-color” <a class="link" href="clutter-Colors.html#ClutterColor" title="ClutterColor"><span class="type">ClutterColor</span></a> *</pre>
3562
+ <p>The color of the selection.</p>
3563
+ <p>Flags: Read / Write</p>
3564
+ <p class="since">Since 1.0</p>
3565
+ </div>
3566
+ <hr>
3567
+ <div class="refsect2">
3568
+ <a name="ClutterText--selection-color-set"></a><h3>The <code class="literal">“selection-color-set”</code> property</h3>
3569
+ <pre class="programlisting"> “selection-color-set” <span class="type">gboolean</span></pre>
3570
+ <p>Will be set to <code class="literal">TRUE</code> if <a class="link" href="ClutterText.html#ClutterText--selection-color" title="The “selection-color” property"><span class="type">“selection-color”</span></a> has been set.</p>
3571
+ <p>Flags: Read</p>
3572
+ <p>Default value: FALSE</p>
3573
+ <p class="since">Since 1.0</p>
3574
+ </div>
3575
+ <hr>
3576
+ <div class="refsect2">
3577
+ <a name="ClutterText--single-line-mode"></a><h3>The <code class="literal">“single-line-mode”</code> property</h3>
3578
+ <pre class="programlisting"> “single-line-mode” <span class="type">gboolean</span></pre>
3579
+ <p>Whether the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor should be in single line mode
3580
+ or not. A single line <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor will only contain a
3581
+ single line of text, scrolling it in case its length is bigger
3582
+ than the allocated size.</p>
3583
+ <p>Setting this property will also set the <a class="link" href="ClutterText.html#ClutterText--activatable" title="The “activatable” property"><span class="type">“activatable”</span></a>
3584
+ property as a side-effect.</p>
3585
+ <p>The <a class="link" href="ClutterText.html#ClutterText--single-line-mode" title="The “single-line-mode” property"><span class="type">“single-line-mode”</span></a> property is used only if the
3586
+ <a class="link" href="ClutterText.html#ClutterText--editable" title="The “editable” property"><span class="type">“editable”</span></a> property is set to <code class="literal">TRUE</code>.</p>
3587
+ <p>Flags: Read / Write</p>
3588
+ <p>Default value: FALSE</p>
3589
+ <p class="since">Since 1.0</p>
3590
+ </div>
3591
+ <hr>
3592
+ <div class="refsect2">
3593
+ <a name="ClutterText--text"></a><h3>The <code class="literal">“text”</code> property</h3>
3594
+ <pre class="programlisting"> “text” <span class="type">gchar</span> *</pre>
3595
+ <p>The text to render inside the actor.</p>
3596
+ <p>Flags: Read / Write</p>
3597
+ <p>Default value: ""</p>
3598
+ <p class="since">Since 1.0</p>
3599
+ </div>
3600
+ <hr>
3601
+ <div class="refsect2">
3602
+ <a name="ClutterText--use-markup"></a><h3>The <code class="literal">“use-markup”</code> property</h3>
3603
+ <pre class="programlisting"> “use-markup” <span class="type">gboolean</span></pre>
3604
+ <p>Whether the text includes Pango markup.</p>
3605
+ <p>For more informations about the Pango markup format, see
3606
+ <code class="function">pango_layout_set_markup()</code> in the Pango documentation.</p>
3607
+ <p>It is not possible to round-trip this property between
3608
+ <code class="literal">TRUE</code> and <code class="literal">FALSE</code>. Once a string with markup has been set on
3609
+ a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor with :use-markup set to <code class="literal">TRUE</code>, the markup
3610
+ is stripped from the string.</p>
3611
+ <p>Flags: Read / Write</p>
3612
+ <p>Default value: FALSE</p>
3613
+ <p class="since">Since 1.0</p>
3614
+ </div>
3615
+ </div>
3616
+ <div class="refsect1">
3617
+ <a name="ClutterText.signal-details"></a><h2>Signal Details</h2>
3618
+ <div class="refsect2">
3619
+ <a name="ClutterText-activate"></a><h3>The <code class="literal">“activate”</code> signal</h3>
3620
+ <pre class="programlisting"><span class="returnvalue">void</span>
3621
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3622
+ <span class="type">gpointer</span> user_data)</pre>
3623
+ <p>The ::activate signal is emitted each time the actor is 'activated'
3624
+ by the user, normally by pressing the 'Enter' key. The signal is
3625
+ emitted only if <a class="link" href="ClutterText.html#ClutterText--activatable" title="The “activatable” property"><span class="type">“activatable”</span></a> is set to <code class="literal">TRUE</code>.</p>
3626
+ <div class="refsect3">
3627
+ <a name="id-1.5.3.4.13.2.5"></a><h4>Parameters</h4>
3628
+ <div class="informaltable"><table width="100%" border="0">
3629
+ <colgroup>
3630
+ <col width="150px" class="parameters_name">
3631
+ <col class="parameters_description">
3632
+ <col width="200px" class="parameters_annotations">
3633
+ </colgroup>
3634
+ <tbody>
3635
+ <tr>
3636
+ <td class="parameter_name"><p>self</p></td>
3637
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3638
+ <td class="parameter_annotations"> </td>
3639
+ </tr>
3640
+ <tr>
3641
+ <td class="parameter_name"><p>user_data</p></td>
3642
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3643
+ <td class="parameter_annotations"> </td>
3644
+ </tr>
3645
+ </tbody>
3646
+ </table></div>
3647
+ </div>
3648
+ <p>Flags: Run Last</p>
3649
+ <p class="since">Since 1.0</p>
3650
+ </div>
3651
+ <hr>
3652
+ <div class="refsect2">
3653
+ <a name="ClutterText-cursor-changed"></a><h3>The <code class="literal">“cursor-changed”</code> signal</h3>
3654
+ <pre class="programlisting"><span class="returnvalue">void</span>
3655
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3656
+ <span class="type">gpointer</span> user_data)</pre>
3657
+ <p>The ::cursor-changed signal is emitted whenever the cursor
3658
+ position or size changes.</p>
3659
+ <div class="refsect3">
3660
+ <a name="id-1.5.3.4.13.3.5"></a><h4>Parameters</h4>
3661
+ <div class="informaltable"><table width="100%" border="0">
3662
+ <colgroup>
3663
+ <col width="150px" class="parameters_name">
3664
+ <col class="parameters_description">
3665
+ <col width="200px" class="parameters_annotations">
3666
+ </colgroup>
3667
+ <tbody>
3668
+ <tr>
3669
+ <td class="parameter_name"><p>self</p></td>
3670
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3671
+ <td class="parameter_annotations"> </td>
3672
+ </tr>
3673
+ <tr>
3674
+ <td class="parameter_name"><p>user_data</p></td>
3675
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3676
+ <td class="parameter_annotations"> </td>
3677
+ </tr>
3678
+ </tbody>
3679
+ </table></div>
3680
+ </div>
3681
+ <p>Flags: Run Last</p>
3682
+ <p class="since">Since 1.16</p>
3683
+ </div>
3684
+ <hr>
3685
+ <div class="refsect2">
3686
+ <a name="ClutterText-cursor-event"></a><h3>The <code class="literal">“cursor-event”</code> signal</h3>
3687
+ <pre class="programlisting"><span class="returnvalue">void</span>
3688
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3689
+ <a class="link" href="clutter-Base-geometric-types.html#ClutterGeometry" title="struct ClutterGeometry"><span class="type">ClutterGeometry</span></a> *geometry,
3690
+ <span class="type">gpointer</span> user_data)</pre>
3691
+ <p>The ::cursor-event signal is emitted whenever the cursor position
3692
+ changes inside a <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> actor. Inside <em class="parameter"><code>geometry</code></em>
3693
+ it is stored
3694
+ the current position and size of the cursor, relative to the actor
3695
+ itself.</p>
3696
+ <div class="warning">
3697
+ <p><code class="literal">ClutterText::cursor-event</code> has been deprecated since version 1.16 and should not be used in newly-written code.</p>
3698
+ <p>Use the <a class="link" href="ClutterText.html#ClutterText-cursor-changed" title="The “cursor-changed” signal"><span class="type">“cursor-changed”</span></a> signal instead</p>
3699
+ </div>
3700
+ <div class="refsect3">
3701
+ <a name="id-1.5.3.4.13.4.7"></a><h4>Parameters</h4>
3702
+ <div class="informaltable"><table width="100%" border="0">
3703
+ <colgroup>
3704
+ <col width="150px" class="parameters_name">
3705
+ <col class="parameters_description">
3706
+ <col width="200px" class="parameters_annotations">
3707
+ </colgroup>
3708
+ <tbody>
3709
+ <tr>
3710
+ <td class="parameter_name"><p>self</p></td>
3711
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3712
+ <td class="parameter_annotations"> </td>
3713
+ </tr>
3714
+ <tr>
3715
+ <td class="parameter_name"><p>geometry</p></td>
3716
+ <td class="parameter_description"><p>the coordinates of the cursor</p></td>
3717
+ <td class="parameter_annotations"> </td>
3718
+ </tr>
3719
+ <tr>
3720
+ <td class="parameter_name"><p>user_data</p></td>
3721
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3722
+ <td class="parameter_annotations"> </td>
3723
+ </tr>
3724
+ </tbody>
3725
+ </table></div>
3726
+ </div>
3727
+ <p>Flags: Run Last</p>
3728
+ <p class="since">Since 1.0</p>
3729
+ </div>
3730
+ <hr>
3731
+ <div class="refsect2">
3732
+ <a name="ClutterText-delete-text"></a><h3>The <code class="literal">“delete-text”</code> signal</h3>
3733
+ <pre class="programlisting"><span class="returnvalue">void</span>
3734
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3735
+ <span class="type">gint</span> start_pos,
3736
+ <span class="type">gint</span> end_pos,
3737
+ <span class="type">gpointer</span> user_data)</pre>
3738
+ <p>This signal is emitted when text is deleted from the actor by
3739
+ the user. It is emitted before <em class="parameter"><code>self</code></em>
3740
+ text changes.</p>
3741
+ <div class="refsect3">
3742
+ <a name="id-1.5.3.4.13.5.5"></a><h4>Parameters</h4>
3743
+ <div class="informaltable"><table width="100%" border="0">
3744
+ <colgroup>
3745
+ <col width="150px" class="parameters_name">
3746
+ <col class="parameters_description">
3747
+ <col width="200px" class="parameters_annotations">
3748
+ </colgroup>
3749
+ <tbody>
3750
+ <tr>
3751
+ <td class="parameter_name"><p>self</p></td>
3752
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3753
+ <td class="parameter_annotations"> </td>
3754
+ </tr>
3755
+ <tr>
3756
+ <td class="parameter_name"><p>start_pos</p></td>
3757
+ <td class="parameter_description"><p>the starting position</p></td>
3758
+ <td class="parameter_annotations"> </td>
3759
+ </tr>
3760
+ <tr>
3761
+ <td class="parameter_name"><p>end_pos</p></td>
3762
+ <td class="parameter_description"><p>the end position</p></td>
3763
+ <td class="parameter_annotations"> </td>
3764
+ </tr>
3765
+ <tr>
3766
+ <td class="parameter_name"><p>user_data</p></td>
3767
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3768
+ <td class="parameter_annotations"> </td>
3769
+ </tr>
3770
+ </tbody>
3771
+ </table></div>
3772
+ </div>
3773
+ <p>Flags: Action</p>
3774
+ <p class="since">Since 1.2</p>
3775
+ </div>
3776
+ <hr>
3777
+ <div class="refsect2">
3778
+ <a name="ClutterText-insert-text"></a><h3>The <code class="literal">“insert-text”</code> signal</h3>
3779
+ <pre class="programlisting"><span class="returnvalue">void</span>
3780
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3781
+ <span class="type">gchar</span> *new_text,
3782
+ <span class="type">gint</span> new_text_length,
3783
+ <span class="type">gpointer</span> position,
3784
+ <span class="type">gpointer</span> user_data)</pre>
3785
+ <p>This signal is emitted when text is inserted into the actor by
3786
+ the user. It is emitted before <em class="parameter"><code>self</code></em>
3787
+ text changes.</p>
3788
+ <div class="refsect3">
3789
+ <a name="id-1.5.3.4.13.6.5"></a><h4>Parameters</h4>
3790
+ <div class="informaltable"><table width="100%" border="0">
3791
+ <colgroup>
3792
+ <col width="150px" class="parameters_name">
3793
+ <col class="parameters_description">
3794
+ <col width="200px" class="parameters_annotations">
3795
+ </colgroup>
3796
+ <tbody>
3797
+ <tr>
3798
+ <td class="parameter_name"><p>self</p></td>
3799
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3800
+ <td class="parameter_annotations"> </td>
3801
+ </tr>
3802
+ <tr>
3803
+ <td class="parameter_name"><p>new_text</p></td>
3804
+ <td class="parameter_description"><p>the new text to insert</p></td>
3805
+ <td class="parameter_annotations"> </td>
3806
+ </tr>
3807
+ <tr>
3808
+ <td class="parameter_name"><p>new_text_length</p></td>
3809
+ <td class="parameter_description"><p>the length of the new text, in bytes, or -1 if
3810
+ new_text is nul-terminated</p></td>
3811
+ <td class="parameter_annotations"> </td>
3812
+ </tr>
3813
+ <tr>
3814
+ <td class="parameter_name"><p>position</p></td>
3815
+ <td class="parameter_description"><p>the position, in characters, at which to insert the
3816
+ new text. this is an in-out parameter. After the signal
3817
+ emission is finished, it should point after the newly
3818
+ inserted text.</p></td>
3819
+ <td class="parameter_annotations"> </td>
3820
+ </tr>
3821
+ <tr>
3822
+ <td class="parameter_name"><p>user_data</p></td>
3823
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3824
+ <td class="parameter_annotations"> </td>
3825
+ </tr>
3826
+ </tbody>
3827
+ </table></div>
3828
+ </div>
3829
+ <p>Flags: Action</p>
3830
+ <p class="since">Since 1.2</p>
3831
+ </div>
3832
+ <hr>
3833
+ <div class="refsect2">
3834
+ <a name="ClutterText-text-changed"></a><h3>The <code class="literal">“text-changed”</code> signal</h3>
3835
+ <pre class="programlisting"><span class="returnvalue">void</span>
3836
+ user_function (<a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> *self,
3837
+ <span class="type">gpointer</span> user_data)</pre>
3838
+ <p>The ::text-changed signal is emitted after <em class="parameter"><code>actor</code></em>
3839
+ 's text changes</p>
3840
+ <div class="refsect3">
3841
+ <a name="id-1.5.3.4.13.7.5"></a><h4>Parameters</h4>
3842
+ <div class="informaltable"><table width="100%" border="0">
3843
+ <colgroup>
3844
+ <col width="150px" class="parameters_name">
3845
+ <col class="parameters_description">
3846
+ <col width="200px" class="parameters_annotations">
3847
+ </colgroup>
3848
+ <tbody>
3849
+ <tr>
3850
+ <td class="parameter_name"><p>self</p></td>
3851
+ <td class="parameter_description"><p>the <a class="link" href="ClutterText.html" title="ClutterText"><span class="type">ClutterText</span></a> that emitted the signal</p></td>
3852
+ <td class="parameter_annotations"> </td>
3853
+ </tr>
3854
+ <tr>
3855
+ <td class="parameter_name"><p>user_data</p></td>
3856
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3857
+ <td class="parameter_annotations"> </td>
3858
+ </tr>
3859
+ </tbody>
3860
+ </table></div>
3861
+ </div>
3862
+ <p>Flags: Run Last</p>
3863
+ <p class="since">Since 1.0</p>
3864
+ </div>
3865
+ </div>
3866
+ </div>
3867
+ <div class="footer">
3868
+ <hr>
3869
+ Generated by GTK-Doc V1.20.1</div>
3870
+ </body>
3871
+ </html>