diff options
Diffstat (limited to '')
-rw-r--r-- | src/gs-removal-dialog.ui | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/gs-removal-dialog.ui b/src/gs-removal-dialog.ui new file mode 100644 index 0000000..0cff132 --- /dev/null +++ b/src/gs-removal-dialog.ui @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="GsRemovalDialog" parent="GtkDialog"> + <property name="title" translatable="yes">Incompatible Software</property> + <property name="modal">True</property> + <property name="destroy_with_parent">True</property> + <child internal-child="headerbar"> + <object class="GtkHeaderBar"> + <property name="show-title-buttons">False</property> + </object> + </child> + <style> + <class name="message" /> + </style> + <child type="action"> + <object class="GtkButton" id="button_cancel"> + <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="label" translatable="yes">_Continue</property> + <property name="use_underline">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> + <child internal-child="content_area"> + <object class="GtkBox" id="dialog-vbox1"> + <property name="orientation">vertical</property> + <property name="spacing">20</property> + <child> + <object class="GtkBox" id="box"> + <property name="margin-start">30</property> + <property name="margin-end">30</property> + <property name="spacing">30</property> + <child> + <object class="GtkBox" id="message_area"> + <property name="orientation">vertical</property> + <property name="spacing">10</property> + <property name="hexpand">1</property> + <child> + <object class="GtkLabel" id="label"> + <property name="halign">center</property> + <property name="valign">start</property> + <property name="wrap">1</property> + <property name="width-chars">40</property> + <property name="max-width-chars">40</property> + </object> + </child> + <child> + <object class="GtkLabel" id="secondary_label"> + <property name="visible">False</property> + <property name="margin-bottom">2</property> + <property name="halign">center</property> + <property name="valign">start</property> + <property name="vexpand">1</property> + <property name="wrap">1</property> + <property name="width-chars">40</property> + <property name="max-width-chars">40</property> + </object> + </child> + <child> + <object class="GtkScrolledWindow"> + <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> + <child> + <object class="GtkListBox" id="listbox"> + <property name="halign">fill</property> + <property name="valign">start</property> + <property name="selection_mode">none</property> + <property name="valign">start</property> + <style> + <class name="boxed-list" /> + </style> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |