summaryrefslogtreecommitdiff
path: root/data/org.mate.font-rendering.gschema.xml.in
blob: 4d9ac515197673e69ac1e906b072d062faf5d78e (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
<schemalist gettext-domain="@GETTEXT_PACKAGE@">
  <enum id="org.mate.font-rendering.Antialiasing">
    <value nick="none" value="0"/>
    <value nick="grayscale" value="1"/>
    <value nick="rgba" value="2"/>
  </enum>
  <enum id="org.mate.font-rendering.Hinting">
    <value nick="none" value="0"/>
    <value nick="slight" value="1"/>
    <value nick="medium" value="2"/>
    <value nick="full" value="3"/>
  </enum>
  <enum id="org.mate.font-rendering.RgbaOrder">
    <value nick="rgb" value="0"/>
    <value nick="bgr" value="1"/>
    <value nick="vrgb" value="2"/>
    <value nick="vbgr" value="3"/>
  </enum>
  <schema id="org.mate.font-rendering" path="/org/mate/desktop/font-rendering/">
    <key name="dpi" type="d">
      <default>0.0</default>
      <summary>DPI</summary>
      <description>The resolution used for converting font sizes to pixel sizes,  in dots per inch.</description>
    </key>
    <key name="antialiasing" enum="org.mate.font-rendering.Antialiasing">
      <default>'rgba'</default>
      <summary>Antialiasing</summary>
      <description>The type of antialiasing to use when rendering fonts. Possible values are: "none" for no antialiasing, "grayscale" for standard grayscale antialiasing, and "rgba" for subpixel antialiasing (LCD screens only).</description>
    </key>
    <key name="hinting" enum="org.mate.font-rendering.Hinting">
      <default>'slight'</default>
      <summary>Hinting</summary>
      <description>The type of hinting to use when rendering fonts. Possible values are: "none" for no hinting,  "slight" for basic, "medium" for moderate, and "full" for maximum hinting (may cause distortion of letter forms).</description>
    </key>
    <key name="rgba-order" enum="org.mate.font-rendering.RgbaOrder">
      <default>'rgb'</default>
      <summary>RGBA order</summary>
      <description>The order of subpixel elements on an LCD screen; only used when antialiasing is set to "rgba". Possible values are: "rgb" for red on left (most common), "bgr" for blue on left, "vrgb" for red on top, "vbgr" for red on bottom.</description>
    </key>
  </schema>
</schemalist>