DALi Version 1.3.38
[platform/core/uifw/dali-demo.git] / resources / scripts / table-view.json
1 /*
2  * Copyright (c) 2015 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   /*
20    *  4 by 4 table:
21    * |------------------------------------|
22    * |          |    2(right,top)|   |    |
23    * |  -  -  - |----------------|---|----|
24    * |          |                |   |    |
25    * |          |                |   |    |
26    * |          |                |   |    |
27    * |  -  -  - |  -  -  -  -  - |--------|
28    * |          |                |   |    |
29    * |    1     |                |   |    |
30    * |          |  3             | 4 |    |
31    * |          |aligned to      |   |    |
32    * |          |(left, center)  |   |    |
33    * |  -  -  - |  -  -  -  -  - |--------|
34    * |          |                |   '    |
35    * |          |                |   '    |
36    * |          |                |   5    |
37    * |          |                |   '    |
38    * |          |                |   '    |
39    * |------------------------------------|
40   */
41
42   "stage": [{
43       "name":"simpleTable",
44       "type":"TableView",
45       "background":{
46         "visualType": "COLOR",
47         "mixColor": [0.5,0.5,0,1]
48         },
49       "parentOrigin": "CENTER",
50       "size":[400,400,1],
51       "rows": 4,
52       "columns": 4,
53       "cellPadding": [10, 5],
54       "layoutRows": {  // set the height of the rows
55         "0": { "policy": "fixed", "value": 40 },
56         "1": { "policy": "relative", "value": 0.33 },
57         "2": { "policy": "fit", "value": 0 }
58       },
59       "layoutColumns": { // set the widths of the columns
60         "0": { "policy": "fit", "value": 0 },
61         "2": { "policy": "relative", "value": 0.2 },
62         "3": { "policy": "fixed", "value": 30 }
63       },
64       "actors": [{
65           "name":"gallery1",
66           "type":"ImageView",
67           "heightResizePolicy":"FILL_TO_PARENT",
68           "image": "{DEMO_IMAGE_DIR}gallery-small-1.jpg",
69           "properties": { // properties registered dynamically
70             "cellIndex": [0,0], // property to specify the top-left cell this child occupies
71             "rowSpan":4, // property to specify how many rows this child occupies, if not set, default value is 1
72             "columnSpan":1 // property to specify how many columns this child occupies, if nor set, defualt cvalue is 1
73           }
74         },{
75           "name":"gallery2",
76           "type":"ImageView",
77           "heightResizePolicy":"FILL_TO_PARENT",
78           "image": "{DEMO_IMAGE_DIR}gallery-small-2.jpg",
79           "properties": { // properties registered dynamically
80             "cellIndex": [0,1],
81             "cellHorizontalAlignment": "right" // property to specify how to align horizontally inside the cells, if not set, default value is 'left'
82           }
83         },{
84           "name":"gallery3",
85           "type":"ImageView",
86           "image": "{DEMO_IMAGE_DIR}gallery-small-3.jpg",
87           "properties": {
88             "cellIndex":[1,1],
89             "rowSpan":3,
90             "cellHorizontalAlignment": "left",// property to specify how to align horizontally inside the cells, if not set, default value is 'left'
91             "cellVerticalAlignment": "center" // property to specify how to align vertically inside the cells, if not set, default value is 'top'
92           }
93         }, {
94           "name":"gallery4",
95           "type":"ImageView",
96           "widthResizePolicy":"FILL_TO_PARENT",
97           "image": "{DEMO_IMAGE_DIR}gallery-small-4.jpg",
98           "properties": {
99             "cellIndex":[2,2]
100           }
101         }, {
102           "name":"gallery5",
103           "type":"ImageView",
104           "widthResizePolicy":"FILL_TO_PARENT",
105           "heightResizePolicy":"FILL_TO_PARENT",
106           "image": "{DEMO_IMAGE_DIR}gallery-small-5.jpg",
107           "properties": {
108             "cellIndex":[3,2],
109             "columnSpan": 2
110           }
111         }]
112     }]
113 }