-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSliceCanvas.qml
108 lines (93 loc) · 2.95 KB
/
SliceCanvas.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import QtQuick 2.0
Canvas {
id: root
property real lastX: 0
property real lastY: 0
property color sliceColor: "blue"
property real manualFirstX: 0
property real manualFirstY: 0
property real manualLastX: 0
property real manualLastY: 0
property var oldImageData
function clear() {
var ctx = getContext("2d");
ctx.reset();
root.requestPaint()
}
function fillRect() {
var ctx = getContext("2d");
ctx.fillRect(0, 0, width, height)
root.requestPaint()
}
function eraseRect(x, y, width, height) {
var ctx = getContext("2d");
ctx.clearRect(x, y, width, height)
root.requestPaint()
}
function drawLine(x_start, y_start, x_end, y_end) {
var ctx = getContext("2d")
ctx.globalCompositeOperation="source-over";
ctx.lineWidth = 2
ctx.strokeStyle = root.sliceColor
ctx.beginPath()
ctx.moveTo(x_start, y_start)
ctx.lineTo(x_end, y_end)
ctx.stroke()
ctx.closePath()
root.requestPaint()
}
function restoreOldImageData() {
eraseRect(0, 0, sliceCanvas.width, sliceCanvas.height)
var ctx = getContext("2d")
ctx.putImageData(oldImageData, 0, 0, 0, 0, sliceCanvas.width, sliceCanvas.height)
}
function setOldImageData() {
var ctx = getContext("2d");
oldImageData = ctx.getImageData(0, 0, sliceCanvas.width, sliceCanvas.height)
}
onPaint: {
var ctx = getContext("2d")
ctx.beginPath()
if (pen.checked || armRemover.checked) {
ctx.globalCompositeOperation="source-over";
ctx.lineWidth = 2
ctx.strokeStyle = root.sliceColor
ctx.beginPath()
ctx.moveTo(lastX, lastY)
ctx.lineTo(area.mouseX, area.mouseY)
ctx.stroke()
}
else if (eraser.checked) {
ctx.globalCompositeOperation="destination-out";
ctx.arc(lastX,lastY,8,0,Math.PI*2,false);
ctx.fill();
}
ctx.closePath()
lastX = area.mouseX
lastY = area.mouseY
}
MouseArea {
id: area
anchors.fill: parent
property var ctx
onPressed: {
if (armRemover.checked) {
sliceCanvas.setOldImageData()
manualFirstX = mouseX
manualFirstY = mouseY
}
root.lastX = mouseX
root.lastY = mouseY
}
onPositionChanged: {
root.requestPaint()
}
onReleased: {
if (armRemover.checked) {
manualLastX = mouseX
manualLastY = mouseY
myProcessor.manualRemoveConnectedArms(manualFirstX, manualFirstY, manualLastX, manualLastY, sliceCanvas.width, sliceCanvas.height)
}
}
}
}