diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:18:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:18:46 +0000 |
commit | 56294d30a82ec2da6f9ce399740c1ef65a9ddef4 (patch) | |
tree | bbe3823e41495d026ba8edc6eeaef166edb7e2a2 /src/gs-removal-dialog.ui | |
parent | Initial commit. (diff) | |
download | gnome-software-upstream.tar.xz gnome-software-upstream.zip |
Adding upstream version 3.38.1.upstream/3.38.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/gs-removal-dialog.ui')
-rw-r--r-- | src/gs-removal-dialog.ui | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/gs-removal-dialog.ui b/src/gs-removal-dialog.ui new file mode 100644 index 0000000..3d03c75 --- /dev/null +++ b/src/gs-removal-dialog.ui @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <object class="GtkScrolledWindow" id="scrolledwindow"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="min_content_height">160</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">automatic</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkFrame" id="frame"> + <property name="visible">True</property> + <property name="shadow_type">in</property> + <property name="halign">fill</property> + <property name="valign">start</property> + <child> + <object class="GtkListBox" id="listbox"> + <property name="visible">True</property> + <property name="selection_mode">none</property> + </object> + </child> + </object> + </child> + </object> + <template class="GsRemovalDialog" parent="GtkMessageDialog"> + <property name="text" translatable="yes">Incompatible Software</property> + <property name="modal">True</property> + <property name="destroy_with_parent">True</property> + <child type="action"> + <object class="GtkButton" id="button_cancel"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Cancel</property> + <property name="use_underline">True</property> + </object> + </child> + <child type="action"> + <object class="GtkButton" id="button_continue"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Continue</property> + <property name="use_underline">True</property> + <property name="can_default">True</property> + <property name="receives_default">True</property> + </object> + </child> + <action-widgets> + <action-widget response="accept" default="true">button_continue</action-widget> + <action-widget response="cancel">button_cancel</action-widget> + </action-widgets> + </template> +</interface> |