Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
6.8
-
None
-
dfc7521a8 (dev), 837af013a (6.8), 879f54f9e (6.7)
Description
qmllint wrongfully complains about the tumbler attached property on the example from the documentation at https://doc.qt.io/qt-6/qml-qtquick-controls-tumbler.html:
import QtQuick import QtQuick.Controls Rectangle { // modified from the Tumbler documentation at https://doc.qt.io/qt-6/qml-qtquick-controls-tumbler.html Component { id: delegateComponent Label { text: formatText(Tumbler.tumbler.count, modelData) opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2) horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter } } }
with following warnings:
Warning: /Users/sami/tmp/untitled69/Main.qml:23:34: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] text: formatText(Tumbler.tumbler.count, modelData) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:23:57: Unqualified access [unqualified] text: formatText(Tumbler.tumbler.count, modelData) ^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:24:26: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:24:26: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:27:33: Unqualified access [unqualified] font.pixelSize: fontMetrics.font.pixelSize * 1.25 ^^^^^^^^^^^ Info: Set "pragma ComponentBehavior: Bound" in order to use IDs from outer components in nested components. pragma ComponentBehavior: Bound import QtQuick
Note that replacing the Rectangle above with a Tumbler does not make the warning go away, despite the attached property being inside a Tumbler delegate:
Tumbler {
delegate: Component {
id: delegateComponent
Label {
text: formatText(Tumbler.tumbler.count, modelData)
opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2)
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pixelSize: fontMetrics.font.pixelSize * 1.25
}
}
}
with:
Warning: /Users/sami/tmp/untitled69/Main.qml:23:30: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] text: formatText(Tumbler.tumbler.count, modelData) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:23:53: Unqualified access [unqualified] text: formatText(Tumbler.tumbler.count, modelData) ^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:24:22: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:24:22: Tumbler: attached properties of Tumbler must be accessed through a delegate item [Quick.attached-property-type] opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: /Users/sami/tmp/untitled69/Main.qml:27:29: Unqualified access [unqualified] font.pixelSize: fontMetrics.font.pixelSize * 1.25 ^^^^^^^^^^^ Info: Set "pragma ComponentBehavior: Bound" in order to use IDs from outer components in nested components. pragma ComponentBehavior: Bound import QtQuick