2013-02-14 14:00:31 +01:00
|
|
|
/*
|
2020-08-13 19:08:54 +00:00
|
|
|
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2013-02-14 14:00:31 +01:00
|
|
|
|
|
|
|
import QtQuick 2.0
|
2016-08-03 23:01:07 +02:00
|
|
|
|
|
|
|
import QtQuick.Controls 1.0 as QtControls
|
|
|
|
|
|
|
|
// for "units"
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
2013-02-14 14:00:31 +01:00
|
|
|
|
2013-03-07 15:40:49 +01:00
|
|
|
Column {
|
2013-02-14 14:00:31 +01:00
|
|
|
id: root
|
2013-03-07 15:40:49 +01:00
|
|
|
property alias cfg_Speed: slider.value
|
2013-03-01 20:05:04 +01:00
|
|
|
|
2013-03-07 15:40:49 +01:00
|
|
|
Row {
|
2021-03-05 12:22:42 -07:00
|
|
|
spacing: PlasmaCore.Units.largeSpacing / 2
|
2016-08-03 23:01:07 +02:00
|
|
|
|
|
|
|
QtControls.Label {
|
2021-03-05 12:22:42 -07:00
|
|
|
width: formAlignment - PlasmaCore.Units.largeSpacing
|
2016-08-03 23:01:07 +02:00
|
|
|
horizontalAlignment: Text.AlignRight
|
2013-03-07 15:40:49 +01:00
|
|
|
text: "Speed:"
|
|
|
|
}
|
2016-08-03 23:01:07 +02:00
|
|
|
QtControls.Slider {
|
2013-03-07 15:40:49 +01:00
|
|
|
id: slider
|
|
|
|
minimumValue: 20
|
|
|
|
maximumValue: 150
|
|
|
|
}
|
2013-03-01 20:05:04 +01:00
|
|
|
}
|
2016-08-03 23:01:07 +02:00
|
|
|
}
|