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-hardware-support-context-dialog.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-hardware-support-context-dialog.ui | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/gs-hardware-support-context-dialog.ui b/src/gs-hardware-support-context-dialog.ui new file mode 100644 index 0000000..a5c0ed8 --- /dev/null +++ b/src/gs-hardware-support-context-dialog.ui @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.10"/> + <template class="GsHardwareSupportContextDialog" parent="GsInfoWindow"> + <property name="title" translatable="yes" comments="Translators: This is the title of the dialog which contains information about the hardware support/requirements of an app">Hardware Support</property> + <child> + <object class="AdwPreferencesPage"> + <child> + <object class="AdwPreferencesGroup"> + + <child> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <property name="spacing">8</property> + + <child> + <object class="GtkBox"> + <property name="margin-top">20</property> + <property name="margin-bottom">16</property> + <property name="margin-start">20</property> + <property name="margin-end">20</property> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + + <child> + <object class="GsLozenge" id="lozenge"> + <property name="circular">False</property> + <!-- this is a placeholder: the icon is actually set in code --> + <property name="icon-name">safety-symbolic</property> + <property name="pixel-size">24</property> + <style> + <class name="large"/> + <class name="grey"/> + </style> + <accessibility> + <relation name="labelled-by">title</relation> + </accessibility> + </object> + </child> + + <child> + <object class="GtkLabel" id="title"> + <!-- this is a placeholder: the text is actually set in code --> + <property name="justify">center</property> + <property name="label">Shortwave works on this device</property> + <property name="wrap">True</property> + <property name="xalign">0.5</property> + <style> + <class name="title-2"/> + </style> + </object> + </child> + </object> + </child> + + <child> + <object class="GtkListBox" id="relations_list"> + <property name="selection_mode">none</property> + <property name="halign">fill</property> + <property name="valign">start</property> + <style> + <class name="boxed-list"/> + </style> + <!-- Rows are added in code --> + <placeholder/> + </object> + </child> + + <child> + <object class="GtkLinkButton"> + <property name="label" translatable="yes">How to contribute missing information</property> + <property name="margin-top">16</property> + <property name="uri">https://gitlab.gnome.org/GNOME/gnome-software/-/wikis/software-metadata#hardware-support</property> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |