aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/qquickdial.cpp
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-30 17:47:36 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-01 09:03:42 +0000
commit3f2ac678971694fe6144a4e15197aff2ca38639b (patch)
tree06440cbf63932fb008f3aab29835b07d0310bada /src/templates/qquickdial.cpp
parentb948c83255239a6fe49fca58a98f90e796ce9047 (diff)
Rename QtQuick.Controls 2.0 to Qt.labs.controls 1.0
Change-Id: I142622dd85e95ef70b11132e77ccf48701f2cabc Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/templates/qquickdial.cpp')
-rw-r--r--src/templates/qquickdial.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/templates/qquickdial.cpp b/src/templates/qquickdial.cpp
index c1c0cc20..f2f54a50 100644
--- a/src/templates/qquickdial.cpp
+++ b/src/templates/qquickdial.cpp
@@ -46,7 +46,7 @@ QT_BEGIN_NAMESPACE
\qmltype Dial
\inherits Control
\instantiates QQuickDial
- \inqmlmodule QtQuick.Controls
+ \inqmlmodule Qt.labs.controls
\ingroup sliders
\brief A circular dial that is rotated to set a value.
@@ -168,7 +168,7 @@ QQuickDial::QQuickDial(QQuickItem *parent) :
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::from
+ \qmlproperty real Qt.labs.controls::Dial::from
This property holds the starting value for the range. The default value is \c 0.0.
@@ -194,7 +194,7 @@ void QQuickDial::setFrom(qreal from)
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::to
+ \qmlproperty real Qt.labs.controls::Dial::to
This property holds the end value for the range. The default value is
\c 1.0.
@@ -221,7 +221,7 @@ void QQuickDial::setTo(qreal to)
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::value
+ \qmlproperty real Qt.labs.controls::Dial::value
This property holds the value in the range \c from - \c to. The default
value is \c 0.0.
@@ -252,7 +252,7 @@ void QQuickDial::setValue(qreal value)
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::position
+ \qmlproperty real Qt.labs.controls::Dial::position
This property holds the logical position of the handle.
@@ -270,7 +270,7 @@ qreal QQuickDial::position() const
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::angle \readonly
+ \qmlproperty real Qt.labs.controls::Dial::angle \readonly
This property holds the angle of the handle.
@@ -286,7 +286,7 @@ qreal QQuickDial::angle() const
}
/*!
- \qmlproperty real QtQuick.Controls::Dial::stepSize
+ \qmlproperty real Qt.labs.controls::Dial::stepSize
This property holds the step size. The default value is \c 0.0.
@@ -308,7 +308,7 @@ void QQuickDial::setStepSize(qreal step)
}
/*!
- \qmlproperty enumeration QtQuick.Controls::Dial::snapMode
+ \qmlproperty enumeration Qt.labs.controls::Dial::snapMode
This property holds the snap mode.
@@ -340,7 +340,7 @@ void QQuickDial::setSnapMode(SnapMode mode)
}
/*!
- \qmlproperty bool QtQuick.Controls::Dial::pressed
+ \qmlproperty bool Qt.labs.controls::Dial::pressed
This property holds whether the dial is pressed.
@@ -374,7 +374,7 @@ void QQuickDial::setPressed(bool pressed)
}
/*!
- \qmlmethod void QtQuick.Controls::Dial::increase()
+ \qmlmethod void Qt.labs.controls::Dial::increase()
Increases the value by \l stepSize, or \c 0.1 if stepSize is not defined.
@@ -388,7 +388,7 @@ void QQuickDial::increase()
}
/*!
- \qmlmethod void QtQuick.Controls::Dial::decrease()
+ \qmlmethod void Qt.labs.controls::Dial::decrease()
Decreases the value by \l stepSize, or \c 0.1 if stepSize is not defined.
@@ -402,7 +402,7 @@ void QQuickDial::decrease()
}
/*!
- \qmlproperty component QtQuick.Controls::Dial::handle
+ \qmlproperty component Qt.labs.controls::Dial::handle
This property holds the handle of the dial.