From 18290a4a404f14a0401d2690efb22e7ee3d3fd7c Mon Sep 17 00:00:00 2001 From: Giorgos Tsiapaliwkas Date: Wed, 2 Nov 2011 03:33:07 +0200 Subject: [PATCH] Add documentation for the Slider.qml --- .../plasmacomponents/qml/Slider.qml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/declarativeimports/plasmacomponents/qml/Slider.qml b/declarativeimports/plasmacomponents/qml/Slider.qml index 1458dc6ec..c51b0c561 100644 --- a/declarativeimports/plasmacomponents/qml/Slider.qml +++ b/declarativeimports/plasmacomponents/qml/Slider.qml @@ -17,6 +17,48 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +/**Documentanted API +Inherits: + Item + +Imports: + QtQuick 1.0 + org.kde.plasma.core + +Description: + A simple slider. + +Properties: + alias stepSize: range.stepSize + Sets the step with which the slider will move. + + alias minimumValue: + TODO + alias maximumValue: + TODO + alias value: + TODO + + int orientation: + Sets the orientation for the slider. + + alias pressed: + If it is true then the slider has been pressed. + + bool valueIndicatorVisible: + + string valueIndicatorText: + + bool animated: + Sets if the slider will animate or not. + + alias inverted: + + bool updateValueWhileDragging: + + real handleSize: +**/ + import QtQuick 1.0 import org.kde.plasma.core 0.1 as PlasmaCore