Item : initial version
[apps/native/sample/adventure.git] / res / edje / item.edc
1
2 styles {
3         style {
4                 /* Font size is changed from 24 to 20 because of resolution issues. */
5                 name: "text_style";
6                 base: "font=Tizen:style=Regular font_size=20 color=#ffffff align=center style=shadow shadow_color=#000000bf wrap=mixed ellipsis=-1";
7                 tag:  "br" "\n";
8                 tag:  "hilight" "+ font_weight=Bold";
9                 tag:  "b" "+ font_weight=Bold";
10                 tag:  "tab" "\t";
11         }
12 }
13
14 collections {
15         base_scale: 1.7;
16         group {
17                 name: "item";
18                 parts {
19                         part {
20                                 name: "bg";
21                                 type: SWALLOW;
22                                 mouse_events: 1;
23                                 description {
24                                         state: "default" 0.0;
25                                         rel1 { relative: 0.0 0.0; }
26                                         rel2 { relative: 1.0 1.0; }
27                                 }
28                         }
29                         part {
30                                 name: "icon";
31                                 type: SWALLOW;
32                                 mouse_events: 1;
33                                 scale: 1;
34                                 description {
35                                         state: "default" 0.0;
36                                         rel1 { relative: 0.1 0.1; to: "bg"; }
37                                         rel2 { relative: 0.9 0.66; to: "bg"; }
38                                         color: 255 255 255 255;
39                                         visible: 1;
40                                 }
41                                 description {
42                                         state: "pressed" 0.0;
43                                         inherit: "default" 0.0;
44                                         color: 100 100 100 255;
45                                 }
46                         }
47                         part {
48                                 name: "name";
49                                 type: TEXTBLOCK;
50                                 mouse_events: 1;
51                                 scale: 1;
52                                 description {
53                                         state: "default" 0.0;
54                                         rel1 { relative: 0.0 0.7; to: "bg"; }
55                                         rel2 { relative: 1.0 1.0; to: "bg"; }
56                                         align: 0.5 0.0;
57                                         color: 0 0 0 100;
58                                         text {
59                                                 style: "text_style";
60                                                 align: 0.5 0.0;
61                                         }
62                                         visible: 1;
63                                 }
64                         }
65                         part {
66                                 name: "button";
67                                 type: SWALLOW;
68                                 mouse_events: 1;
69                                 description {
70                                         state: "default" 0.0;
71                                         rel1 { relative: 0.0 0.0; to: "bg"; }
72                                         rel2 { relative: 1.0 1.0; to: "bg"; }
73                                         visible: 1;
74                                 }
75                         }
76                 } //parts
77         }
78 } //collections