- Fixes to wallet - Open or create wallet on startup - Add support for importing keys - Show user what level of ownership they have over accounts
23 lines
585 B
QML
23 lines
585 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls.Private 1.0
|
|
|
|
// TooltipArea.qml
|
|
// This file contains private Qt Quick modules that might change in future versions of Qt
|
|
// Tested on: Qt 5.4.1
|
|
|
|
MouseArea {
|
|
id: _root
|
|
property string text: ""
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: _root.enabled
|
|
|
|
onExited: Tooltip.hideText()
|
|
onCanceled: Tooltip.hideText()
|
|
|
|
Timer {
|
|
interval: 1000
|
|
running: _root.enabled && _root.containsMouse && _root.text.length
|
|
onTriggered: Tooltip.showText(_root, Qt.point(_root.mouseX, _root.mouseY), _root.text)
|
|
}
|
|
}
|