blob: f673c78d82c86bc8eb119f695744813a4ad4304e (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.10"/>
<requires lib="handy" version="1.0"/>
<template class="GsAppVersionHistoryDialog" parent="GtkDialog">
<property name="title" translatable="yes">Version History</property>
<property name="default_width">550</property>
<property name="default_height">600</property>
<property name="width_request">360</property>
<property name="height_request">400</property>
<property name="use_header_bar">1</property>
<child internal-child="headerbar">
<object class="AdwHeaderBar"/>
</child>
<child internal-child="content_area">
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkScrolledWindow">
<child>
<object class="AdwClamp">
<property name="vexpand">True</property>
<property name="hexpand">False</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="margin-bottom">18</property>
<property name="margin-top">18</property>
<child>
<object class="GtkListBox" id="listbox">
<property name="selection-mode">none</property>
<property name="valign">start</property>
<style>
<class name="boxed-list"/>
</style>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|