summaryrefslogtreecommitdiff
path: root/src/tests/clutter/interactive/test-script.json
blob: b958315aee3fd66a1f190307135ccbfc48cdf9fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "My Scene" : {
    "id" : "main-stage",
    "type" : "ClutterStage",
    "title" : { "translatable" : true, "string" : "ClutterScript test" },
    "color" : "white",
    "signals" : [
      { "name" : "key-press-event", "handler" : "clutter_test_quit" },
      { "name" : "destroy", "handler" : "clutter_test_quit" }
    ],
    "children" : [
      {
        "id" : "red-button",
        "type" : "ClutterActor",
        "background-color" : "#ff0000ff",
        "x" : 50, "y" : 50, "width" : 100, "height" : 100,
        "reactive" : true,
        "rotation" : [
          { "z-axis" : [ 45.0, [ 75, 75 ] ] }
        ]
      },
      {
        "id" : "green-button",
        "type" : "ClutterActor",
        "background-color" : "#00ff00ff",
        "border-width" : 5,
        "border-color" : "#00cc00ff",
        "position" : [ 200.0, 50.0 ],
        "size" : { "width" : 100.0, "height" : 100.0 },
        "depth" : -200.0,
        "reactive" : true,
        "signals" : [
          { "name" : "button-press-event", "handler" : "clutter_test_quit" }
        ]
      }, 
      {
        "id" : "label",
        "type" : "ClutterText",
        "x" : 50,
        "y" : 200,
        "text" : { "translatable" : true, "string" : "Clutter Script" },
        "font-name" : "Sans 24px",
        "color" : "black",
        "line-alignment" : "center",
        "line-wrap" : false,
        "ellipsize" : "none",
        "rotation" : [
          { "y-axis" : [ 60.0, [ 275, 100 ] ] },
          { "z-axis" : [ 45.0, [  75,  75 ] ] }
        ]
      }
    ]
  }
}