blob: 15ff35ef0e8e17186bddb626435c58c4d66eef33 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<object class="GtkBox" id="main_box">
<property name="hexpand">0</property>
<property name="vexpand">0</property>
<property name="halign">center</property>
<property name="valign">center</property>
<style>
<class name="background"/>
<class name="dino-file-overlay"/>
</style>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="margin-end">20</property>
<property name="margin-start">20</property>
<child>
<object class="GtkBox">
<property name="margin-top">10</property>
<property name="margin-bottom">10</property>
<child>
<object class="GtkLabel">
<property name="label" translatable="1">Send a file</property>
<property name="hexpand">1</property>
<attributes>
<attribute name="weight" value="PANGO_WEIGHT_BOLD"></attribute>
</attributes>
</object>
</child>
<child>
<object class="GtkButton" id="close_button">
<property name="focusable">1</property>
<style>
<class name="titlebutton"/>
<class name="close"/>
</style>
<child>
<object class="GtkImage">
<property name="icon-name">window-close-symbolic</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="DinoUiSizingBin" id="file_widget_insert">
</object>
</child>
<child>
<object class="GtkBox">
<property name="margin-top">15</property>
<property name="margin-bottom">15</property>
<property name="spacing">5</property>
<child>
<object class="GtkLabel" id="info_label"/>
</child>
<child>
<object class="GtkButton" id="send_button">
<property name="label" translatable="1">Send</property>
<property name="focusable">1</property>
<style>
<class name="suggested-action"/>
</style>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|