Warning, /sdk/selenium-webdriver-at-spi/autotests/value.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2023 Harald Sitter <sitter@kde.org>
0003 
0004 import QtQuick 2.15
0005 import QtQuick.Layouts 1.15
0006 import QtQuick.Controls 2.15 as QQC2
0007 
0008 QQC2.Slider {
0009     Accessible.name: "slider"
0010     from: 0
0011     to: 100
0012     width: 100
0013     height: 100
0014     value: 25
0015     onValueChanged: console.log(value)
0016     stepSize: 1
0017 }