1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:07:35 +00:00

WidgetGallery: add a simple Wizard demo :^)

The sample Wizard subclasses WizardDialog and demonstrates a front and
back cover, as well as extracting user input from a Wizard page to
display in the interface which spawned the Wizard.
This commit is contained in:
Nick Vella 2021-02-26 18:17:28 +11:00 committed by Andreas Kling
parent e241dba8d3
commit 2b9098f540
6 changed files with 239 additions and 0 deletions

View file

@ -1,5 +1,11 @@
compile_gml(DemoWizardPage1.gml DemoWizardPage1GML.h demo_wizard_page_1_gml)
compile_gml(DemoWizardPage2.gml DemoWizardPage2GML.h demo_wizard_page_2_gml)
set(SOURCES
main.cpp
DemoWizardDialog.cpp
DemoWizardPage1GML.h
DemoWizardPage2GML.h
)
serenity_app(WidgetGallery ICON app-widget-gallery)