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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="revelation">
<object class="GtkBox" id="folder_section">
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="section_title">
<property name="label" translatable="yes">Folder</property>
<property name="use-markup">True</property>
<property name="xalign">0.0</property>
<property name="halign">start</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
</packing>
</child>
<child>
<object class="GtkBox" id="name_row">
<property name="orientation">horizontal</property>
<property name="spacing">12</property>
<child>
<object class="GtkLabel" id="name_label">
<property name="label" translatable="yes">Name:</property>
<property name="use-markup">False</property>
<property name="halign">end</property>
<property name="xalign">1.0</property>
<property name="justify">right</property>
<property name="width-chars">10</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
<child>
<object class="GtkEntry" id="name_entry">
<property name="width-chars">25</property>
<property name="hexpand">True</property>
<property name="tooltip-text" translatable="yes">The name of the folder</property>
</object>
<packing>
<property name="expand">True</property>
<property name="fill">True</property>
</packing>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
</packing>
</child>
<child>
<object class="GtkBox" id="description_row">
<property name="orientation">horizontal</property>
<property name="spacing">12</property>
<child>
<object class="GtkLabel" id="description_label">
<property name="label" translatable="yes">Description:</property>
<property name="use-markup">False</property>
<property name="halign">end</property>
<property name="xalign">1.0</property>
<property name="justify">right</property>
<property name="width-chars">10</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
<child>
<object class="GtkEntry" id="description_entry">
<property name="hexpand">True</property>
<property name="tooltip-text" translatable="yes">A description of the folder</property>
</object>
<packing>
<property name="expand">True</property>
<property name="fill">True</property>
</packing>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
</packing>
</child>
</object>
</interface>
|