-
Notifications
You must be signed in to change notification settings - Fork 2
/
EditKeysForm.ui.qml
77 lines (67 loc) · 1.71 KB
/
EditKeysForm.ui.qml
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
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
Page {
id: item1
property alias recoverButton: recoverButton
property alias seedField: seedField
property alias publicKeyField: publicKeyField
property alias privateKeyField: privateKeyField
property alias generateButton: generateButton
property alias cancelButton: cancelButton
property alias saveButton: saveButton
ColumnLayout {
id: columnLayout1
x: 270
y: 190
width: 599
height: 175
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
RowLayout {
id: rowLayout1
width: 100
height: 100
spacing: 8
TextField {
id: seedField
Layout.fillWidth: true
}
Button {
id: recoverButton
text: qsTr("Recover")
}
}
Button {
id: generateButton
text: qsTr("Generate")
Layout.fillWidth: true
}
TextField {
id: publicKeyField
text: qsTr("")
Layout.fillWidth: true
}
TextField {
id: privateKeyField
text: qsTr("")
Layout.fillWidth: true
}
}
Row {
id: row1
spacing: 8
anchors.right: parent.right
anchors.rightMargin: 20
anchors.bottom: parent.bottom
anchors.bottomMargin: 20
Button {
id: cancelButton
text: qsTr("Cancel")
}
Button {
id: saveButton
text: qsTr("Update Key")
}
}
}