diff options
Diffstat (limited to '')
-rw-r--r-- | src/gs-os-update-page.ui | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/gs-os-update-page.ui b/src/gs-os-update-page.ui new file mode 100644 index 0000000..a0ec36e --- /dev/null +++ b/src/gs-os-update-page.ui @@ -0,0 +1,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> |