aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickslider.cpp
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-04-21 16:56:59 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-04-21 18:08:46 +0000
commit523542d5241392ac258b02271f20c0be310cd1e5 (patch)
treef856d27d7c569fa2ee129116af032dc7a04a18b1 /src/quicktemplates2/qquickslider.cpp
parent2298df331b7d5922e480533d65e4d5d7861b2be9 (diff)
Doc: rename Qt.labs.controls 1.0 to QtQuick.Controls 2.0
Change-Id: Id6c476424fa359d222f027584278346fc0984069 Task-number: QTBUG-52549 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/quicktemplates2/qquickslider.cpp')
-rw-r--r--src/quicktemplates2/qquickslider.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/quicktemplates2/qquickslider.cpp b/src/quicktemplates2/qquickslider.cpp
index 9d3fda5b..b9e81b63 100644
--- a/src/quicktemplates2/qquickslider.cpp
+++ b/src/quicktemplates2/qquickslider.cpp
@@ -45,7 +45,7 @@ QT_BEGIN_NAMESPACE
\qmltype Slider
\inherits Control
\instantiates QQuickSlider
- \inqmlmodule Qt.labs.controls
+ \inqmlmodule QtQuick.Controls
\ingroup qtquickcontrols2-input
\brief Selects a value by sliding a handle along a track.
@@ -170,7 +170,7 @@ QQuickSlider::QQuickSlider(QQuickItem *parent) :
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::from
+ \qmlproperty real QtQuick.Controls::Slider::from
This property holds the starting value for the range. The default value is \c 0.0.
@@ -197,7 +197,7 @@ void QQuickSlider::setFrom(qreal from)
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::to
+ \qmlproperty real QtQuick.Controls::Slider::to
This property holds the end value for the range. The default value is \c 1.0.
@@ -224,7 +224,7 @@ void QQuickSlider::setTo(qreal to)
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::value
+ \qmlproperty real QtQuick.Controls::Slider::value
This property holds the value in the range \c from - \c to. The default value is \c 0.0.
@@ -255,7 +255,7 @@ void QQuickSlider::setValue(qreal value)
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::position
+ \qmlproperty real QtQuick.Controls::Slider::position
\readonly
This property holds the logical position of the handle.
@@ -274,7 +274,7 @@ qreal QQuickSlider::position() const
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::visualPosition
+ \qmlproperty real QtQuick.Controls::Slider::visualPosition
\readonly
This property holds the visual position of the handle.
@@ -295,7 +295,7 @@ qreal QQuickSlider::visualPosition() const
}
/*!
- \qmlproperty real Qt.labs.controls::Slider::stepSize
+ \qmlproperty real QtQuick.Controls::Slider::stepSize
This property holds the step size. The default value is \c 0.0.
@@ -318,7 +318,7 @@ void QQuickSlider::setStepSize(qreal step)
}
/*!
- \qmlproperty enumeration Qt.labs.controls::Slider::snapMode
+ \qmlproperty enumeration QtQuick.Controls::Slider::snapMode
This property holds the snap mode.
@@ -346,7 +346,7 @@ void QQuickSlider::setSnapMode(SnapMode mode)
}
/*!
- \qmlproperty bool Qt.labs.controls::Slider::pressed
+ \qmlproperty bool QtQuick.Controls::Slider::pressed
This property holds whether the slider is pressed.
*/
@@ -368,7 +368,7 @@ void QQuickSlider::setPressed(bool pressed)
}
/*!
- \qmlproperty enumeration Qt.labs.controls::Slider::orientation
+ \qmlproperty enumeration QtQuick.Controls::Slider::orientation
This property holds the orientation.
@@ -393,7 +393,7 @@ void QQuickSlider::setOrientation(Qt::Orientation orientation)
}
/*!
- \qmlproperty Item Qt.labs.controls::Slider::handle
+ \qmlproperty Item QtQuick.Controls::Slider::handle
This property holds the handle item.
@@ -419,7 +419,7 @@ void QQuickSlider::setHandle(QQuickItem *handle)
}
/*!
- \qmlmethod void Qt.labs.controls::Slider::increase()
+ \qmlmethod void QtQuick.Controls::Slider::increase()
Increases the value by \l stepSize or \c 0.1 if stepSize is not defined.
@@ -433,7 +433,7 @@ void QQuickSlider::increase()
}
/*!
- \qmlmethod void Qt.labs.controls::Slider::decrease()
+ \qmlmethod void QtQuick.Controls::Slider::decrease()
Decreases the value by \l stepSize or \c 0.1 if stepSize is not defined.