Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-127562

qmllint wrongfully complains about tumbler attached property

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P2: Important
    • 6.11
    • 6.8
    • QML: Tooling
    • 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
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qtqmlteam Qt Qml Team User
            sami.shalayel Sami Shalayel
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes