summaryrefslogtreecommitdiff
path: root/examples/application8/org.gtk.exampleapp.gschema.xml
blob: 218ae80ecf6ca912457e07b1f4156f0c3d9c735d (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
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <enum id="org.gtk.exampleapp.Transition">
    <value value="0" nick="none"/>
    <value value="1" nick="crossfade"/>
    <value value="6" nick="slide-left-right"/>
  </enum>
  <schema path="/org/gtk/exampleapp/" id="org.gtk.exampleapp">
    <key name="font" type="s">
      <default>'Monospace 12'</default>
      <summary>Font</summary>
      <description>The font to be used for content.</description>
    </key>
    <key name="transition" enum="org.gtk.exampleapp.Transition">
      <default>'none'</default>
      <summary>Transition</summary>
      <description>The transition to use when switching tabs.</description>
    </key>
    <key name="show-words" type="b">
      <default>false</default>
      <summary>Show words</summary>
      <description>Whether to show a word list in the sidebar</description>
    </key>
  </schema>
</schemalist>