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  · 

Positioner

The Positioner type provides attached properties that contain details on where an item exists in a positioner. More...

Inherits QtObject

Attached Properties

Detailed Description

Positioner is an attached property that is attached to the top-level child item within a Column, Row, Flow or Grid. It provides properties that allow a child item to determine where it exists within the layout of its parent Column, Row, Flow or Grid.

For example, below is a Grid with 16 child rectangles, as created through a Repeater. Each Rectangle displays its index in the Grid using Positioner.index, and the first item is colored differently by taking Positioner.isFirstItem into account:

 Grid {
     Repeater {
         model: 16

         Rectangle {
             id: rect
             width: 30; height: 30
             border.width: 1
             color: Positioner.isFirstItem ? "yellow" : "lightsteelblue"

             Text { text: rect.Positioner.index }
         }
     }
 }

[Missing image positioner-example.png]

Attached Property Documentation

read-onlyPositioner.index : int

This property allows the item to determine its index within the positioner.


read-onlyPositioner.isFirstItem : bool

read-onlyPositioner.isLastItem : bool

These properties allow the item to determine if it is the first or last item in the positioner, respectively.


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