forked from rogii-com/graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphLabel.qml
47 lines (32 loc) · 912 Bytes
/
GraphLabel.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
import QtQuick.Window 2.2
Text {
id: root
property TextMetrics textMetrics: null
font: textMetrics.font
property alias dragIndicatorColor: dragIndicator.color
property alias dragIndicatorOpacity: dragIndicator.opacity
property alias cursorShape: mouseArea.cursorShape
Rectangle {
id: dragIndicator
anchors.top: parent.top
anchors.bottom: parent.bottom
width: parent.width
color: "red"
opacity: 0.3
Drag.active: mouseArea.drag.active
Drag.hotSpot.x: width / 2
Drag.hotSpot.y: height / 2
visible: Drag.active
}
MouseArea {
id: mouseArea
anchors.fill: parent
cursorShape: Qt.SplitHCursor
drag.target: dragIndicator
drag.smoothed: false
drag.threshold: 0
}
}