Introductory wizard page. More...
#include <fileuploadwizard.h>
Public Member Functions | |
IntroPage (QWidget *parent=0) |
Introductory wizard page.
Implemented as one of the 6 wizard pages for introductory purposes.
IntroPage::IntroPage | ( | QWidget * | parent = 0 |
) |
: FileUploadWizardPage(parent) { setTitle("Introduction"); setSubTitle("This wizard will help you upload the files " "to the database."); QLabel *label = new QLabel("Click next to start selecting the files you wish to upload."); label->setWordWrap(true); QVBoxLayout *layout = new QVBoxLayout; layout->addWidget(label); setLayout(layout); }