blob: 732afee56fbfa2e27d02366c83fbb956d5e2be56 (
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
94
95
96
97
98
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<object class="GtkDialog" id="compress_dialog">
<property name="title" translatable="yes">Create Compressed Archive</property>
<property name="resizable">False</property>
<property name="modal">True</property>
<property name="destroy_with_parent">True</property>
<property name="use-header-bar">1</property>
<property name="default-width">500</property>
<property name="default-height">210</property>
<child internal-child="content_area">
<object class="GtkBox" id="content_area">
<property name="orientation">vertical</property>
<property name="margin-top">30</property>
<property name="margin-bottom">30</property>
<property name="margin-start">30</property>
<property name="margin-end">30</property>
<property name="width-request">390</property>
<property name="halign">center</property>
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="name_label">
<property name="label" translatable="yes">Archive name</property>
<property name="xalign">0</property>
<attributes>
<attribute name="weight" value="bold"></attribute>
</attributes>
</object>
</child>
<child>
<object class="GtkBox">
<property name="spacing">12</property>
<child>
<object class="GtkEntry" id="name_entry">
<accessibility>
<relation name="labelled-by">name_label</relation>
</accessibility>
<property name="hexpand">True</property>
<property name="width-chars">30</property>
</object>
</child>
<child>
<object class="GtkDropDown" id="extension_dropdown"/>
</child>
</object>
</child>
<child>
<object class="GtkRevealer" id="error_revealer">
<property name="child">
<object class="GtkLabel" id="error_label">
<property name="margin_top">4</property>
<property name="margin_bottom">4</property>
<property name="xalign">0</property>
</object>
</property>
</object>
</child>
<child>
<object class="GtkLabel" id="passphrase_label">
<property name="visible">False</property>
<property name="label" translatable="yes">Password</property>
<property name="margin-top">6</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkEntry" id="passphrase_entry">
<accessibility>
<relation name="labelled-by">passphrase_label</relation>
</accessibility>
<property name="visible">False</property>
<property name="placeholder-text" translatable="yes">Enter a password here.</property>
<property name="input-purpose">password</property>
<property name="visibility">False</property>
<property name="secondary-icon-name">view-conceal</property>
</object>
</child>
</object>
</child>
<child type="action">
<object class="GtkButton" id="cancel_button">
<property name="label" translatable="yes">Cancel</property>
</object>
</child>
<child type="action">
<object class="GtkButton" id="activate_button">
<property name="label" translatable="yes">Create</property>
<property name="sensitive">False</property>
</object>
</child>
<action-widgets>
<action-widget response="ok" default="true">activate_button</action-widget>
<action-widget response="cancel">cancel_button</action-widget>
</action-widgets>
</object>
<object class="GtkSizeGroup" id="extension_sizegroup"/>
</interface>
|