/tmp/snapshot-pyside-6.2-rel/pyside-setup/examples/widgets/dialogs/trivialwizard¶
(You can also check this code in the repository)
"""PySide6 port of the widgets/dialogs/trivialwizard example from Qt v5.x"""
import sys
from PySide6.QtWidgets import (QApplication, QFormLayout, QLabel, QLineEdit,
QVBoxLayout, QWidget, QWizardPage, QWizard)
def create_intro_page():
page = QWizardPage()
page.setTitle("Introduction")
label = QLabel("This wizard will help you register your copy of "
"Super Product Two.")
label.setWordWrap(True)
layout = QVBoxLayout(page)
layout.addWidget(label)
return page
def create_registration_page():
page = QWizardPage()
page.setTitle("Registration")
page.setSubTitle("Please fill both fields.")
layout = QFormLayout(page)
layout.addRow("Name:", QLineEdit())
layout.addRow("Email address:", QLineEdit())
return page
def create_conclusion_page():
page = QWizardPage()
page.setTitle("Conclusion")
label = QLabel("You are now successfully registered. Have a nice day!")
label.setWordWrap(True)
layout = QVBoxLayout(page)
layout.addWidget(label)
return page
if __name__ == '__main__':
app = QApplication(sys.argv)
wizard = QWizard()
wizard.addPage(create_intro_page())
wizard.addPage(create_registration_page())
wizard.addPage(create_conclusion_page())
wizard.setWindowTitle("Trivial Wizard")
wizard.show()
sys.exit(wizard.exec())
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.