当前位置:   article > 正文

QML---Canvas两点画线,有路径_qml画线

qml画线

最近的软件需求做一个画线测量工具,发现QML只有Map的测距工具,无奈自己动手实现。
话不多说,先上图给大家看看。
画线实现
非常简单的代码,但是看不到有人分享,难道大家都藏着吗?所以分享出来给大家参考,有需求的话自己再添加吧。下面上代码。

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")
    property real clickNum
    property real startX
    property real startY
    property real stopX
    property real stopY

    Canvas{
        id : canvas

        anchors.fill: parent



        onPaint: {
            var ctx = getContext("2d")

            ctx.lineWidth = 5
            ctx.strokeStyle = "black";//轮廓颜色
            ctx.fillStyle = "black";//填充颜色

            ctx.beginPath()
            ctx.clearRect(0,0,canvas.width,canvas.height)
            ctx.stroke()

            ctx.beginPath()
            ctx.moveTo(startX,startY)
            ctx.lineTo(stopX,stopY)

            ctx.stroke()
        }

        MouseArea{
            id:area;
            anchors.fill: parent;
            acceptedButtons: Qt.LeftButton | Qt.RightButton
            hoverEnabled: true
            onClicked:   {
                if(mouse.button === Qt.LeftButton)
                {
                    if(clickNum === 0)
                    {
                        startX = mouseX
                        startY = mouseY

                        clickNum++;
                    }
                    else{

                        stopX = mouseX
                        stopY = mouseY
                        clickNum = 0
                        canvas.requestPaint()
                    }
                }

            }
            onPositionChanged: {
                if(clickNum === 1)
                {
                    stopX = mouseX
                    stopY = mouseY
                    canvas.requestPaint()
                }
            }
        }
    }
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/117494
推荐阅读
相关标签
  

闽ICP备14008679号