Merge branch 'tizen' into devel/new_mesh
[platform/core/uifw/dali-demo.git] / resources / scripts / table-view.json
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 {
18   // a tree of actors
19   "stage": [{
20       "name":"simple-table",
21       "type":"TableView",
22       "background-color": [0.5,0.5,0,1],
23       "parent-origin": "CENTER",
24       "size":[400,500,1],
25       "cell-padding": [10, 5],
26       "layout-rows": {  // set the height of the rows
27         "0": { "policy": "fixed", "value": 40 },
28         "1": { "policy": "relative", "value": 0.33 },
29         "2": { "policy": "fixed", "value": 120 }
30       },
31       "layout-columns": { // set the widths of the columns
32         "1": { "policy": "fixed", "value": 150 },
33         "2": { "policy": "relative", "value": 0.35 },
34         "3": { "policy": "relative", "value": 0.15 }
35       },
36       "actors": [{
37           "name":"gallery-1",
38           "type":"ImageActor",
39           "width-resize-policy":"FILL_TO_PARENT",
40           "height-resize-policy":"FILL_TO_PARENT",
41           "image": {
42             "filename": "{DALI_IMAGE_DIR}gallery-large-1.jpg"
43           },
44           "custom-properties": { // properties registered dynamically
45             "cell-indices": [0,0], // property to specify the top-left cell this child occupies
46             "row-span":4, // property to specify how many rows this child occupies, if not set, default value is 1
47             "column-span":1 // property to specify how many columns this child occupies, if nor set, defualt cvalue is 1
48           }
49         },{
50           "name":"gallery-2",
51           "type":"ImageActor",
52           "width-resize-policy":"FILL_TO_PARENT",
53           "height-resize-policy":"FILL_TO_PARENT",
54           "image": {
55             "filename": "{DALI_IMAGE_DIR}gallery-large-2.jpg"
56           },
57           "custom-properties": {
58             "cell-indices":[1,1],
59             "row-span":3
60           }
61         }, {
62           "name":"gallery-3",
63           "type":"ImageActor",
64           "width-resize-policy":"FILL_TO_PARENT",
65           "height-resize-policy":"FILL_TO_PARENT",
66           "image": {
67             "filename": "{DALI_IMAGE_DIR}gallery-large-3.jpg"
68           },
69           "custom-properties": {
70             "cell-indices":[2,2]
71           }
72         }, {
73           "name":"gallery-4",
74           "type":"ImageActor",
75           "width-resize-policy":"FILL_TO_PARENT",
76           "height-resize-policy":"FILL_TO_PARENT",
77           "image": {
78             "filename": "{DALI_IMAGE_DIR}gallery-large-4.jpg"
79           },
80           "custom-properties": {
81             "cell-indices":[3,2],
82             "column-span": 2
83           }
84         }]
85     }]
86 }