mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
28 lines
632 B
C++
28 lines
632 B
C++
#include "installationpage.hpp"
|
|
|
|
#include <QDebug>
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::InstallationPage::InstallationPage(MainWizard *wizard) :
|
|
QWizardPage(wizard),
|
|
mWizard(wizard)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
void Wizard::InstallationPage::initializePage()
|
|
{
|
|
QString path = field("installation.path").toString();
|
|
QStringList components = field("installation.components").toStringList();
|
|
|
|
logTextEdit->append(QString("Installing to %1").arg(path));
|
|
logTextEdit->append(QString("Installing %1.").arg(components.join(", ")));
|
|
|
|
}
|
|
|
|
int Wizard::InstallationPage::nextId() const
|
|
{
|
|
return MainWizard::Page_Import;
|
|
}
|