blob: f2ea1cfef243ef0d1e5fd1abbc77d0d575bb03cd (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.10"/>
<template class="GsLoadingPage" parent="GsPage">
<accessibility>
<property name="label" translatable="yes">Loading page</property>
</accessibility>
<child>
<object class="AdwStatusPage" id="status_page">
<property name="icon_name">org.gnome.Software</property>
<property name="title" translatable="yes">Starting up…</property>
<style>
<class name="icon-dropshadow"/>
</style>
<child>
<object class="AdwClamp">
<property name="maximum-size">400</property>
<child>
<object class="GtkProgressBar" id="progressbar">
<property name="fraction">0.0</property>
<property name="margin_bottom">12</property>
<style>
<class name="upgrade-progressbar"/>
</style>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|