blob: 0e7dbc4da0346fe789f12b9c14cbae2bd8edc718 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkApplicationWindow" id="renameDialog">
<property name="modal">1</property>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="spacing">2</property>
<property name="margin-start">5</property>
<property name="margin-top">5</property>
<property name="margin-end">5</property>
<property name="margin-bottom">5</property>
<child>
<object class="GtkLabel">
<property name="vexpand">1</property>
<property name="label" translatable="yes"><b>Rename device to:</b></property>
<property name="use_markup">1</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkEntry" id="renameText">
<property name="vexpand">1</property>
<property name="focusable">1</property>
<property name="invisible_char">●</property>
<property name="activates_default">1</property>
<property name="width_chars">60</property>
</object>
</child>
<child>
<object class="GtkBox">
<property name="baseline_position">bottom</property>
<property name="halign">GTK_ALIGN_END</property>
<property name="homogeneous">1</property>
<child>
<object class="GtkButton">
<property name="label" translatable="yes">_Cancel</property>
<property name="use_underline">1</property>
<property name="focusable">1</property>
<property name="action_name">window.close</property>
</object>
</child>
<child>
<object class="GtkButton" id="renameButton">
<property name="label" translatable="yes">_Ok</property>
<property name="use_underline">1</property>
<property name="focusable">1</property>
<property name="action_name">win.rename</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|