Files
pallectrum/electrum/gui/qml/components/wizard/WizardComponent.qml
2022-11-14 12:19:56 +01:00

28 lines
451 B
QML

import QtQuick 2.0
Item {
signal next
signal prev
signal accept
property var wizard_data : ({})
property bool valid
property bool last: false
property bool ready: false
property string title: ''
onAccept: {
apply()
}
function apply() { }
function checkIsLast() {
apply()
last = wizard.wiz.isLast(wizard_data)
}
Component.onCompleted: {
checkIsLast()
}
}