summaryrefslogtreecommitdiff
path: root/src/examples/edje/textblock-hyphen.edc
blob: 9c82754ceae86de6d977cb2cebbbd991d090ac44 (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
collections {
   styles {
      style { name: "entry_style";
         base: "font="DejavuSans" font_size=10 color=#000 wrap=word left_margin=2 right_margin=2";
      }
   }
   group {
      name: "example_textblock_hyphenation";
      min: 10 50;

      parts {
         part {
            name: "text_part"; type: TEXTBLOCK;
            description {
               min: 10 50;
               state: "default" 0.0;
               rel1.relative: 0.0 0.0;
               rel2.relative: 1.0 1.0;
               text {
                  style: "entry_style";
                  min: 0 1;
                  align: 0.0 0.0;
                  hyphenation: 1;
               }
            }
         }
      }
   }
}