tizen 2.3.1 release
[apps/home/b2-clocksetting.git] / data / changeable / groups / thumbnail_view.edc
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  *  Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 group {
18         name: "thumbnail_page";
19         parts {
20                 part {
21                         name: "bg";
22                         type: RECT;
23                         scale: 1;
24                         description {
25                                 min: 180 480;
26                                 max: 180 480;
27                                 state: "default" 0.0;
28                                 color: 0 0 0 255;
29                         }
30                 }
31                 part {
32                         name: "thumb1";
33                         type: SWALLOW;
34                         scale: 1;
35                         description {
36                                 state: "default" 0.0;
37                                 min: 180 240;
38                                 rel1 {relative: 0.0 0.0; to: "bg";}
39                                 rel2 {relative: 1.0 0.5; to: "bg";}
40                                 align: 0.5 0.5;
41                         }
42                 }
43                 part {
44                         name: "thumb2";
45                         type: SWALLOW;
46                         scale: 1;
47                         description {
48                                 state: "default" 0.0;
49                                 min: 180 240;
50                                 rel1 {relative: 0.0 0.5; to: "bg";}
51                                 rel2 {relative: 1.0 1.0; to: "bg";}
52                                 align: 0.5 0.5;
53                         }
54                 }
55         }
56 }
57
58 group {
59         name: "thumbnail";
60         parts {
61                 part {
62                         name: "thumb_bg";
63                         type: RECT;
64                         scale: 1;
65                         description {
66                                 state: "default" 0.0;
67                                 max: 177 237;
68                                 min: 177 237;
69                                 rel1.relative: 0.0 0.0;
70                                 rel2.relative: 1.0 1.0;
71                                 color: 255 255 255 255;
72                         }
73                         description {
74                                 state: "white" 0.0;
75                                 max: 177 237;
76                                 min: 177 237;
77                                 rel1.relative: 0.0 0.0;
78                                 rel2.relative: 1.0 1.0;
79                                 color: 255 255 255 255;
80                         }
81                 }
82                 part {
83                         name: "thumb_inner_bg";
84                         type: RECT;
85                         scale: 1;
86                         description {
87                                 state: "default" 0.0;
88                                 max: 175 235;
89                                 min: 175 235;
90                                 rel1.relative: 0.0 0.0;
91                                 rel2.relative: 1.0 1.0;
92                                 color: 0 0 0 255;
93                         }
94                 }
95                 part {
96                         name: "thumb";
97                         type: SWALLOW;
98                         scale: 1;
99                         description {
100                                 state: "default" 0.0;
101                                 max: 175 235;
102                                 min: 175 235;
103                                 rel1 {relative: 0.0 0.0; to: "thumb_bg"; offset: 1 1;}
104                                 rel2 {relative: 1.0 1.0; to: "thumb_bg"; offset: -1 -1;}
105                         }
106                 }
107                 part {
108                         name: "thumb_btn";
109                         type: SWALLOW;
110                         scale: 1;
111                         description {
112                                 state: "default" 0.0;
113                                 max: 70 70;
114                                 min: 70 70;
115                                 rel1.relative: 0.0 0.0;
116                                 rel2.relative: 1.0 1.0;
117                         }
118                 }
119                 part {
120                         name: "thumb_op";
121                         type: RECT;
122                         mouse_events: 0;
123                         scale: 1;
124                         description {
125                                 state: "default" 0.0;
126                                 rel1.relative: 0.0 0.0;
127                                 rel2.relative: 1.0 1.0;
128                                 color: 0 0 0 0;
129                         }
130                         description {
131                                 state: "opacity" 0.0;
132                                 rel1.relative: 0.0 0.0;
133                                 rel2.relative: 1.0 1.0;
134                                 color_class: "AO0161D";
135                         }
136                 }
137                 part {
138                         name: "thumb_select";
139                         type: SWALLOW;
140                         scale: 1;
141                         description {
142                                 state: "default" 0.0;
143                                 max: 177 237;
144                                 min: 177 237;
145                                 rel1.relative: 0.0 0.0;
146                                 rel2.relative: 1.0 1.0;
147                         }
148                 }
149         }
150
151         programs {
152                 program {
153                         name: "thumb_bg,default";
154                         signal: "thumb_bg,default";
155                         source: "thumb_bg";
156                         action: STATE_SET default"" 0.0;
157                         target: "thumb_bg";
158                 }
159                 program {
160                         name: "thumb_bg,white";
161                         signal: "thumb_bg,white";
162                         source: "thumb_bg";
163                         action: STATE_SET "white" 0.0;
164                         target: "thumb_bg";
165                 }
166                 program {
167                         name: "thumbnail,opacity";
168                         signal: "thumbnail,opacity";
169                         source: "thumb_op";
170                         action: STATE_SET "opacity" 0.0;
171                         target: "thumb_op";
172                 }
173                 program {
174                         name: "thumbnail,default";
175                         signal: "thumbnail,default";
176                         source: "thumb_op";
177                         action: STATE_SET "default" 0.0;
178                         target: "thumb_op";
179                 }
180         }
181 }
182