Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. accessible
    Log in to post

    • UNSOLVED QT accessibility problem in i3 window manager
      General and Desktop • linux qlistview accessible environment var window manager • • payman  

      2
      0
      Votes
      2
      Posts
      808
      Views

      @payman i have no experience with accessibility on Linux. But maybe the following helps you: Qt Accessibility is based on AT-SPI via DBus on Unix/X11 and is tested to be working on Gnome and KDE. Are you sure that i3wm even supports accessibility?
    • SOLVED Accessing SliderStyle's components to change opacity
      QML and Qt Quick • style states target slider accessible • • MoaMoaK  

      2
      0
      Votes
      2
      Posts
      605
      Views

      OK found a solution, for those interested, it's based on the fact that maybe the root item can't access the handle but the handle on the other hand can access the root item. So I created a binding between handle's state and slider's state : Slider { anchors { fill: parent margins: 10; } id: slider value: 0.5 style : SliderStyle { groove: Rectangle { id: background /* ... */ } handle: Rectangle { id: handle /* ... */ opacity: 0.0 // Bind slider's state and handle's state state: slider.state == "hovered" ? "hovered" : "" states : [ State { name: "hovered" PropertyChanges { target: handle ; opacity: 1.0 } } ] } } MouseArea { anchors.fill: parent hoverEnabled: true onEntered: { slider.state = "hovered" } onExited: { slider.state = "" } } states: [ State { name: "hovered" } ] }
    • UNSOLVED Activate accessibility for Qt 5.7 application
      General and Desktop • qt5.7 accessible • • Danman  

      5
      0
      Votes
      5
      Posts
      1160
      Views

      @raven-worx OMG thank you so much!! Your link had the answer and now it works perfectly! I can't thank you enough, you're a hero :)
    • UNSOLVED qxcbintegration.cpp: undefined reference to QSpiAccessibleBridge
      Installation and Deployment • linux xcb build error accessible buildroot • • 173210  

      2
      0
      Votes
      2
      Posts
      1033
      Views

      Hi, What version of Qt are you trying to build ? Which options did you pass to configure ? What was the configuration summary ?
    • Enabling mobile automation testing on QT/QML native mobile app
      Mobile and Embedded • android ios accessible nativemobileapp automationtesti • • rohansurya  

      1
      0
      Votes
      1
      Posts
      396
      Views

      No one has replied