aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickpath.cpp
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@nokia.com>2012-05-18 15:19:55 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-24 15:41:16 +0200
commit6112c0f57177ee813271da54200a2d9f3ef20238 (patch)
treeb0cb10f46fb8c6b2b13516ab8e0e97c675b506a3 /src/quick/util/qquickpath.cpp
parentb13827d77e9a3d64a728036b3804638da62bbe40 (diff)
Doc: Sanitized QML types
-modified \brief -checked QML modules -added qml directory to the qdocconf file -added particles directory to the qdocconf file Change-Id: I589e32d3106cda37c7fa4d55a941afd9876fc2b2 Reviewed-by: Geir Vattekar <geir.vattekar@nokia.com>
Diffstat (limited to 'src/quick/util/qquickpath.cpp')
-rw-r--r--src/quick/util/qquickpath.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/quick/util/qquickpath.cpp b/src/quick/util/qquickpath.cpp
index c4c5bf6dfe..32dd9cca88 100644
--- a/src/quick/util/qquickpath.cpp
+++ b/src/quick/util/qquickpath.cpp
@@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE
\qmlclass PathElement QQuickPathElement
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief PathElement is the base path type.
+ \brief PathElement is the base path type
This type is the base for all path types. It cannot
be instantiated.
@@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE
\qmlclass Path QQuickPath
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief A Path object defines a path for use by \l PathView.
+ \brief Defines a path for use by \l PathView
A Path is composed of one or more path segments - PathLine, PathQuad,
PathCubic, PathArc, PathCurve, PathSvg.
@@ -806,7 +806,7 @@ bool QQuickCurve::hasRelativeY()
\qmlclass PathAttribute QQuickPathAttribute
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathAttribute allows setting an attribute at a given position in a Path.
+ \brief Specifies how to set an attribute at a given position in a Path
The PathAttribute object allows attributes consisting of a name and
a value to be specified for various points along a path. The
@@ -922,7 +922,7 @@ void QQuickPathAttribute::setValue(qreal value)
\qmlclass PathLine QQuickPathLine
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathLine defines a straight line.
+ \brief Defines a straight line
The example below creates a path consisting of a straight line from
0,100 to 200,100:
@@ -980,7 +980,7 @@ void QQuickPathLine::addToPath(QPainterPath &path, const QQuickPathData &data)
\qmlclass PathQuad QQuickPathQuad
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathQuad defines a quadratic Bezier curve with a control point.
+ \brief Defines a quadratic Bezier curve with a control point
The following QML produces the path shown below:
\table
@@ -1131,7 +1131,7 @@ void QQuickPathQuad::addToPath(QPainterPath &path, const QQuickPathData &data)
\qmlclass PathCubic QQuickPathCubic
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathCubic defines a cubic Bezier curve with two control points.
+ \brief Defines a cubic Bezier curve with two control points
The following QML produces the path shown below:
\table
@@ -1354,7 +1354,7 @@ void QQuickPathCubic::addToPath(QPainterPath &path, const QQuickPathData &data)
\qmlclass PathCurve QQuickPathCurve
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathCurve defines a point on a Catmull-Rom curve.
+ \brief Defines a point on a Catmull-Rom curve
PathCurve provides an easy way to specify a curve passing directly through a set of points.
Typically multiple PathCurves are used in a series, as the following example demonstrates:
@@ -1499,7 +1499,7 @@ void QQuickPathCatmullRomCurve::addToPath(QPainterPath &path, const QQuickPathDa
\qmlclass PathArc QQuickPathArc
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathArc defines an arc with the given radius.
+ \brief Defines an arc with the given radius
PathArc provides a simple way of specifying an arc that ends at a given position
and uses the specified radius. It is modeled after the SVG elliptical arc command.
@@ -1669,7 +1669,7 @@ void QQuickPathArc::addToPath(QPainterPath &path, const QQuickPathData &data)
\qmlclass PathSvg QQuickPathSvg
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathSvg defines a path using an SVG path data string.
+ \brief Defines a path using an SVG path data string
The following QML produces the path shown below:
\table
@@ -1721,7 +1721,7 @@ void QQuickPathSvg::addToPath(QPainterPath &path, const QQuickPathData &)
\qmlclass PathPercent QQuickPathPercent
\inqmlmodule QtQuick 2
\ingroup qml-view-elements
- \brief The PathPercent manipulates the way a path is interpreted.
+ \brief Manipulates the way a path is interpreted
PathPercent allows you to manipulate the spacing between items on a
PathView's path. You can use it to bunch together items on part of