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