Built-in dialogs
Qt provides a rich set of built-in dialogs. They are as follows:
QFileDilaog
: This provides the user with a dialog that allows them to select files or directoriesQErrorMessage
: This provides the user with a dialog that displays error messagesQColorDialog
: This provides the user with a dialog to specify or choose between colorsQPrintDialog
: This provides the user with a dialog that aids in printer and printing configurationQPageSetupDialog
: This provides the user with a dialog that manages configuration for the page-related options on a printerQWizard
: This provides a dialog framework for wizardsQProgressDialog
: This provides feedback on the progress of a slow operationQPrintPreviewDialog
: This provides a dialog to preview and configure page layouts for printer outputQMessageBox
: This provides a dialog that is usually used to display modal information to the user requiring approval or cancellationQInputDialog
: This provides a simple convenience dialog to get a single...