117 lines
2.9 KiB
QML
117 lines
2.9 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
|
|
Item {
|
|
id: advancedContainer
|
|
width: 200
|
|
height: 200
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
|
|
StyledText {
|
|
id: title
|
|
text: qsTr("Advanced settings")
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 24
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 24
|
|
font.weight: Font.Bold
|
|
font.pixelSize: 20
|
|
}
|
|
|
|
RowLayout {
|
|
// TODO move this to a new panel once we have the appearance panel
|
|
property bool isDarkTheme: {
|
|
const isDarkTheme = profileModel.profile.appearance === 1
|
|
if (isDarkTheme) {
|
|
Style.changeTheme('dark')
|
|
} else {
|
|
Style.changeTheme('light')
|
|
}
|
|
return isDarkTheme
|
|
}
|
|
id: themeSetting
|
|
anchors.top: title.bottom
|
|
anchors.topMargin: 20
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 24
|
|
StyledText {
|
|
text: qsTr("Theme (Light - Dark)")
|
|
}
|
|
Switch {
|
|
checked: themeSetting.isDarkTheme
|
|
onCheckedChanged: function(value) {
|
|
profileModel.changeTheme(themeSetting.isDarkTheme ? 0 : 1)
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
id: walletTabSettings
|
|
anchors.top: themeSetting.bottom
|
|
anchors.topMargin: 20
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 24
|
|
StyledText {
|
|
text: qsTr("Wallet Tab")
|
|
}
|
|
Switch {
|
|
checked: walletBtn.enabled
|
|
onCheckedChanged: function(value) {
|
|
walletBtn.enabled = this.checked
|
|
}
|
|
}
|
|
StyledText {
|
|
text: qsTr("NOT RECOMMENDED - Use at your own risk")
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
id: browserTabSettings
|
|
anchors.top: walletTabSettings.bottom
|
|
anchors.topMargin: 20
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 24
|
|
StyledText {
|
|
text: qsTr("Browser Tab")
|
|
}
|
|
Switch {
|
|
checked: browserBtn.enabled
|
|
onCheckedChanged: function(value) {
|
|
browserBtn.enabled = this.checked
|
|
}
|
|
}
|
|
StyledText {
|
|
text: qsTr("experimental (web3 not supported yet)")
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
anchors.top: browserTabSettings.bottom
|
|
anchors.topMargin: 20
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 24
|
|
StyledText {
|
|
text: qsTr("Node Management Tab")
|
|
}
|
|
Switch {
|
|
checked: nodeBtn.enabled
|
|
onCheckedChanged: function(value) {
|
|
nodeBtn.enabled = this.checked
|
|
}
|
|
}
|
|
StyledText {
|
|
text: qsTr("under development")
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;height:400;width:700}
|
|
}
|
|
##^##*/
|