blob: a0ec36ef0a42474e7c096ac48d3cd22dbb44a010 (
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
45
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.10"/>
<template class="GsOsUpdatePage" parent="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="AdwHeaderBar" id="header_bar">
<property name="show_start_title_buttons">True</property>
<property name="show_end_title_buttons">True</property>
<property name="title-widget">
<object class="AdwWindowTitle" id="window_title" />
</property>
<child type="start">
<object class="GtkButton" id="back_button">
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="icon_name">go-previous-symbolic</property>
<property name="visible">False</property>
<signal name="clicked" handler="back_clicked_cb"/>
<style>
<class name="image-button"/>
</style>
<accessibility>
<property name="label" translatable="yes">Go back</property>
</accessibility>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesPage">
<child>
<object class="AdwPreferencesGroup" id="group">
<child>
<object class="GtkBox" id="box">
<property name="orientation">vertical</property>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|