CFillTheBox::CFillTheBox()
:QWizard()
{
setPage(FillTheBoxPage_Intro, &mIntroPage);
setPage(FillTheBoxPage_iTunes,&miTunesPage);
setPage(FillTheBoxPage_Scan, &mSearchPage);
setOption(QWizard::NoBackButtonOnStartPage,true);
setStartId(FillTheBoxPage_Intro);
setWindowTitle(tr("Fill the box"));
nextButton->setHidden(true);
setButton(QWizard::NextButton,nextButton);
}
CFillTheBox::CFillTheBox()
:QWizard()
{
setPage(FillTheBoxPage_Intro, &mIntroPage);
setPage(FillTheBoxPage_iTunes,&miTunesPage);
setPage(FillTheBoxPage_Scan, &mSearchPage);
setOption(QWizard::NoBackButtonOnStartPage,true);
setStartId(FillTheBoxPage_Intro);
setWindowTitle(tr("Fill the box"));
QAbstractButton* nextButton = button(QWizard::NextButton);
nextButton->setHidden(true);
setButton(QWizard::NextButton,nextButton);
}
To copy to clipboard, switch view to plain text mode
I want to mention that CFillTheBox is a class that inherite from QWizard.
and what you see here is the constructor of CFillTheBox.
Bests
Tamar
Bookmarks