mutter/tests/data
Emmanuele Bassi 0411ba7d32 actor: Parse actions, constraints and effects members
ClutterActor should allow attaching actions, constraints and effects
just like it allows behaviours, e.g.:

  {
    ...
    "constraints" : [
      {
        "type" : "ClutterAlignConstraint",
        "source" : "stage",
        "align-axis" : "x-axis",
        "factor" : 0.5
      },
      {
        "type" : "ClutterAlignConstraint",
        "source" : "stage",
        "align-axis" : "y-axis",
        "factor" : 0.5
      }
    ],
    ...
  }

or:

  {
    ...
    "actions" : [
      {
        "type" : "ClutterDragAction",
        "signals" : [
          { "name" : "drag-end", "handler" : "on_drag_end" }
        ]
      }
    ],
    ...
  }

In order to do so, we use the Scriptable interface implementation and
add three new custom properties accepting an array; then we parse each
member of the array as a new object.
2010-06-17 17:35:00 +01:00
..
clutter-1.0.suppressions tests: Add a Valgrind suppression file 2010-02-04 16:49:06 +00:00
light0.png Adds a CoglMaterial abstraction, which includes support for multi-texturing 2008-12-22 16:35:52 +00:00
Makefile.am script: Support layout manager properties 2010-06-07 22:45:34 +01:00
redhand_alpha.png [tests] Adds an interactive unit test for multi-texturing 2008-12-22 16:35:51 +00:00
redhand.png Bug 1162 - Re-works the tests/ to use the glib-2.16 unit testing 2008-11-07 19:32:28 +00:00
test-animator-1.json animator: Provide a ClutterScript parser 2010-02-08 15:52:18 +00:00
test-animator-2.json animator: Provide a ClutterScript parser 2010-02-08 15:52:18 +00:00
test-animator-3.json conform: Verify parsing of multiple properties 2010-02-24 16:43:17 +00:00
test-script-animation.json Remove trailing comma from test UI definition 2010-01-05 11:02:39 +00:00
test-script-child.json script: Allow parsing child properties 2009-11-04 16:50:35 +00:00
test-script-implicit-alpha.json conformance: Add unit on the implicit alpha definition 2009-11-06 11:39:30 +00:00
test-script-layout-property.json script: Support layout manager properties 2010-06-07 22:45:34 +01:00
test-script-model.json model: Implement ClutterScriptable interface 2010-02-25 23:09:11 +00:00
test-script-named-object.json actor: Parse actions, constraints and effects members 2010-06-17 17:35:00 +01:00
test-script-object-property.json conform: Add unit for properties holding objects 2009-11-06 11:39:30 +00:00
test-script-single.json conform: Add the beginnings of a ClutterScript test suite 2009-11-04 11:50:45 +00:00
test-script.json tests: Fix test-script.json 2010-04-09 18:28:37 +01:00
test-state-1.json Do not use wildcards in test-state 2010-05-21 14:22:56 +01:00