2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2021-11-23 18:00:29 +00:00
|
|
|
|
|
|
|
pragma Strict
|
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Shapes 1.0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
Row {
|
|
|
|
Slider {
|
|
|
|
id: widthSlider
|
|
|
|
}
|
|
|
|
|
|
|
|
property ShapePath linePath: ShapePath {
|
|
|
|
id: lineShapePath
|
|
|
|
strokeWidth: widthSlider.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|