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  ·  Classes  ·  Annotées  ·  Hiérarchie  ·  Fonctions  ·  Structure  · 

QWizard Class Reference


The QWizard class provides a framework for easily writing wizards. More...

#include <qwizard.h>

Inherits QDialog.

List of all member functions.

Public Members

  • QWizard ( QWidget * parent=0, const char * name=0, bool modal=FALSE, WFlags f=0 ) 
  • ~QWizard () 
  • virtual void addPage ( QWidget *, const QString & ) 
  • virtual void removePage ( QWidget * ) 
  • QString title ( QWidget * ) const
  • void setTitle ( QWidget *, const QString & ) 
  • virtual void showPage ( QWidget * ) 
  • QWidget* currentPage () const
  • QWidget* page ( int pos ) const
  • int pageCount () const
  • virtual bool appropriate ( QWidget * ) const
  • virtual void setAppropriate ( QWidget *, bool ) 
  • QPushButton* backButton () const
  • QPushButton* nextButton () const
  • QPushButton* finishButton () const
  • QPushButton* cancelButton () const
  • QPushButton* helpButton () const

Public Slots

  • virtual void setBackEnabled ( QWidget *, bool ) 
  • virtual void setNextEnabled ( QWidget *, bool ) 
  • virtual void setFinishEnabled ( QWidget *, bool ) 
  • virtual void setHelpEnabled ( QWidget *, bool ) 
  • virtual void setFinish ( QWidget *, bool ) (obsolete)

Signals

Protected Members

  • virtual void layOutButtonRow ( QHBoxLayout * ) 
  • virtual void layOutTitleRow ( QHBoxLayout *, const QString & ) 

Protected Slots

  • virtual void back () 
  • virtual void next () 
  • virtual void help () 

Detailed Description

The QWizard class provides a framework for easily writing wizards.

A wizard is a dialog that consists of a sequential number of steps, each consisting of a single page. QWizard provides a title for each page, and "Next", "Back", "Finish", "Cancel" and "Help" buttons, as appropriate.


Member Function Documentation

QWizard::QWizard ( QWidget * parent=0, const char * name=0, bool modal=FALSE, WFlags f=0 )

Constructs an empty wizard dialog.

QWizard::~QWizard ()

Destructs the object and frees any allocated resources, including, of course, all pages and controllers.

void QWizard::addPage ( QWidget * page, const QString & title ) [virtual]

Adds page to the end of the wizard, titled title.

bool QWizard::appropriate ( QWidget * w ) const [virtual]

This virtual function returns TRUE if w is appropriate for display in the current context of the wizard, and FALSE if QWizard should go on.

It is called when the Next button is clicked.

Warning: The last page of a wizard will be displayed if nothing else wants to, and the Next button was enabled when the user clicked.

The default implementation returns whatever was set using setAppropriate(). The ultimate default is TRUE.

void QWizard::back () [virtual protected slot]

Called when the user clicks the Back button, this function shows the page which the user saw prior to the current one.

QPushButton * QWizard::backButton () const

Returns the Back button of the dialog.

By default, this button is connected to the back() slot, which is virtual.

QPushButton * QWizard::cancelButton () const

Returns the Cancel button of the dialog.

By default, this button is connected to the QDialog::reject() slot, which is virtual so you may reimplement it in a QWizard subclass.

QWidget * QWizard::currentPage () const

Returns a pointer to the page currently being displayed by the wizard. The wizard does its best to make sure that this value is never 0, but if you try hard enough it can be.

bool QWizard::eventFilter ( QObject * o, QEvent * e ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QObject.

QPushButton * QWizard::finishButton () const

Returns the Finish button of the dialog.

By default, this button is connected to the QDialog::accept() slot, which is virtual so you may reimplement it in a QWizard subclass.

void QWizard::help () [virtual protected slot]

This slot either makes the wizard help you, if it can. The only way it knows is to emit the helpClicked() signal.

QPushButton * QWizard::helpButton () const

Returns the Help button of the dialog.

By default, this button is connected to the help() slot.

void QWizard::helpClicked () [signal]

This signal is emitted when the user clicks on the help button.

void QWizard::layOutButtonRow ( QHBoxLayout * layout ) [virtual protected]

This virtual function is responsible for adding the bottom divider and buttons below it.

layout is the vertical layout of the entire wizard.

void QWizard::layOutTitleRow ( QHBoxLayout * layout, const QString & title ) [virtual protected]

This virtual function is responsible for laying out the title row and adding the vertical divider between the title and the wizard page. layout is the vertical layout for the wizard, title is the title for this page, and this function is called every time title changes.

void QWizard::next () [virtual protected slot]

Called when the user clicks the Next button, this function shows the next appropriate page.

QPushButton * QWizard::nextButton () const

Returns the Next button of the dialog.

By default, this button is connected to the next() slot, which is virtual.

QWidget* QWizard::page ( int pos ) const

Returns a pointer to page a position pos, or 0 if pos is out of range. The first page has position 0.

int QWizard::pageCount () const

Returns the number of pages in the wizard.

void QWizard::removePage ( QWidget * page ) [virtual]

Removes page from this wizard. Does not delete page. If page is currently being displayed, QWizard will display something else.

void QWizard::selected ( const QString & ) [signal]

This signal is emitted when the page changes, signalling the title of the page.

void QWizard::setAppropriate ( QWidget * w, bool enable ) [virtual]

Sets whether it is appropriate for w to be displayed in the current context of the wizard.

See also appropriate().

void QWizard::setBackEnabled ( QWidget * w, bool enable ) [virtual slot]

Enables or disables the "Back" button for pages w in the wizard. By default, all pages have this button.

void QWizard::setFinish ( QWidget *, bool ) [virtual slot]

This function is obsolete. It is provided to keep old source working, and will probably be removed in a future version of Qt. We strongly advise against using it in new code.

void QWizard::setFinishEnabled ( QWidget * w, bool enable ) [virtual slot]

Enables or disables the "Finish" button for pages w in the wizard. By default, no pages have this button.

void QWizard::setFont ( const QFont & font ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QWidget.

void QWizard::setHelpEnabled ( QWidget * w, bool enable ) [virtual slot]

Enables or disables the "Help" button for pages w in the wizard. By default, all pages have this button.

void QWizard::setNextEnabled ( QWidget * w, bool enable ) [virtual slot]

Enables or disables the "Next" button for pages w in the wizard. By default, all pages have this button.

void QWizard::setTitle ( QWidget * page, const QString & t )

Sets the title for the page to title.

void QWizard::show () [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QWidget.

void QWizard::showPage ( QWidget * page ) [virtual]

Makes page be the displayed page and emits the selected() signal.

QString QWizard::title ( QWidget * page ) const

Returns the title of page.


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


This file is part of the Qt toolkit, copyright © 1995-2005 Trolltech, all rights reserved.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 23
  2. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 29
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  5. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  6. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  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 ? 49
  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é 22
  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 Labs au hasard

Logo

Améliorer les performances de Qt avec les chaînes de caractères avec SIMD... ou pas

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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 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