aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/util')
-rw-r--r--src/quick/util/qquickanimation.cpp22
-rw-r--r--src/quick/util/qquickanimationcontroller.cpp2
-rw-r--r--src/quick/util/qquickbehavior.cpp2
-rw-r--r--src/quick/util/qquickfontloader.cpp2
-rw-r--r--src/quick/util/qquickfontmetrics.cpp2
-rw-r--r--src/quick/util/qquickpath.cpp24
-rw-r--r--src/quick/util/qquickpathinterpolator.cpp2
-rw-r--r--src/quick/util/qquickshortcut.cpp2
-rw-r--r--src/quick/util/qquicksmoothedanimation.cpp2
-rw-r--r--src/quick/util/qquickspringanimation.cpp2
-rw-r--r--src/quick/util/qquickstate.cpp2
-rw-r--r--src/quick/util/qquickstatechangescript.cpp2
-rw-r--r--src/quick/util/qquickstategroup.cpp2
-rw-r--r--src/quick/util/qquicksystempalette.cpp2
-rw-r--r--src/quick/util/qquicktextmetrics.cpp2
-rw-r--r--src/quick/util/qquicktransition.cpp2
-rw-r--r--src/quick/util/qquickvalidator.cpp6
17 files changed, 40 insertions, 40 deletions
diff --git a/src/quick/util/qquickanimation.cpp b/src/quick/util/qquickanimation.cpp
index a89f237499..9ee1a323e5 100644
--- a/src/quick/util/qquickanimation.cpp
+++ b/src/quick/util/qquickanimation.cpp
@@ -74,7 +74,7 @@ QT_BEGIN_NAMESPACE
\instantiates QQuickAbstractAnimation
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
- \brief Is the base of all QML animations
+ \brief Is the base of all QML animations.
The Animation type cannot be used directly in a QML file. It exists
to provide a set of common properties and methods, available across all the
@@ -669,7 +669,7 @@ QQuickAbstractAnimation::ThreadingModel QQuickAbstractAnimation::threadingModel(
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits Animation
- \brief Provides a pause for an animation
+ \brief Provides a pause for an animation.
When used in a SequentialAnimation, PauseAnimation is a step when
nothing happens, for a specified duration.
@@ -740,7 +740,7 @@ QAbstractAnimationJob* QQuickPauseAnimation::transition(QQuickStateActions &acti
\inqmlmodule QtQuick
\ingroup qtquick-animation-properties
\inherits PropertyAnimation
- \brief Animates changes in color values
+ \brief Animates changes in color values.
ColorAnimation is a specialized PropertyAnimation that defines an
animation to be applied when a color value changes.
@@ -898,7 +898,7 @@ void QActionAnimation::debugAnimation(QDebug d) const
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits Animation
- \brief Defines scripts to be run during an animation
+ \brief Defines scripts to be run during an animation.
ScriptAction can be used to run a script at a specific point in an animation.
@@ -1041,7 +1041,7 @@ QAbstractAnimationJob* QQuickScriptAction::transition(QQuickStateActions &action
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits Animation
- \brief Specifies immediate property changes during animation
+ \brief Specifies immediate property changes during animation.
PropertyAction is used to specify an immediate property change during an
animation. The property change is not animated.
@@ -1302,7 +1302,7 @@ QAbstractAnimationJob* QQuickPropertyAction::transition(QQuickStateActions &acti
\inqmlmodule QtQuick
\ingroup qtquick-animation-properties
\inherits PropertyAnimation
- \brief Animates changes in qreal-type values
+ \brief Animates changes in qreal-type values.
NumberAnimation is a specialized PropertyAnimation that defines an
animation to be applied when a numerical value changes.
@@ -1415,7 +1415,7 @@ void QQuickNumberAnimation::setTo(qreal t)
\inqmlmodule QtQuick
\ingroup qtquick-animation-properties
\inherits PropertyAnimation
- \brief Animates changes in QVector3d values
+ \brief Animates changes in QVector3d values.
Vector3dAnimation is a specialized PropertyAnimation that defines an
animation to be applied when a Vector3d value changes.
@@ -1492,7 +1492,7 @@ void QQuickVector3dAnimation::setTo(QVector3D t)
\inqmlmodule QtQuick
\ingroup qtquick-animation-properties
\inherits PropertyAnimation
- \brief Animates changes in rotation values
+ \brief Animates changes in rotation values.
RotationAnimation is a specialized PropertyAnimation that gives control
over the direction of rotation during an animation.
@@ -1734,7 +1734,7 @@ QQmlListProperty<QQuickAbstractAnimation> QQuickAnimationGroup::animations()
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits Animation
- \brief Allows animations to be run sequentially
+ \brief Allows animations to be run sequentially.
The SequentialAnimation and ParallelAnimation types allow multiple
animations to be run together. Animations defined in a SequentialAnimation
@@ -1828,7 +1828,7 @@ QAbstractAnimationJob* QQuickSequentialAnimation::transition(QQuickStateActions
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits Animation
- \brief Enables animations to be run in parallel
+ \brief Enables animations to be run in parallel.
The SequentialAnimation and ParallelAnimation types allow multiple
animations to be run together. Animations defined in a SequentialAnimation
@@ -1991,7 +1991,7 @@ void QQuickBulkValueAnimator::debugAnimation(QDebug d) const
\inqmlmodule QtQuick
\ingroup qtquick-animation-properties
\inherits Animation
- \brief Animates changes in property values
+ \brief Animates changes in property values.
PropertyAnimation provides a way to animate changes to a property's value.
diff --git a/src/quick/util/qquickanimationcontroller.cpp b/src/quick/util/qquickanimationcontroller.cpp
index 63373541a6..bfe96755c5 100644
--- a/src/quick/util/qquickanimationcontroller.cpp
+++ b/src/quick/util/qquickanimationcontroller.cpp
@@ -96,7 +96,7 @@ void QQuickAnimationControllerPrivate::animationCurrentTimeChanged(QAbstractAnim
\instantiates QQuickAnimationController
\inqmlmodule QtQuick
\ingroup qtquick-animation-control
- \brief Enables manual control of animations
+ \brief Enables manual control of animations.
Normally animations are driven by an internal timer, but the AnimationController
allows the given \a animation to be driven by a \a progress value explicitly.
diff --git a/src/quick/util/qquickbehavior.cpp b/src/quick/util/qquickbehavior.cpp
index 8a4ff6a779..d024c0099b 100644
--- a/src/quick/util/qquickbehavior.cpp
+++ b/src/quick/util/qquickbehavior.cpp
@@ -77,7 +77,7 @@ public:
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\ingroup qtquick-interceptors
- \brief Defines a default animation for a property change
+ \brief Defines a default animation for a property change.
A Behavior defines the default animation to be applied whenever a
particular property value changes.
diff --git a/src/quick/util/qquickfontloader.cpp b/src/quick/util/qquickfontloader.cpp
index 2da541304d..2de9768243 100644
--- a/src/quick/util/qquickfontloader.cpp
+++ b/src/quick/util/qquickfontloader.cpp
@@ -198,7 +198,7 @@ static void q_QFontLoaderFontsStaticReset()
\instantiates QQuickFontLoader
\inqmlmodule QtQuick
\ingroup qtquick-text-utility
- \brief Allows fonts to be loaded by name or URL
+ \brief Allows fonts to be loaded by name or URL.
The FontLoader type is used to load fonts by name or URL.
diff --git a/src/quick/util/qquickfontmetrics.cpp b/src/quick/util/qquickfontmetrics.cpp
index 8c44150486..f1278c366f 100644
--- a/src/quick/util/qquickfontmetrics.cpp
+++ b/src/quick/util/qquickfontmetrics.cpp
@@ -49,7 +49,7 @@ QT_BEGIN_NAMESPACE
\inqmlmodule QtQuick
\since 5.4
\ingroup qtquick-text-utility
- \brief Provides metrics for a given font
+ \brief Provides metrics for a given font.
FontMetrics calculates the size of characters and strings for a given font.
diff --git a/src/quick/util/qquickpath.cpp b/src/quick/util/qquickpath.cpp
index 56eafcd12a..53b72d1e58 100644
--- a/src/quick/util/qquickpath.cpp
+++ b/src/quick/util/qquickpath.cpp
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
\instantiates QQuickPathElement
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \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.
@@ -69,7 +69,7 @@ QT_BEGIN_NAMESPACE
\instantiates QQuickPath
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief Defines a path for use by \l PathView and \l Shape
+ \brief Defines a path for use by \l PathView and \l Shape.
A Path is composed of one or more path segments - PathLine, PathQuad,
PathCubic, PathArc, PathAngleArc, PathCurve, PathSvg.
@@ -998,7 +998,7 @@ bool QQuickCurve::hasRelativeY()
\instantiates QQuickPathAttribute
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief Specifies how to set 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
@@ -1115,7 +1115,7 @@ void QQuickPathAttribute::setValue(qreal value)
\instantiates QQuickPathLine
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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:
@@ -1174,7 +1174,7 @@ void QQuickPathLine::addToPath(QPainterPath &path, const QQuickPathData &data)
\instantiates QQuickPathMove
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief Moves the Path's position
+ \brief Moves the Path's position.
The example below creates a path consisting of two horizontal lines with
some empty space between them. All three segments have a width of 100:
@@ -1232,7 +1232,7 @@ void QQuickPathMove::addToPath(QPainterPath &path, const QQuickPathData &data)
\instantiates QQuickPathQuad
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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
@@ -1384,7 +1384,7 @@ void QQuickPathQuad::addToPath(QPainterPath &path, const QQuickPathData &data)
\instantiates QQuickPathCubic
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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
@@ -1608,7 +1608,7 @@ void QQuickPathCubic::addToPath(QPainterPath &path, const QQuickPathData &data)
\instantiates QQuickPathCatmullRomCurve
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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:
@@ -1754,7 +1754,7 @@ void QQuickPathCatmullRomCurve::addToPath(QPainterPath &path, const QQuickPathDa
\instantiates QQuickPathArc
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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.
@@ -1965,7 +1965,7 @@ void QQuickPathArc::addToPath(QPainterPath &path, const QQuickPathData &data)
\instantiates QQuickPathAngleArc
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief Defines an arc with the given radii and center
+ \brief Defines an arc with the given radii and center.
PathAngleArc provides a simple way of specifying an arc. While PathArc is designed
to work as part of a larger path (specifying start and end), PathAngleArc is designed
@@ -2138,7 +2138,7 @@ void QQuickPathAngleArc::addToPath(QPainterPath &path, const QQuickPathData &)
\instantiates QQuickPathSvg
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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
@@ -2197,7 +2197,7 @@ void QQuickPathSvg::addToPath(QPainterPath &path, const QQuickPathData &)
\instantiates QQuickPathPercent
\inqmlmodule QtQuick
\ingroup qtquick-animation-paths
- \brief 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
diff --git a/src/quick/util/qquickpathinterpolator.cpp b/src/quick/util/qquickpathinterpolator.cpp
index bb47ca0205..c27ca795e8 100644
--- a/src/quick/util/qquickpathinterpolator.cpp
+++ b/src/quick/util/qquickpathinterpolator.cpp
@@ -48,7 +48,7 @@ QT_BEGIN_NAMESPACE
\instantiates QQuickPathInterpolator
\inqmlmodule QtQuick
\ingroup qtquick-animation-control
- \brief Specifies how to manually animate along a path
+ \brief Specifies how to manually animate along a path.
PathInterpolator provides \c x, \c y, and \c angle information for a particular \c progress
along a path.
diff --git a/src/quick/util/qquickshortcut.cpp b/src/quick/util/qquickshortcut.cpp
index 78dc855326..730a14369e 100644
--- a/src/quick/util/qquickshortcut.cpp
+++ b/src/quick/util/qquickshortcut.cpp
@@ -51,7 +51,7 @@
\inqmlmodule QtQuick
\since 5.5
\ingroup qtquick-input
- \brief Provides keyboard shortcuts
+ \brief Provides keyboard shortcuts.
The Shortcut type provides a way of handling keyboard shortcuts. The shortcut can
be set to one of the \l{QKeySequence::StandardKey}{standard keyboard shortcuts},
diff --git a/src/quick/util/qquicksmoothedanimation.cpp b/src/quick/util/qquicksmoothedanimation.cpp
index 607f39768b..bae57172d1 100644
--- a/src/quick/util/qquicksmoothedanimation.cpp
+++ b/src/quick/util/qquicksmoothedanimation.cpp
@@ -324,7 +324,7 @@ void QSmoothedAnimation::debugAnimation(QDebug d) const
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
\inherits NumberAnimation
- \brief Allows a property to smoothly track a value
+ \brief Allows a property to smoothly track a value.
A SmoothedAnimation animates a property's value to a set target value
using an ease in/out quad easing curve. When the target value changes,
diff --git a/src/quick/util/qquickspringanimation.cpp b/src/quick/util/qquickspringanimation.cpp
index 4389d941fd..9012d20f9a 100644
--- a/src/quick/util/qquickspringanimation.cpp
+++ b/src/quick/util/qquickspringanimation.cpp
@@ -352,7 +352,7 @@ void QQuickSpringAnimationPrivate::updateMode()
\ingroup qtquick-transitions-animations
\inherits NumberAnimation
- \brief Allows a property to track a value in a spring-like motion
+ \brief Allows a property to track a value in a spring-like motion.
SpringAnimation mimics the oscillatory behavior of a spring, with the appropriate \l spring constant to
control the acceleration and the \l damping to control how quickly the effect dies away.
diff --git a/src/quick/util/qquickstate.cpp b/src/quick/util/qquickstate.cpp
index be8300f531..b953ad1c7f 100644
--- a/src/quick/util/qquickstate.cpp
+++ b/src/quick/util/qquickstate.cpp
@@ -121,7 +121,7 @@ QQuickStateOperation::QQuickStateOperation(QObjectPrivate &dd, QObject *parent)
\instantiates QQuickState
\inqmlmodule QtQuick
\ingroup qtquick-states
- \brief Defines configurations of objects and properties
+ \brief Defines configurations of objects and properties.
A \e state is a set of batched changes from the default configuration.
diff --git a/src/quick/util/qquickstatechangescript.cpp b/src/quick/util/qquickstatechangescript.cpp
index a70fa1a676..f971d7e551 100644
--- a/src/quick/util/qquickstatechangescript.cpp
+++ b/src/quick/util/qquickstatechangescript.cpp
@@ -69,7 +69,7 @@ public:
\instantiates QQuickStateChangeScript
\inqmlmodule QtQuick
\ingroup qtquick-states
- \brief Specifies how to run a script in a state
+ \brief Specifies how to run a script in a state.
A StateChangeScript is run upon entering a state. You can optionally use
ScriptAction to specify the point in the transition at which
diff --git a/src/quick/util/qquickstategroup.cpp b/src/quick/util/qquickstategroup.cpp
index 1b99baed9a..c852c16509 100644
--- a/src/quick/util/qquickstategroup.cpp
+++ b/src/quick/util/qquickstategroup.cpp
@@ -94,7 +94,7 @@ public:
\instantiates QQuickStateGroup
\inqmlmodule QtQuick
\ingroup qtquick-states
- \brief Provides built-in state support for non-Item types
+ \brief Provides built-in state support for non-Item types.
Item (and all derived types) provides built in support for states and transitions
via its \l{Item::state}{state}, \l{Item::states}{states} and \l{Item::transitions}{transitions} properties. StateGroup provides an easy way to
diff --git a/src/quick/util/qquicksystempalette.cpp b/src/quick/util/qquicksystempalette.cpp
index c5768a5d9f..413b87aa93 100644
--- a/src/quick/util/qquicksystempalette.cpp
+++ b/src/quick/util/qquicksystempalette.cpp
@@ -58,7 +58,7 @@ public:
\instantiates QQuickSystemPalette
\inqmlmodule QtQuick
\ingroup qtquick-visual-utility
- \brief Provides access to the Qt palettes
+ \brief Provides access to the Qt palettes.
The SystemPalette type provides access to the Qt application
palettes. This provides information about the standard colors used
diff --git a/src/quick/util/qquicktextmetrics.cpp b/src/quick/util/qquicktextmetrics.cpp
index 43945b0f5a..81088b5cd6 100644
--- a/src/quick/util/qquicktextmetrics.cpp
+++ b/src/quick/util/qquicktextmetrics.cpp
@@ -49,7 +49,7 @@ QT_BEGIN_NAMESPACE
\inqmlmodule QtQuick
\since 5.4
\ingroup qtquick-text-utility
- \brief Provides metrics for a given font and text
+ \brief Provides metrics for a given font and text.
TextMetrics calculates various properties of a given string of text for a
particular font.
diff --git a/src/quick/util/qquicktransition.cpp b/src/quick/util/qquicktransition.cpp
index fd6415dffb..c8699426f2 100644
--- a/src/quick/util/qquicktransition.cpp
+++ b/src/quick/util/qquicktransition.cpp
@@ -57,7 +57,7 @@ QT_BEGIN_NAMESPACE
\instantiates QQuickTransition
\inqmlmodule QtQuick
\ingroup qtquick-transitions-animations
- \brief Defines animated transitions that occur on state changes
+ \brief Defines animated transitions that occur on state changes.
A Transition defines the animations to be applied when a \l State change occurs.
diff --git a/src/quick/util/qquickvalidator.cpp b/src/quick/util/qquickvalidator.cpp
index c3ce149dcf..b2b773cd94 100644
--- a/src/quick/util/qquickvalidator.cpp
+++ b/src/quick/util/qquickvalidator.cpp
@@ -48,7 +48,7 @@ QT_BEGIN_NAMESPACE
\instantiates QIntValidator
\inqmlmodule QtQuick
\ingroup qtquick-text-utility
- \brief Defines a validator for integer values
+ \brief Defines a validator for integer values.
The IntValidator type provides a validator for integer values.
@@ -111,7 +111,7 @@ void QQuickIntValidator::resetLocaleName()
\instantiates QDoubleValidator
\inqmlmodule QtQuick
\ingroup qtquick-text-utility
- \brief Defines a validator for non-integer numbers
+ \brief Defines a validator for non-integer numbers.
The DoubleValidator type provides a validator for non-integer numbers.
@@ -205,7 +205,7 @@ void QQuickDoubleValidator::resetLocaleName()
\instantiates QRegExpValidator
\inqmlmodule QtQuick
\ingroup qtquick-text-utility
- \brief Provides a string validator
+ \brief Provides a string validator.
The RegExpValidator type provides a validator, which counts as valid any string which
matches a specified regular expression.