Public Member Functions

IntroPage Class Reference
[File Upload Wizard Pages]

Introductory wizard page. More...

#include <fileuploadwizard.h>

Inheritance diagram for IntroPage:
Inheritance graph
[legend]
Collaboration diagram for IntroPage:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 IntroPage (QWidget *parent=0)

Detailed Description

Introductory wizard page.

Implemented as one of the 6 wizard pages for introductory purposes.


Constructor & Destructor Documentation

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);
}


The documentation for this class was generated from the following files: