| 1 | 
   | 
 #include "bgimagewizard.h" | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 2 | 
   | 
  | 
 
 
 
 
 
 
 
 
 
 
 
 | 3 | 
 < | 
 BGImageWizard::BGImageWizard(const QString &appDir, const QString &workspaceWizardLocation, QSettings *vagoSettings, Logger *myLogger) | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 4 | 
 < | 
 :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, myLogger, true) | 
 
 
 
 
 
 
 
 
 
 | 3 | 
 > | 
 BGImageWizard::BGImageWizard(const QString &appDir, const QString &workspaceWizardLocation, QSettings *vagoSettings) | 
 
 
 
 
 
 | 4 | 
 > | 
 :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, true) | 
 
 
 
 
 
 
 
 
 
 
 
 | 5 | 
   | 
 { | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 6 | 
   | 
     this->appDir = appDir; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 7 | 
   | 
     this->workspaceWizardLocation=workspaceWizardLocation; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 8 | 
   | 
     this->vagoSettings=vagoSettings; | 
 
 
 
 
 
 
 
 
 
 | 9 | 
 – | 
     this->myLogger=myLogger; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 9 | 
   | 
     this->bgImagesLocation=this->workspaceWizardLocation+"/BGImages"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 10 | 
   | 
 } | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 11 | 
   | 
  | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 12 | 
   | 
 void BGImageWizard::exec(){ | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 13 | 
   | 
  | 
 
 
 
 
 
 
 
 
 
 
 
 | 14 | 
 < | 
     BGImagePage2 *page2 = new BGImagePage2(this->myLogger); | 
 
 
 
 
 
 
 
 
 
 | 14 | 
 > | 
     BGImagePage2 *page2 = new BGImagePage2(); | 
 
 
 
 
 
 
 
 
 
 
 
 | 15 | 
   | 
     BGImagePage3 *page3 = new BGImagePage3(); | 
 
 
 
 
 
 
 
 
 
 
 
 | 16 | 
 < | 
     BGImagePageFinal *pageFinal = new BGImagePageFinal(this->appDir, this->myLogger, this->bgImagesLocation); | 
 
 
 
 
 
 
 
 
 
 | 16 | 
 > | 
     BGImagePageFinal *pageFinal = new BGImagePageFinal(this->appDir, this->bgImagesLocation); | 
 
 
 
 
 
 
 
 
 
 
 
 | 17 | 
   | 
  | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 18 | 
   | 
     this->myWizard.addPage | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 19 | 
   | 
     ( |