diff options
| author | marcin <z.krzysztoff7@gmail.com> | 2014-07-19 16:52:05 +0200 |
|---|---|---|
| committer | marcin <z.krzysztoff7@gmail.com> | 2014-07-19 16:52:05 +0200 |
| commit | 58fb6d055bda4c2f444459fe1970ec5361bd1756 (patch) | |
| tree | 680f68c316a5d0fb3da7b480beffaaf85f6ca075 /BasicPanel.qml | |
| parent | b0afe850fe84c9f75692cf6e111658d219520bbf (diff) | |
| download | monzero-gui-58fb6d055bda4c2f444459fe1970ec5361bd1756.tar.gz monzero-gui-58fb6d055bda4c2f444459fe1970ec5361bd1756.tar.xz monzero-gui-58fb6d055bda4c2f444459fe1970ec5361bd1756.zip | |
simplified window v2
Diffstat (limited to 'BasicPanel.qml')
| -rw-r--r-- | BasicPanel.qml | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/BasicPanel.qml b/BasicPanel.qml index e2d542c7..cc3ccba0 100644 --- a/BasicPanel.qml +++ b/BasicPanel.qml @@ -3,7 +3,7 @@ import "components" Rectangle { width: 470 - height: 334 + height: paymentId.y + paymentId.height + 12 color: "#F0EEEE" border.width: 1 border.color: "#DBDBDB" @@ -137,6 +137,7 @@ Rectangle { } LineEdit { + id: destinationLine anchors.left: parent.left anchors.right: parent.right anchors.top: row.bottom @@ -145,4 +146,37 @@ Rectangle { height: 32 placeholderText: qsTr("destination...") } + + Text { + id: privacyLevelText + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: destinationLine.bottom + anchors.topMargin: 12 + + font.family: "Arial" + font.pixelSize: 12 + color: "#535353" + text: qsTr("Privacy level") + } + + PrivacyLevelSmall { + id: privacyLevel + anchors.left: parent.left + anchors.right: parent.right + anchors.top: privacyLevelText.bottom + anchors.leftMargin: 12 + anchors.rightMargin: 12 + anchors.topMargin: 12 + } + + LineEdit { + id: paymentId + anchors.left: parent.left + anchors.right: parent.right + anchors.top: privacyLevel.bottom + anchors.margins: 12 + fontSize: 15 + height: 32 + placeholderText: qsTr("payment ID (optional)...") + } } |
