mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
75 lines
2.9 KiB
XML
75 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<template class="ExampleAppPrefs" parent="GtkDialog">
|
|
<property name="title" translatable="yes">Preferences</property>
|
|
<property name="resizable">0</property>
|
|
<property name="modal">1</property>
|
|
<child internal-child="content_area">
|
|
<object class="GtkBox" id="content_area">
|
|
<child>
|
|
<object class="GtkGrid" id="grid">
|
|
<property name="margin-start">12</property>
|
|
<property name="margin-end">12</property>
|
|
<property name="margin-top">12</property>
|
|
<property name="margin-bottom">12</property>
|
|
<property name="row-spacing">12</property>
|
|
<property name="column-spacing">12</property>
|
|
<child>
|
|
<object class="GtkLabel" id="fontlabel">
|
|
<property name="label">_Font:</property>
|
|
<property name="use-underline">1</property>
|
|
<property name="mnemonic-widget">font</property>
|
|
<property name="xalign">1</property>
|
|
<layout>
|
|
<property name="column">0</property>
|
|
<property name="row">0</property>
|
|
</layout>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkFontDialogButton" id="font">
|
|
<property name="dialog">
|
|
<object class="GtkFontDialog"/>
|
|
</property>
|
|
<layout>
|
|
<property name="column">1</property>
|
|
<property name="row">0</property>
|
|
</layout>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkLabel" id="transitionlabel">
|
|
<property name="label">_Transition:</property>
|
|
<property name="use-underline">1</property>
|
|
<property name="mnemonic-widget">transition</property>
|
|
<property name="xalign">1</property>
|
|
<layout>
|
|
<property name="column">0</property>
|
|
<property name="row">1</property>
|
|
</layout>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkDropDown" id="transition">
|
|
<property name="model">
|
|
<object class="GtkStringList">
|
|
<items>
|
|
<item translatable="yes">None</item>
|
|
<item translatable="yes">Fade</item>
|
|
<item translatable="yes">Slide</item>
|
|
</items>
|
|
</object>
|
|
</property>
|
|
<layout>
|
|
<property name="column">1</property>
|
|
<property name="row">1</property>
|
|
</layout>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|