diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:57:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:57:27 +0000 |
commit | 6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18 (patch) | |
tree | d423850ae901365e582137bdf2b5cbdffd7ca266 /src/gs-app-details-page.ui | |
parent | Initial commit. (diff) | |
download | gnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.tar.xz gnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.zip |
Adding upstream version 43.5.upstream/43.5upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/gs-app-details-page.ui | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/src/gs-app-details-page.ui b/src/gs-app-details-page.ui new file mode 100644 index 0000000..2cf1ad1 --- /dev/null +++ b/src/gs-app-details-page.ui @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.10"/> + <template class="GsAppDetailsPage" parent="GtkBox"> + <property name="orientation">vertical</property> + + <child> + <object class="AdwHeaderBar" id="header_bar"> + <property name="valign">start</property> + <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> + <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="AdwStatusPage" id="status_page"> + <property name="icon_name">system-component-application</property> + <property name="title">Inkscape</property> + <property name="description">Vector based drawing program</property> + <property name="vexpand">True</property> + <style> + <class name="compact"/> + <class name="icon-dropshadow"/> + </style> + <child> + <object class="AdwClamp"> + <child> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <child> + <object class="AdwPreferencesGroup" id="permissions_section"> + <property name="title" translatable="yes">Requires additional permissions</property> + <!-- We can't remove children from a AdwPreferencesGroup + without knowing them beforehand, so let's simply + include a GtkListBox and remove its children. --> + <child> + <object class="GtkListBox" id="permissions_section_list"> + <property name="selection-mode">none</property> + <style> + <class name="boxed-list"/> + </style> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBox"> + <property name="selection-mode">none</property> + <style> + <class name="boxed-list"/> + </style> + <child> + <object class="GtkListBoxRow"> + <property name="activatable">False</property> + <child> + <object class="GtkLabel" id="label_details"> + <property name="xalign">0</property> + <property name="yalign">0</property> + <property name="margin-top">18</property> + <property name="margin-bottom">18</property> + <property name="margin-start">18</property> + <property name="margin-end">18</property> + <property name="label">New in kmod 14-1 +* Moo +* bar</property> + <property name="wrap">True</property> + <property name="selectable">True</property> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |