File: font_preview.edc

package info (click to toggle)
efl 1.28.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 369,516 kB
  • sloc: ansic: 1,078,016; cpp: 45,806; cs: 21,172; asm: 3,739; python: 3,733; javascript: 3,069; objc: 1,514; sh: 771; pascal: 431; xml: 349; makefile: 88
file content (34 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (3)
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
color_classes {
   color_class { name: "/fg/normal/text";
     color: 160 160 160 255;
   }
}

collections { group { name: "font_preview";
      parts {
         /* some fonts have weird alignments, thus they overflow badly */
         part { name: "clipper"; type: RECT;
            description {
               state: "default" 0.0;
            }
         }
         part { name: "elm.text"; type: TEXT;
            scale: 1;
            mouse_events: 0;
            clip_to: "clipper";
            description { state: "default" 0.0;
               color_class: "/fg/normal/text";
               text { font: "Sans";
                  min: 0 1;
                  size: 10;
                  align: 0.5 0.5;
                  text_class: "font_preview";
               }
               rel1.offset: 16 16;
               rel2.offset: -17 -17;
               offscale;
            }
         }
      }
   }
}