Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Accessible

Enables accessibility of QML items More...

Inherits QtObject

Properties

Detailed Description

This class is part of Accessibility for Qt Quick Applications.

Items the user interacts with or that give information to the user need to expose their information in a semantic way. Then assistive tools can make use of that information to enable users to interact with the application in various ways.

This enables Qt Quick applications to be used with screen-readers for example.

The most important properties to set are name and role.

See also Accessibility.

Property Documentation

description : string

This property sets an accessible description. Similar to the name it describes the item. The description can be a little more verbose and tell what the item does, for example the functionallity of the button it describes.


name : string

This property sets an accessible name. For a button for example, this should have a binding to its text. In general this property should be set to a simple and concise but human readable name. Do not include the type of control you want to represent but just the name.


This flags sets the semantic type of the widget. A button for example would have "Button" as type. The value must be one of QAccessible::Role . Example:

 Item {
     id: myButton

     Text {
         id: label
         // ...
     }

     Accessible.name: label.text
     Accessible.role: Accessible.Button

     function accessiblePressAction() {
         //...
     }
 }

Some roles have special semantics. In order to implement check boxes for example a "checked" property is expected.

RoleExpected property
Buttonfunction accessiblePressActionCalled when the button receives a press action. The implementation should visually simulate a button click and perform the button action.
CheckBox, RadiobuttoncheckedThe check state of the check box. Updated on Press, Check and Uncheck actions.
Slider, SpinBox, Dial, ScrollBarvalue, minimumValue, maximumValue, stepSizevalue will be updated on increase and decrase actions, in accordance with the other properties

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web