blob: 0cff1321a9f3535f66ef4c6241936cf495143534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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>
|