66 lines
1.7 KiB
QML
66 lines
1.7 KiB
QML
/*
|
|
* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
|
|
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
import QtQuick 2.0
|
|
import QtQuick.Layouts 1.12
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
// Run with qmlscene to use qqc2-desktop-style
|
|
|
|
ComponentBase {
|
|
id: root
|
|
title: "Plasma Components 2 Slider"
|
|
contentItem: GridLayout {
|
|
columnSpacing: PlasmaCore.Units.largeSpacing
|
|
rowSpacing: PlasmaCore.Units.largeSpacing
|
|
columns: 2
|
|
|
|
PlasmaComponents.Label {
|
|
text: "Horizontal slider"
|
|
}
|
|
PlasmaComponents.Slider {
|
|
id: horizontalSlider
|
|
minimumValue: minTextField.text
|
|
maximumValue: maxTextField.text
|
|
stepSize: stepSizeTextField.text
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
text: "Vertical slider"
|
|
}
|
|
PlasmaComponents.Slider {
|
|
id: verticalSlider
|
|
minimumValue: minTextField.text
|
|
maximumValue: maxTextField.text
|
|
stepSize: stepSizeTextField.text
|
|
orientation: Qt.Vertical
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
text: "from: "
|
|
}
|
|
PlasmaComponents.TextField {
|
|
id: minTextField
|
|
text: "0"
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
text: "to: "
|
|
}
|
|
PlasmaComponents.TextField {
|
|
id: maxTextField
|
|
text: "100"
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
text: "stepSize: "
|
|
}
|
|
PlasmaComponents.TextField {
|
|
id: stepSizeTextField
|
|
text: "1"
|
|
}
|
|
}
|
|
}
|