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

JAWS integration with QML plain text element

    XMLWordPrintable

Details

    Description

      Currently it is not possible for JAWS to process plain text element in QML, e.g Text. 

      import QtQuick 2.15
      import QtQuick.Window 2.15
      import QtQuick.Controls 2.15
      
      Window {
          width: 640
          height: 480
          visible: true
          title: qsTr("JAWS Test")    
      
      Column {
              spacing: 10        
      
      Text {
                  id: text1
                  text: "First line"
                  font.pixelSize: 18
                  Accessible.role: Accessible.StaticText
                  Accessible.name: text
                  focus: true
                  Keys.onTabPressed: text2.forceActiveFocus()
              }        
      
      Text {
                  id: text2
                  text: "Second line"
                  font.pixelSize: 18
                  Accessible.role: Accessible.StaticText
                  Accessible.name: text
                  Keys.onTabPressed: btn.forceActiveFocus()
              }        
      
      TextField {
                  id: btn
                  text: "Hello world"
                  Accessible.role: Accessible.EditableText
                  Accessible.name: text             
                  Keys.onTabPressed: text1.forceActiveFocus()
              }
          }
      }
       

      Attachments

        Issue Links

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

          Activity

            People

              vhilshei Volker Hilsheimer
              kitruong Kinh Truong
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes