aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickborderimage.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/qquickborderimage.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/qquickborderimage.cpp')
-rw-r--r--src/quick/items/qquickborderimage.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/quick/items/qquickborderimage.cpp b/src/quick/items/qquickborderimage.cpp
index 22a38f370a..3cbcf1937f 100644
--- a/src/quick/items/qquickborderimage.cpp
+++ b/src/quick/items/qquickborderimage.cpp
@@ -150,7 +150,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty bool QtQuick2::BorderImage::asynchronous
+ \qmlproperty bool QtQuick::BorderImage::asynchronous
Specifies that images on the local filesystem should be loaded
asynchronously in a separate thread. The default value is
@@ -176,7 +176,7 @@ QQuickBorderImage::~QQuickBorderImage()
}
/*!
- \qmlproperty enumeration QtQuick2::BorderImage::status
+ \qmlproperty enumeration QtQuick::BorderImage::status
This property describes the status of image loading. It can be one of:
@@ -191,7 +191,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty real QtQuick2::BorderImage::progress
+ \qmlproperty real QtQuick::BorderImage::progress
This property holds the progress of image loading, from 0.0 (nothing loaded)
to 1.0 (finished).
@@ -200,7 +200,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty bool QtQuick2::BorderImage::smooth
+ \qmlproperty bool QtQuick::BorderImage::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
@@ -211,7 +211,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty bool QtQuick2::BorderImage::cache
+ \qmlproperty bool QtQuick::BorderImage::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,
@@ -219,7 +219,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty bool QtQuick2::BorderImage::mirror
+ \qmlproperty bool QtQuick::BorderImage::mirror
This property holds whether the image should be horizontally inverted
(effectively displaying a mirrored image).
@@ -228,7 +228,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty url QtQuick2::BorderImage::source
+ \qmlproperty url QtQuick::BorderImage::source
This property holds the URL that refers to the source image.
@@ -256,7 +256,7 @@ QQuickBorderImage::~QQuickBorderImage()
*/
/*!
- \qmlproperty QSize QtQuick2::BorderImage::sourceSize
+ \qmlproperty QSize QtQuick::BorderImage::sourceSize
This property holds the actual width and height of the loaded image.
@@ -350,10 +350,10 @@ void QQuickBorderImage::load()
}
/*!
- \qmlproperty int QtQuick2::BorderImage::border.left
- \qmlproperty int QtQuick2::BorderImage::border.right
- \qmlproperty int QtQuick2::BorderImage::border.top
- \qmlproperty int QtQuick2::BorderImage::border.bottom
+ \qmlproperty int QtQuick::BorderImage::border.left
+ \qmlproperty int QtQuick::BorderImage::border.right
+ \qmlproperty int QtQuick::BorderImage::border.top
+ \qmlproperty int QtQuick::BorderImage::border.bottom
The 4 border lines (2 horizontal and 2 vertical) break the image into 9 sections,
as shown below:
@@ -385,8 +385,8 @@ QQuickScaleGrid *QQuickBorderImage::border()
}
/*!
- \qmlproperty enumeration QtQuick2::BorderImage::horizontalTileMode
- \qmlproperty enumeration QtQuick2::BorderImage::verticalTileMode
+ \qmlproperty enumeration QtQuick::BorderImage::horizontalTileMode
+ \qmlproperty enumeration QtQuick::BorderImage::verticalTileMode
This property describes how to repeat or stretch the middle parts of the border image.