NTooltip: wip
This commit is contained in:
parent
4a4564fe5f
commit
3790508674
3 changed files with 159 additions and 3 deletions
|
|
@ -31,18 +31,37 @@ PanelWindow {
|
||||||
layer.enabled: true
|
layer.enabled: true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Testing widgets
|
||||||
RowLayout {
|
RowLayout {
|
||||||
// Just testing
|
|
||||||
NToggle {
|
NToggle {
|
||||||
label: "Label"
|
label: "Label"
|
||||||
description: "Description"
|
description: "Description"
|
||||||
|
onToggled: function(value: bool) {
|
||||||
|
console.log("NToggle: " + value)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NIconButton {
|
NIconButton {
|
||||||
|
id: myIconButton
|
||||||
icon: "refresh"
|
icon: "refresh"
|
||||||
|
onEntered: function() {
|
||||||
|
myTooltip.tooltipVisible = true;
|
||||||
|
}
|
||||||
|
onExited: function() {
|
||||||
|
myTooltip.tooltipVisible = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
NTooltip {
|
||||||
|
id: myTooltip
|
||||||
|
targetItem: myIconButton
|
||||||
|
positionAbove: false
|
||||||
|
text: "Hello world"
|
||||||
}
|
}
|
||||||
|
|
||||||
NSlider {}
|
NSlider {}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@ Rectangle {
|
||||||
property string icon
|
property string icon
|
||||||
property bool enabled: true
|
property bool enabled: true
|
||||||
property bool hovering: false
|
property bool hovering: false
|
||||||
|
property var onEntered: function () {}
|
||||||
|
property var onExited: function () {}
|
||||||
|
|
||||||
implicitWidth: size
|
implicitWidth: size
|
||||||
implicitHeight: size
|
implicitHeight: size
|
||||||
|
|
@ -35,7 +37,13 @@ Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
cursorShape: Qt.PointingHandCursor
|
cursorShape: Qt.PointingHandCursor
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
onEntered: hovering = true
|
onEntered: {
|
||||||
onExited: hovering = false
|
hovering = true
|
||||||
|
root.onEntered()
|
||||||
|
}
|
||||||
|
onExited: {
|
||||||
|
hovering = false
|
||||||
|
root.onExited()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
129
Widgets/NTooltip.qml
Normal file
129
Widgets/NTooltip.qml
Normal file
|
|
@ -0,0 +1,129 @@
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Window 2.15
|
||||||
|
import qs.Services
|
||||||
|
import qs.Theme
|
||||||
|
|
||||||
|
Window {
|
||||||
|
id: tooltipWindow
|
||||||
|
|
||||||
|
readonly property real scaling: Scaling.scale(screen)
|
||||||
|
property string text: ""
|
||||||
|
property bool tooltipVisible: false
|
||||||
|
property Item targetItem: null
|
||||||
|
property int delay: 300
|
||||||
|
property bool positionAbove: true
|
||||||
|
|
||||||
|
flags: Qt.ToolTip | Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint
|
||||||
|
color: "transparent"
|
||||||
|
visible: false
|
||||||
|
|
||||||
|
property var _timerObj: null
|
||||||
|
|
||||||
|
onTooltipVisibleChanged: {
|
||||||
|
if (tooltipVisible) {
|
||||||
|
if (delay > 0) {
|
||||||
|
if (_timerObj) {
|
||||||
|
_timerObj.destroy()
|
||||||
|
_timerObj = null
|
||||||
|
}
|
||||||
|
_timerObj = Qt.createQmlObject(
|
||||||
|
'import QtQuick 2.0; Timer { interval: ' + delay
|
||||||
|
+ '; running: true; repeat: false; onTriggered: tooltipWindow._showNow() }',
|
||||||
|
tooltipWindow)
|
||||||
|
} else {
|
||||||
|
_showNow()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_hideNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function _showNow() {
|
||||||
|
|
||||||
|
width = Math.max(50 * scaling, tooltipText.implicitWidth + 24 * scaling)
|
||||||
|
height = Math.max(50 * scaling, tooltipText.implicitHeight + 16 * scaling)
|
||||||
|
|
||||||
|
if (!targetItem)
|
||||||
|
return
|
||||||
|
|
||||||
|
if (positionAbove) {
|
||||||
|
// Position tooltip above the target item
|
||||||
|
var pos = targetItem.mapToGlobal(0, 0)
|
||||||
|
x = pos.x - width / 2 + targetItem.width / 2
|
||||||
|
y = pos.y - height - 12 // 12 px margin above
|
||||||
|
} else {
|
||||||
|
// Position tooltip below the target item
|
||||||
|
var pos = targetItem.mapToGlobal(0, targetItem.height)
|
||||||
|
x = pos.x - width / 2 + targetItem.width / 2
|
||||||
|
y = pos.y + 12 // 12 px margin below
|
||||||
|
}
|
||||||
|
visible = true
|
||||||
|
}
|
||||||
|
|
||||||
|
function _hideNow() {
|
||||||
|
visible = false
|
||||||
|
if (_timerObj) {
|
||||||
|
_timerObj.destroy()
|
||||||
|
_timerObj = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: tooltipWindow.targetItem
|
||||||
|
function onXChanged() {
|
||||||
|
if (tooltipWindow.visible)
|
||||||
|
tooltipWindow._showNow()
|
||||||
|
}
|
||||||
|
function onYChanged() {
|
||||||
|
if (tooltipWindow.visible)
|
||||||
|
tooltipWindow._showNow()
|
||||||
|
}
|
||||||
|
function onWidthChanged() {
|
||||||
|
if (tooltipWindow.visible)
|
||||||
|
tooltipWindow._showNow()
|
||||||
|
}
|
||||||
|
function onHeightChanged() {
|
||||||
|
if (tooltipWindow.visible)
|
||||||
|
tooltipWindow._showNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
radius: 18
|
||||||
|
color: Theme.backgroundTertiary || "#222"
|
||||||
|
border.color: Theme.outline || "#444"
|
||||||
|
border.width: 1 * scaling
|
||||||
|
opacity: 0.97
|
||||||
|
z: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: tooltipText
|
||||||
|
text: tooltipWindow.text
|
||||||
|
color: Theme.textPrimary
|
||||||
|
font.family: Theme.fontFamily
|
||||||
|
font.pixelSize: Theme.fontSizeSmall * scaling
|
||||||
|
anchors.centerIn: parent
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
wrapMode: Text.Wrap
|
||||||
|
padding: 8
|
||||||
|
z: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: Qt.ArrowCursor
|
||||||
|
hoverEnabled: true
|
||||||
|
onExited: tooltipWindow.tooltipVisible = false
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
onTextChanged: {
|
||||||
|
width = Math.max(minimumWidth * scaling,
|
||||||
|
tooltipText.implicitWidth + 24 * scaling)
|
||||||
|
height = Math.max(minimumHeight * scaling,
|
||||||
|
tooltipText.implicitHeight + 16 * scaling)
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue