summaryrefslogtreecommitdiff
path: root/tests/conform/scripts/test-script-layout-property.json
blob: 17e9f4882efab1bba4936ded6cb0a680ed598a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[
  { "id" : "manager", "type" : "ClutterBoxLayout" },

  {
    "id" : "container", "type" : "ClutterBox",
    "layout-manager" : "manager",
    "children" : [
      {
        "id" : "actor-1", "type" : "ClutterRectangle",
        "layout::x-fill" : true,
        "layout::y-align" : "center",
        "layout::expand" : true
      }, {
        "id" : "actor-2", "type" : "ClutterRectangle",
        "layout::x-fill" : false,
        "layout::y-align" : "end",
        "layout::expand" : false
      }
    ]
  }
]