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-version-history-row.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 'src/gs-app-version-history-row.ui')
-rw-r--r-- | src/gs-app-version-history-row.ui | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/gs-app-version-history-row.ui b/src/gs-app-version-history-row.ui new file mode 100644 index 0000000..e6d08ec --- /dev/null +++ b/src/gs-app-version-history-row.ui @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.10 --> + <template class="GsAppVersionHistoryRow" parent="GtkListBoxRow"> + <property name="selectable">False</property> + <property name="activatable">False</property> + <property name="focusable">False</property> + <child> + <object class="GtkBox"> + <property name="margin_start">15</property> + <property name="margin_top">15</property> + <property name="margin_bottom">15</property> + <property name="margin_end">15</property> + <property name="orientation">vertical</property> + <property name="valign">start</property> + <property name="hexpand">True</property> + <child> + <object class="GtkBox"> + <property name="margin_top">3</property> + <property name="margin_bottom">3</property> + <property name="orientation">horizontal</property> + <child> + <object class="GtkLabel" id="version_number_label"> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + <child> + <object class="GtkLabel" id="version_date_label"> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <style> + <class name="dim-label"/> + </style> + </object> + </child> + </object> + </child> + <child> + <object class="GtkLabel" id="version_description_label"> + <property name="margin_top">6</property> + <property name="wrap">True</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="vexpand">True</property> + </object> + </child> + </object> + </child> + </template> +</interface> |