summaryrefslogtreecommitdiffstats
path: root/src/compositor/compositor_api/qwaylandquickitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/compositor_api/qwaylandquickitem.cpp')
-rw-r--r--src/compositor/compositor_api/qwaylandquickitem.cpp39
1 files changed, 23 insertions, 16 deletions
diff --git a/src/compositor/compositor_api/qwaylandquickitem.cpp b/src/compositor/compositor_api/qwaylandquickitem.cpp
index 6ea44feac..08eefffa0 100644
--- a/src/compositor/compositor_api/qwaylandquickitem.cpp
+++ b/src/compositor/compositor_api/qwaylandquickitem.cpp
@@ -336,10 +336,10 @@ private:
* \qmltype WaylandQuickItem
* \inqmlmodule QtWayland.Compositor
* \preliminary
- * \brief A Qt Quick item representing a WaylandView.
+ * \brief Provides a Qt Quick item that represents a WaylandView.
*
- * When writing a WaylandCompositor in Qt Quick, this type can be used to display a
- * client's contents on an output device and will pass user input to the
+ * Qt Quick-based Wayland compositors can use this type to display a client's
+ * contents on an output device. It passes user input to the
* client.
*/
@@ -347,7 +347,7 @@ private:
* \class QWaylandQuickItem
* \inmodule QtWaylandCompositor
* \preliminary
- * \brief A Qt Quick item representing a QWaylandView.
+ * \brief The QWaylandQuickItem class provides a Qt Quick item representing a QWaylandView.
*
* When writing a QWaylandCompositor in Qt Quick, this class can be used to display a
* client's contents on an output device and will pass user input to the
@@ -402,7 +402,7 @@ QWaylandCompositor *QWaylandQuickItem::compositor() const
}
/*!
- * \qmlproperty object QWaylandQuickItem::view
+ * \qmlproperty object QtWaylandCompositor::WaylandQuickItem::view
*
* This property holds the view rendered by this WaylandQuickItem.
*/
@@ -419,7 +419,7 @@ QWaylandView *QWaylandQuickItem::view() const
}
/*!
- * \qmlproperty object QWaylandQuickItem::surface
+ * \qmlproperty object QtWaylandCompositor::WaylandQuickItem::surface
*
* This property holds the surface rendered by this WaylandQuickItem.
*/
@@ -944,7 +944,7 @@ void QWaylandQuickItem::updateSize()
* This property specifies whether the WaylandQuickItem should take focus when
* it is clicked.
*
- * The default is true.
+ * The default is \c true.
*/
/*!
@@ -953,7 +953,7 @@ void QWaylandQuickItem::updateSize()
* This property specifies whether the QWaylandQuickItem should take focus when
* it is clicked.
*
- * The default is true.
+ * The default is \c true.
*/
bool QWaylandQuickItem::focusOnClick() const
{
@@ -972,7 +972,7 @@ void QWaylandQuickItem::setFocusOnClick(bool focus)
}
/*!
- * Returns true if the input region of this item's surface contains the
+ * Returns \c true if the input region of this item's surface contains the
* position given by \a localPosition.
*/
bool QWaylandQuickItem::inputRegionContains(const QPointF &localPosition)
@@ -999,7 +999,7 @@ QPointF QWaylandQuickItem::mapToSurface(const QPointF &point) const
* This property specifies whether the size of the item should always match
* the size of its surface.
*
- * The default is true.
+ * The default is \c true.
*/
/*!
@@ -1008,7 +1008,7 @@ QPointF QWaylandQuickItem::mapToSurface(const QPointF &point) const
* This property specifies whether the size of the item should always match
* the size of its surface.
*
- * The default is true.
+ * The default is \c true.
*/
bool QWaylandQuickItem::sizeFollowsSurface() const
{
@@ -1046,12 +1046,19 @@ QVariant QWaylandQuickItem::inputMethodQuery(Qt::InputMethodQuery query, QVarian
#endif
/*!
- \qmlproperty bool QtWayland::QWaylandSurfaceItem::paintEnabled
+ \qmlproperty bool QtWaylandCompositor::WaylandQuickItem::paintEnabled
+
+ If this property is \c true, the item is hidden, though the texture
+ is still updated. As opposed to hiding the item by
+ setting \l{Item::visible}{visible} to \c false, setting this property to \c true
+ will not prevent mouse or keyboard input from reaching item.
+*/
- If this property is true, the \l item is hidden, though the texture
- will still be updated. As opposed to hiding the \l item by
- setting \l{Item::visible}{visible} to false, setting this property to true
- will not prevent mouse or keyboard input from reaching \l item.
+/*!
+ If this property is \c true, the item is hidden, though the texture
+ is still updated. As opposed to hiding the item by
+ setting \l{Item::visible}{visible} to \c false, setting this property to \c true
+ will not prevent mouse or keyboard input from reaching item.
*/
bool QWaylandQuickItem::paintEnabled() const
{