Migration of QtMvvm from github
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
545 B

7 years ago
import QtQuick 2.10
import QtQuick.Controls 2.3
import QtQuick.Controls.Material 2.3
7 years ago
import de.skycoder42.QtMvvm.Quick 1.0
7 years ago
ToolButton {
id: _toolButton
7 years ago
property string toolTip: _toolButton.text
7 years ago
7 years ago
display: AbstractButton.IconOnly
7 years ago
7 years ago
implicitHeight: 48
implicitWidth: 48
icon.width: 24
icon.height: 24
7 years ago
ToolTip {
id: _backToolTip
7 years ago
text: _toolButton.toolTip
7 years ago
}
onPressAndHold: {
7 years ago
QuickPresenter.hapticLongPress();
7 years ago
_backToolTip.visible = true;
}
onCanceled: _backToolTip.visible = false
onReleased: _backToolTip.visible = false
}