diff options
Diffstat (limited to 'src/gs-loading-page.ui')
-rw-r--r-- | src/gs-loading-page.ui | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/gs-loading-page.ui b/src/gs-loading-page.ui new file mode 100644 index 0000000..7120e5c --- /dev/null +++ b/src/gs-loading-page.ui @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.10"/> + <template class="GsLoadingPage" parent="GsPage"> + <child internal-child="accessible"> + <object class="AtkObject" id="loading-accessible"> + <property name="accessible-name" translatable="yes">Loading page</property> + </object> + </child> + <child> + <object class="GtkBox" id="box"> + <property name="visible">True</property> + <property name="orientation">vertical</property> + <property name="spacing">48</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <style> + <class name="dim-label"/> + </style> + <child type="center"> + <object class="GtkBox" id="centerbox"> + <property name="visible">True</property> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <child> + <object class="GtkImage" id="image"> + <property name="visible">True</property> + <property name="pixel_size">256</property> + <property name="icon_name">org.gnome.Software-symbolic</property> + </object> + </child> + <child> + <object class="GtkProgressBar" id="progressbar"> + <property name="visible">True</property> + <property name="width_request">480</property> + <property name="halign">center</property> + <property name="fraction">0.0</property> + <property name="margin_top">8</property> + <style> + <class name="upgrade-progressbar"/> + </style> + </object> + </child> + <child> + <object class="GtkLabel" id="label"> + <property name="visible">True</property> + <property name="label" translatable="yes">Starting up…</property> + <attributes> + <attribute name="scale" value="1.4"/> + </attributes> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |