Merge pull request #5 from status-im/splitview2

fix sidebar and layout, add tabs
This commit is contained in:
Iuri Matias 2020-05-07 15:47:10 -04:00 committed by GitHub
commit ddb78fd536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 139 additions and 23 deletions

118
main.qml
View File

@ -4,17 +4,111 @@ import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3 import QtQuick.Layouts 1.3
ApplicationWindow { ApplicationWindow {
id: applicationWindow
width: 1024 width: 1024
height: 768 height: 768
title: "JSON RPC Caller" title: "JSON RPC Caller"
visible: true visible: true
SplitView { RowLayout {
id: rowLayout
width: parent.width
height: parent.height
anchors.fill: parent anchors.fill: parent
// spacing: 50
TabBar {
id: tabBar
width: 50
height: width *2 + spacing
transformOrigin: Item.Top
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
Layout.fillHeight: true
anchors.top: parent.top
anchors.topMargin: 5
spacing: 5
Layout.fillWidth: true
Layout.minimumWidth: 50
Layout.preferredWidth: 50
Layout.maximumWidth: 50
Layout.minimumHeight: 0
TabButton {
id: firstBtn
width: 50
height: 50
text: ""
transformOrigin: Item.Center
anchors.horizontalCenter: parent.horizontalCenter
Image {
id: image
anchors.fill: parent
fillMode: Image.PreserveAspectFit
source: "message.png"
}
}
TabButton {
id: secondBtn
width: 50
height: 50
text: ""
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: firstBtn.bottom
anchors.topMargin: parent.spacing
Image {
id: image1
anchors.fill: parent
fillMode: Image.PreserveAspectFit
source: "wallet.png"
}
}
TabButton {
id: thirdBtn
width: 50
height: 50
text: ""
anchors.topMargin: 0
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: secondBtn.bottom
Image {
id: image2
anchors.fill: parent
fillMode: Image.PreserveAspectFit
source: "profile.png"
}
}
}
StackLayout {
width: parent.width
currentIndex: tabBar.currentIndex
SplitView {
x: 9
y: 0
Layout.fillHeight: true
// anchors.fill: parent
// width: parent.width
Layout.leftMargin: 0
Layout.fillWidth: true
Layout.minimumWidth: 100
Layout.preferredWidth: 200
// Layout.preferredHeight: 100
Item { Item {
width: 300 width: 300
height: parent.height height: parent.height
Layout.minimumWidth: 200
Button {
id: button
text: qsTr("TEST BUTTON")
}
} }
Item { Item {
@ -25,10 +119,14 @@ ApplicationWindow {
anchors.fill: parent anchors.fill: parent
RowLayout { RowLayout {
Layout.fillHeight: true
TextArea { id: callResult; Layout.fillWidth: true; text: logic.callResult; readOnly: true } TextArea { id: callResult; Layout.fillWidth: true; text: logic.callResult; readOnly: true }
} }
RowLayout { RowLayout {
Layout.bottomMargin: 20
Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
transformOrigin: Item.Bottom
Label { text: "data2" } Label { text: "data2" }
TextField { id: txtData; Layout.fillWidth: true; text: "" } TextField { id: txtData; Layout.fillWidth: true; text: "" }
Button { Button {
@ -43,4 +141,22 @@ ApplicationWindow {
} }
Item {
}
Item {
}
}
}
} }
/*##^##
Designer {
D{i:4;anchors_height:40;anchors_width:40}D{i:6;anchors_height:40;anchors_width:40}
}
##^##*/

BIN
message.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

BIN
profile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

BIN
wallet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B