summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_text_properties.eo
blob: 8552fae4dde1bac75e5c8775b56acfd8fa0298e2 (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
import efl_gfx_types;

interface Efl.Text.Properties
{
   [[Efl text properties interface]]
   methods {
      @property font {
         set {
            [[Set the font family, filename and size for a given text object.

              This function allows the font name and size of a text object to
              be set. The font string has to follow fontconfig's convention for
              naming fonts, as it's the underlying library used to query system
              fonts by Evas (see the fc-list command's output, on your system,
              to get an idea). Alternatively, youe can use the full path to a font
              file.

              See also @.font.get, @.font_source.get.
            ]]
         }
         get {
            [[Retrieve the font family and size in use on a given text object.

              This function allows the font name and size of a text object to
              be queried. Remember that the font name string is still owned by
              Evas and should not have free() called on it by the caller of the
              function.

              See also @.font.set.
            ]]
         }
         values {
            font: string; [[The font family name or filename.]]
            size: Efl.Font.Size; [[The font size, in points.]]
         }
      }
      @property font_source {
         set {
            [[Set the font (source) file to be used on a given text object.

              This function allows the font file to be explicitly set for a
              given text object, overriding system lookup, which will first
              occur in the given file's contents.

              See also @.font.set.
            ]]
         }
         get {
            [[Get the font file's path which is being used on a given text
              object.

              See @.font.get for more details.
            ]]
         }
         values {
            font_source: string; [[The font file's path.]]
         }
      }
   }
}