| 1 |  | #include "wmwizard.h" | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 2 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 3 | < | WmWizard::WmWizard(const QString &appDir, const QString &workspaceWizardLocation, QSettings *vagoSettings, Logger *myLogger) | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 4 | < | :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, myLogger, true) | 
 
 
 
 
 
 
 
 
 | 3 | > | WmWizard::WmWizard(const QString &appDir, const QString &workspaceWizardLocation, QSettings *vagoSettings) | 
 
 
 
 
 | 4 | > | :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, true) | 
 
 
 
 
 
 
 
 
 
 
 | 5 |  | { | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 6 |  | this->bgImagesLocation=this->workspaceWizardLocation+"/WindowMessages"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 7 |  | } | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 9 |  | void WmWizard::exec(){ | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 10 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 11 |  | WmSetupPage *setupPage = new WmSetupPage(); | 
 
 
 
 
 
 
 
 
 
 
 | 12 | < | WmFormatPage *formatPage = new WmFormatPage(this->myLogger); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 13 | < | WmFinalPage *finalPage = new WmFinalPage(this->appDir, this->bgImagesLocation, this->myLogger, formatPage->getCurrentPages()); | 
 
 
 
 
 
 
 
 
 | 12 | > | WmFormatPage *formatPage = new WmFormatPage(); | 
 
 
 
 
 | 13 | > | WmFinalPage *finalPage = new WmFinalPage(this->appDir, this->bgImagesLocation, formatPage->getCurrentPages()); | 
 
 
 
 
 
 
 
 
 
 
 | 14 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 15 |  | this->myWizard.addPage | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 16 |  | ( |