Dialog Examples

Using Qt’s standard dialogs and building and using custom dialogs.

../_images/dialog-examples.png

Qt includes standard dialogs for many common operations, such as file selection, printing, and color selection.

Custom dialogs can also be created for specialized modal or modeless interactions with users.

Class Wizard Example

The Class Wizard example shows how to implement linear wizards using QWizard.

Extension Example

The Extension example shows how to add an extension to a QDialog using the QAbstractButton::toggled() signal and the QWidget::setVisible() slot.

Find Files Example

A dialog for finding files in a specified folder.

License Wizard Example

The License Wizard example shows how to implement complex wizards in Qt.

Standard-Dialogs-Example

The Standard Dialogs example shows the standard dialogs that are provided by Qt.

Tab Dialog Example

The Tab Dialog example shows how to construct a tab dialog using the QTabWidget class.

Trivial Wizard Example

The Trivial Wizard example illustrates how to create a linear three-page registration wizard using three instances of QWizardPage and one instance of QWizard.