2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2020-06-25 11:34:30 +00:00
|
|
|
|
2020-08-27 15:36:45 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
2020-06-25 11:34:30 +00:00
|
|
|
|
|
|
|
ControlContainer {
|
|
|
|
id: container
|
|
|
|
title: "Dials"
|
|
|
|
|
|
|
|
Row {
|
|
|
|
spacing: container.rowSpacing
|
|
|
|
|
|
|
|
Dial {
|
|
|
|
width: 50
|
|
|
|
height: 50
|
|
|
|
from: 0
|
|
|
|
to: 10
|
|
|
|
value: 5
|
|
|
|
}
|
|
|
|
|
|
|
|
Dial {
|
|
|
|
width: 50
|
|
|
|
height: 50
|
|
|
|
from: 0
|
|
|
|
to: 10
|
|
|
|
value: 5
|
|
|
|
stepSize: 1
|
|
|
|
property int qqc2_style_tickPosition: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|