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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

Creating Scalable Buttons and Borders

You can use the Border Image element to display an image, such as a PNG file, as a border and a background.

Use two Border Image elements and suitable graphics to make it look like the button is pushed down when it is clicked. One of the Border Image elements is visible by default. You can specify that it is hidden and the other one becomes visible when the mouse is clicked.

Add a MouseArea that covers the whole area and emits the clicked signal (parent.clicked()) when it detects a mouse click.

You can add text to the button and set it up as a property. The text can then be initialized from the outside, making the button a reusable UI component. The font size is also available in case the default size is too big. You can scale down the button text and use smooth text rendering for some extra quality.

"Graphical button"

To create a graphical button:

  1. Select File > New File or Project > QML > QML File > Choose... to create a QML file called Button.qml (for example).
  2. Double-click the file to open it in the code editor.
  3. Replace the Rectangle with an Item, as illustrated by the following code snippet:
     Item {
    
     }
  4. Specify properties and set expressions for the Item, as illustrated by the following code snippet:
     property string text: ""
     property int fontSize: 44
    
     signal clicked

    You will point to the properties and expression later.

  5. Click Design to edit the file in the visual editor.
  6. Drag and drop two BorderImage items from the Library pane to the scene.
  7. Drag and drop a Text item to the scene.
  8. Drag and drop a MouseArea to the screen.
  9. In the Navigator pane, select border_image1 to specify settings for it in the Properties pane:
    1. Select Set Expression in the menu next to the Visibility check box.
    2. Enter the following expression to specify that the image is visible when the mouse is not pressed down: !mouse_area1.pressed.
    3. In the Source field, select the image file for the button, for example button_up.png.
    4. Click Layout, and then click the button to anchor the border image to the Item.
  10. Select border_image2 to specify similar settings for it:
    1. Set the following epression for Visibility, to specify that the image is visible when the mouse is pressed down: mouse_area1.pressed.
    2. In the Source field, select the image file for the button when it is clicked, for example button_down.png.
    3. Click Layout, and then click the button to anchor the border image to the Item.
  11. Select text1 to specify font size and color, and text scaling and rendering:
    1. In the Color field, use the color picker to select the font color, or enter a value in the field.
    2. In the Text field, select Set Expression and enter a pointer to the text property that you specified earlier: parent.txt.
    3. Select the Aliasing check box to enable smooth text rendering.
    4. In the Size field, select Pixels to specify the font size in pixels. By default, the size is specified in points.
    5. In the Size field, select Set Expression and enter a pointer to the fontSize property that you specified earlier.
    6. Click Layout, and then click the "Anchor buttons" buttons to inherit the vertical and horizontal centering from the parent.
    7. Click Advanced to specify scaling for the text in the Scale field.
    8. Select Set Expression and enter the following expression: if (!mousearea1.pressed) { 1 } else { 0.95 }.

      Note: You can enter long and complicated expressions also in the code editor.

  12. In the code editor, add to the MouseArea item a pointer to the clicked expression that you added earlier: onClicked: parent.clicked().

Note: To view the button, you must add it to a Qt Quick Application or Qt Quick UI project.

X

Thank you for giving your feedback.

Make sure it is related to this specific page. For more general bugs and requests, please use the Qt Bug Tracker.

[0]; s.parentNode.insertBefore(ga, s); })();
Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 94
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 45
  4. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  5. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 6
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le Qt Developer Network au hasard

Logo

Génération de bindings PySide avec Shiboken

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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 qtcreator-2.3
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