mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-14 04:16:33 +02:00
settings: added daemon console
This commit is contained in:
parent
b53ef00b36
commit
14a5bd5dcc
@ -308,17 +308,57 @@ Rectangle {
|
|||||||
daemonManager.stop();
|
daemonManager.stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StandardButton {
|
||||||
|
visible: true
|
||||||
|
// enabled: appWindow.daemonRunning
|
||||||
|
id: daemonConsolePopupButton
|
||||||
|
width: 110
|
||||||
|
text: qsTr("Show concole") + translationManager.emptyString
|
||||||
|
shadowReleasedColor: "#FF4304"
|
||||||
|
shadowPressedColor: "#B32D00"
|
||||||
|
releasedColor: "#FF6C3C"
|
||||||
|
pressedColor: "#FF4304"
|
||||||
|
onClicked: {
|
||||||
|
daemonConsolePopup.open();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Daemon console
|
||||||
|
StandardDialog {
|
||||||
|
id: daemonConsolePopup
|
||||||
|
height:800
|
||||||
|
width:800
|
||||||
|
cancelVisible: false
|
||||||
|
title: qsTr("Daemon console")
|
||||||
|
onAccepted: {
|
||||||
|
close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// fires on every page load
|
||||||
function onPageCompleted() {
|
function onPageCompleted() {
|
||||||
console.log("Settings page loaded");
|
console.log("Settings page loaded");
|
||||||
initSettings();
|
initSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fires only once
|
||||||
|
Component.onCompleted: {
|
||||||
|
daemonManager.daemonConsoleUpdated.connect(onDaemonConsoleUpdated)
|
||||||
|
}
|
||||||
|
|
||||||
|
function onDaemonConsoleUpdated(message){
|
||||||
|
// Update daemon console
|
||||||
|
daemonConsolePopup.textArea.append(message)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user