| 1 |  | #include "soundwizard.h" | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 2 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 3 | < | SoundWizard::SoundWizard(QString workspaceWizardLocation, Logger *myLogger, QHash<QString, QString> *commandMap) | 
 
 
 
 
 
 
 
 
 | 3 | > | SoundWizard::SoundWizard(QString appLocation, QString workspaceWizardLocation, Logger *myLogger, QHash<QString, QString> *commandMap) | 
 
 
 
 
 
 
 
 
 
 
 | 4 |  | { | 
 
 
 
 
 
 
 
 | 5 | + | this->appLocation=appLocation; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 6 |  | this->workspaceWizardLocation=workspaceWizardLocation; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 7 |  | this->myLogger=myLogger; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 8 |  | this->soundsLocation=this->workspaceWizardLocation+"/Sounds"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 33 |  | this->myWizard->move(position.topLeft()); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 34 |  | // | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 35 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 36 | < | SoundPage2 *page2 = new SoundPage2(); | 
 
 
 
 
 
 
 
 
 | 36 | > | SoundPage2 *page2 = new SoundPage2(this->appLocation); | 
 
 
 
 
 
 
 
 
 
 
 | 37 |  | SoundPage3 *page3 = new SoundPage3(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 38 |  | SoundPage4 *page4 = new SoundPage4(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 39 |  | SoundPageFinal *pageFinal = new SoundPageFinal(this->soundsLocation,page2->soundTable,this->myLogger, this->commandMap); |