Initialize Tizen 2.3
[framework/uifw/elementary.git] / wearable / data / objects / font_preview.edc
1 color_classes {
2    color_class {
3       name: "entry_text";
4       color: 0 0 0 255;
5    }
6 }
7
8 collections {
9
10    group { name: "font_preview";
11       parts {
12
13          /* some fonts have weird alignments, thus they overflow badly */
14          part { name: "clipper";
15             type: RECT;
16             description {
17                state: "default" 0.0;
18             }
19          }
20
21          part { name: "elm.text";
22             type: TEXT;
23             mouse_events: 0;
24             scale: 1;
25             clip_to: "clipper";
26             description {
27                state: "default" 0.0;
28                color_class: "entry_text";
29                text {
30                   font: "Sans";
31                   min: 0 1;
32                   size: 10;
33                   align: 0.5 0.5;
34                   text_class: "font_preview";
35                }
36             }
37          }
38       }
39    }
40 }