QML StateGroup ElementThe StateGroup element provides state support for non-Item elements. More... This element was introduced in Qt 4.7. Properties
Detailed DescriptionItem (and all derived elements) provides built in support for states and transitions via its state, states and transitions properties. StateGroup provides an easy way to use this support in other (non-Item-derived) elements. MyCustomObject { StateGroup { id: myStateGroup states: State { name: "state1" // ... } transitions: Transition { // ... } } onSomethingHappened: myStateGroup.state = "state1"; } See also States, Transitions, and QtDeclarative. Property DocumentationThis property holds the name of the current state of the state group. This property is often used in scripts to change between states. For example: function toggle() { if (button.state == 'On') button.state = 'Off'; else button.state = 'On'; } If the state group is in its base state (i.e. no explicit state has been set), state will be a blank string. Likewise, you can return a state group to its base state by setting its current state to ''. See also States. This property holds a list of states defined by the state group. StateGroup { states: [ State { // State definition... }, State { // ... } // Other states... ] } See also States. This property holds a list of transitions defined by the state group. StateGroup { transitions: [ Transition { // ... }, Transition { // ... } // ... ] } See also Transitions. |
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 4.8 | |
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 ! |
Copyright © 2000-2012 - www.developpez.com