Improved layout in text-field example
[platform/core/uifw/dali-demo.git] / demo / 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       "rows": 4,
26       "columns":4,
27       "cell-padding": [10, 5],
28       "layout-rows": {  // set the height of the rows
29         "0": { "policy": "fixed", "value": 40 },
30         "1": { "policy": "relative", "value": 0.33 },
31         "2": { "policy": "fixed", "value": 120 }
32       },
33       "layout-columns": { // set the widths of the columns
34         "1": { "policy": "fixed", "value": 150 },
35         "2": { "policy": "relative", "value": 0.35 },
36         "3": { "policy": "relative", "value": 0.15 }
37       },
38       "actors": [{
39           "name":"gallery-1",
40           "type":"ImageActor",
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-spam":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           "image": {
53             "filename": "{DALI_IMAGE_DIR}gallery-large-2.jpg"
54           },
55           "custom-properties": {
56             "cell-indices":[1,1],
57             "row-span":3
58           }
59         }, {
60           "name":"gallery-3",
61           "type":"ImageActor",
62           "image": {
63             "filename": "{DALI_IMAGE_DIR}gallery-large-3.jpg"
64           },
65           "custom-properties": {
66             "cell-indices":[2,2]
67           }
68         }, {
69           "name":"gallery-4",
70           "type":"ImageActor",
71           "image": {
72             "filename": "{DALI_IMAGE_DIR}gallery-large-4.jpg"
73           },
74           "custom-properties": {
75             "cell-indices":[3,2],
76             "column-span": 2
77           }
78         }]
79     }]
80 }