aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickimage.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-10-01 13:03:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-02 14:40:01 +0200
commit4706b1ceff9af9141044ed3cf020ce5624bfa40f (patch)
tree43672217a945512ddd1704468d1fd4b6e9c153c7 /src/quick/items/qquickimage.cpp
parent4f50ab594aa2fb1d38981127beca634ad3396489 (diff)
qdoc: no longer recognizes the version nr in QML refs
All QML references of the form <QML-module-name><QML-module-version>::<QML-type>::<member-name> have had the <QML-module-version> removed i. Task-number: QTBUG-33776 Change-Id: Idde279e0f254cd24ea44f9841662dd81a2c5bbc6 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/items/qquickimage.cpp')
-rw-r--r--src/quick/items/qquickimage.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/quick/items/qquickimage.cpp b/src/quick/items/qquickimage.cpp
index 7a02137f61..3a8fd99a66 100644
--- a/src/quick/items/qquickimage.cpp
+++ b/src/quick/items/qquickimage.cpp
@@ -176,7 +176,7 @@ void QQuickImagePrivate::setImage(const QImage &image)
}
/*!
- \qmlproperty enumeration QtQuick2::Image::fillMode
+ \qmlproperty enumeration QtQuick::Image::fillMode
Set this property to define what happens when the source image has a different size
than the item.
@@ -289,8 +289,8 @@ void QQuickImage::setFillMode(FillMode mode)
/*!
- \qmlproperty real QtQuick2::Image::paintedWidth
- \qmlproperty real QtQuick2::Image::paintedHeight
+ \qmlproperty real QtQuick::Image::paintedWidth
+ \qmlproperty real QtQuick::Image::paintedHeight
These properties hold the size of the image that is actually painted.
In most cases it is the same as \c width and \c height, but when using a
@@ -311,7 +311,7 @@ qreal QQuickImage::paintedHeight() const
}
/*!
- \qmlproperty enumeration QtQuick2::Image::status
+ \qmlproperty enumeration QtQuick::Image::status
This property holds the status of image loading. It can be one of:
\list
@@ -348,7 +348,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty real QtQuick2::Image::progress
+ \qmlproperty real QtQuick::Image::progress
This property holds the progress of image loading, from 0.0 (nothing loaded)
to 1.0 (finished).
@@ -357,7 +357,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty bool QtQuick2::Image::smooth
+ \qmlproperty bool QtQuick::Image::smooth
This property holds whether the image is smoothly filtered when scaled or
transformed. Smooth filtering gives better visual quality, but it may be slower
@@ -368,7 +368,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty QSize QtQuick2::Image::sourceSize
+ \qmlproperty QSize QtQuick::Image::sourceSize
This property holds the actual width and height of the loaded image.
@@ -419,7 +419,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty url QtQuick2::Image::source
+ \qmlproperty url QtQuick::Image::source
Image can handle any image format supported by Qt, loaded from any URL scheme supported by Qt.
@@ -429,7 +429,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty bool QtQuick2::Image::asynchronous
+ \qmlproperty bool QtQuick::Image::asynchronous
Specifies that images on the local filesystem should be loaded
asynchronously in a separate thread. The default value is
@@ -444,7 +444,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty bool QtQuick2::Image::cache
+ \qmlproperty bool QtQuick::Image::cache
Specifies whether the image should be cached. The default value is
true. Setting \a cache to false is useful when dealing with large images,
@@ -452,7 +452,7 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty bool QtQuick2::Image::mirror
+ \qmlproperty bool QtQuick::Image::mirror
This property holds whether the image should be horizontally inverted
(effectively displaying a mirrored image).
@@ -461,8 +461,8 @@ qreal QQuickImage::paintedHeight() const
*/
/*!
- \qmlproperty enumeration QtQuick2::Image::horizontalAlignment
- \qmlproperty enumeration QtQuick2::Image::verticalAlignment
+ \qmlproperty enumeration QtQuick::Image::horizontalAlignment
+ \qmlproperty enumeration QtQuick::Image::verticalAlignment
Sets the horizontal and vertical alignment of the image. By default, the image is center aligned.