bug fix(StatusBar): Clock is not displayed at the time of the first start
[profile/ivi/ico-uxf-homescreen.git] / src / statusbar / statusbar.edc
1 /*
2  * Copyright (c) 2014, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9
10 collections {
11    group {
12       name: "Notification";
13
14       styles {
15          style {
16             name: "content_style_left";
17             base: "font="Sans" font_size=22 color=#00FFFFFF shadow_color=#80808032 style=shadow wrap=mixed";
18          }
19          style {
20             name: "content_style_center";
21             base: "font="Sans" font_size=25 color=#00FFFFFF shadow_color=#80808032 align=center style=shadow wrap=mixed";
22          }
23       }
24       
25       parts {
26           part {  
27               name: "noti_image";
28               type: IMAGE;
29               description {
30                   min: 50 50;
31                   max: 50 50;
32                   align: 0.0 0.0;
33                   rel1 {
34                         relative: 0.0 0.0;
35                         offset: 0 7;
36                   }
37 /*
38                   image{
39                     normal: "time_0.png";
40                   }
41 */
42               }
43          }
44
45
46          part {
47             name: "content_text";
48             type: TEXTBLOCK;
49             scale: 1;
50             effect: FAR_SOFT_SHADOW;
51             description {
52                min: 300 50;
53                max: 1500 50;
54                state: "default" 0.0;
55                align: 0.0 0.0;
56                rel1.relative: 0.0 0.0;
57                rel1.offset: 70 5;
58                color: 0 255 255 255;
59                text {
60                   style: "content_style_left";
61                   text: "text";
62                   align: 0.0 0.5;
63                }
64             }
65          }
66       }
67    }
68    group {
69       name: "ClockImage";
70
71       images{
72         image:"time_am.png" COMP;
73         image:"time_ten.png" COMP;
74         image:"time_0.png" COMP;
75       }
76
77
78       parts {
79           part { 
80               name: "MIN1_img";
81               type: IMAGE;
82               description {
83                   min: 30 45;
84                   max: 30 45;
85                   align: 0.0 0.0;
86                   rel1 {
87                         relative: 0.0 0.0;
88                         offset: 500 3;
89 /* This Setting not works
90                         relative: 1.0 0.0;
91                         offset: -45 3;
92 */
93                   }
94                   image{
95                     normal: "time_0.png";
96                   }
97               }
98           }
99           part { 
100               name: "MIN10_img";
101               type: IMAGE;
102               description {
103                   min: 30 45;
104                   max: 30 45;
105                   align: 0.0 0.0;
106                   rel1 {
107                         to: "MIN1_img";
108                         relative: 0.0 0.0;
109                         offset: -30 0;
110                   }
111                   image{
112                     normal: "time_0.png";
113                   }
114               }
115           }
116           part { 
117               name: "TIME_SP_img";
118               type: IMAGE;
119               description {
120                   min: 12 30;
121                   max: 12 30;
122                   align: 0.0 0.0;
123                   rel1 {
124                         to: "MIN10_img";
125                         relative: 0.0 0.0;
126                         offset: -24 8;
127                   }
128                   image{
129                     normal: "time_ten.png";
130                   }
131               }
132           }
133           part { 
134               name: "HOUR1_img";
135               type: IMAGE;
136               description {
137                   min: 30 45;
138                   max: 30 45;
139                   align: 0.0 0.0;
140                   rel1 {
141                         to: "TIME_SP_img";
142                         relative: 0.0 0.0;
143                         offset: -42 -8;
144                   }
145                   image{
146                     normal: "time_0.png";
147                   }
148               }
149           }
150           part { 
151               name: "HOUR10_img";
152               type: IMAGE;
153               description {
154                   min: 30 45;
155                   max: 30 45;
156                   align: 0.0 0.0;
157                   rel1 {
158                         to: "HOUR1_img";
159                         relative: 0.0 0.0;
160                         offset: -30 0;
161                   }
162                   image{
163                     normal: "time_0.png";
164                   }
165               }
166           }
167           part { 
168               name: "AM_PM_img";
169               type: IMAGE;
170               description {
171                   min: 60 43;
172                   max: 60 43;
173                   align: 0.0 0.0;
174                   rel1 {
175                         to: "HOUR10_img";
176                         relative: 0.0 0.0;
177                         offset: -72 14;
178                   }
179                   image{
180                     normal: "time_am.png";
181                   }
182               }
183           }
184       }
185    }
186 }