Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
673 B
QML
Raw Normal View History

2013-02-14 14:00:31 +01: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
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
Column {
2013-02-14 14:00:31 +01:00
id: root
property alias cfg_Speed: slider.value
2013-03-01 20:05:04 +01:00
Row {
spacing: PlasmaCore.Units.largeSpacing / 2
QtControls.Label {
width: formAlignment - PlasmaCore.Units.largeSpacing
horizontalAlignment: Text.AlignRight
text: "Speed:"
}
QtControls.Slider {
id: slider
minimumValue: 20
maximumValue: 150
}
2013-03-01 20:05:04 +01:00
}
}