blob: 145a1b91028da3f78094f6ffbdc2f8841f300fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/*
* Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved
*
* This file is part of ug-contacts-efl
*
* Written by Youngjae Shin <yj99.shin@samsung.com>
* Donghee Ye <donghee.ye@samsung.com>
* Sunggoo Kim <sung.goo.kim@samsung.com>
*
* PROPRIETARY/CONFIDENTIAL
*
* This software is the confidential and proprietary information of
* SAMSUNG ELECTRONICS ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered
* into with SAMSUNG ELECTRONICS.
* SAMSUNG make no representations or warranties about the suitability
* of the software, either express or implied, including but not limited
* to the implied warranties of merchantability, fitness for a particular
* purpose, or non-infringement. SAMSUNG shall not be liable for any
* damages suffered by licensee as a result of using, modifying or
* distributing this software or its derivatives.
*
*/
collections {
group { name: "popup_center_text_progressview";
parts{
part { name: "pad_t";
scale : 1;
mouse_events: 0;
repeat_events: 1;
description { state: "default" 0.0;
align: 0.5 0.0;
min: 0 14;
fixed: 0 1;
rel1 {
relative: 1.0 0.0;
to_x: "pad_l";
}
rel2 {
relative: 0.0 0.0;
to_x: "pad_r";
}
}
}
part { name: "pad_l";
scale: 1;
description { state: "default" 0.0;
min : 10 0;
fixed: 1 0;
rel1 {
relative: 0.0 0.0;
}
rel2 {
relative: 0.0 1.0;
}
align: 0.0 0.0;
}
}
part { name: "pad_r";
scale: 1;
description { state: "default" 0.0;
min : 10 0;
fixed: 1 0;
rel1 {
relative: 1.0 0.0;
}
rel2 {
relative: 1.0 1.0;
}
align: 1.0 0.0;
}
}
part{ name:"elm.swallow.content";
type: SWALLOW;
scale : 1;
description { state: "default" 0.0;
min: 400 0;
align: 0.5 0.5;
fixed: 1 0;
rel1 {
relative: 0.5 1.0;
to: "pad_t";
}
rel2 {
relative: 0.5 0.0;
to: "pad_b";
}
}
}
part { name: "pad_b";
scale : 1;
mouse_events: 0;
repeat_events: 1;
description { state: "default" 0.0;
align: 0.5 1.0;
min: 0 90;
fixed: 0 1;
rel1 {
relative: 1.0 1.0;
to_x: "pad_l";
}
rel2 {
relative: 0.0 1.0;
to_x: "pad_r";
}
}
}
part { name: "elm.swallow.end";
type: SWALLOW;
scale : 1;
mouse_events: 1;
repeat_events: 1;
description { state: "default" 0.0;
align: 0.0 0.0;
fixed: 1 1;
rel1 {
relative: 0.0 0.0;
to: "pad_b";
}
rel2 {
relative: 1.0 1.0;
to: "pad_b";
}
}
}
part { name: "pad_bm";
scale : 1;
mouse_events: 0;
repeat_events: 1;
description { state: "default" 0.0;
align: 0.0 1.0;
min: 0 52;
fixed: 0 1;
rel1 {
relative: 0.0 1.0;
to: "pad_b";
}
rel2 {
relative: 1.0 1.0;
to: "pad_b";
}
}
}
part { name: "elm.text.subtext1";
type: TEXT;
scale : 1;
description { state: "default" 0.0;
text {
font: "SLP:style=Medium";
size: 16;
min: 0 0;
align: 0.0 1.0;
}
color: 108 108 108 255;
align: 0.0 0.5;
rel1 {
relative: 0.0 0.0;
to: "pad_bm";
}
rel2 {
relative: 1.0 1.0;
to: "pad_bm";
}
}
}
part { name: "elm.text.subtext2";
type: TEXT;
scale : 1;
description { state: "default" 0.0;
text {
font: "SLP:style=Medium";
size: 16;
min: 0 0;
align: 1.0 1.0;
}
color: 108 108 108 255;
align: 1.0 0.5;
rel1 {
relative: 0.0 0.0;
to: "pad_bm";
}
rel2 {
relative: 1.0 1.0;
to: "pad_bm";
}
}
}
}
}
}
|