mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 06:01:11 +00:00
Consolidate wallet account decoding and portfolio handling around the shared Rust IDL decoder. Simplify AMM wallet integration, remove obsolete caches and network plumbing, and cover account selection and live flows.
46 lines
966 B
QML
46 lines
966 B
QML
import QtQuick
|
|
|
|
WalletIconButton {
|
|
id: root
|
|
|
|
signal copyRequested
|
|
|
|
property string copyText: ""
|
|
property string copyLabel: qsTr("Copy")
|
|
property bool copied: false
|
|
|
|
accessibleName: root.copied ? qsTr("Copied") : root.copyLabel
|
|
iconSource: root.copied
|
|
? Qt.resolvedUrl("icons/checkmark.svg")
|
|
: Qt.resolvedUrl("icons/copy.svg")
|
|
|
|
Timer {
|
|
id: resetTimer
|
|
interval: 1500
|
|
onTriggered: root.copied = false
|
|
}
|
|
|
|
TextEdit {
|
|
id: clipboardProxy
|
|
|
|
visible: false
|
|
}
|
|
|
|
function copyToClipboard() {
|
|
if (root.copyText.length === 0)
|
|
return
|
|
clipboardProxy.text = root.copyText
|
|
clipboardProxy.selectAll()
|
|
clipboardProxy.copy()
|
|
clipboardProxy.deselect()
|
|
clipboardProxy.text = ""
|
|
}
|
|
|
|
onClicked: {
|
|
root.copyToClipboard()
|
|
root.copyRequested()
|
|
root.copied = true
|
|
resetTimer.restart()
|
|
}
|
|
}
|