summaryrefslogtreecommitdiff
path: root/src/tests/clutter/conform/scripts/test-script-model.json
blob: dc4a62dc00fa90a0937b04b5f9f9c504bef6c9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "id" : "test-model",
  "type" : "ClutterListModel",
  "columns" : [
    [ "text-column", "gchararray" ],
    [ "int-column", "gint" ],
    [ "actor-column", "ClutterActor" ]
  ],
  "rows" : [
    [ "text-row-1", 1, null ],
    [ "text-row-2", 2, { "type" : "ClutterActor", "background-color" : "blue" } ],
    {
      "int-column" : 3,
      "actor-column" : { "type" : "ClutterActor", "name" : "actor-row-3" }
    }
  ]
}