#include "pageinstall.h" #include #include #include #include PageInstall::PageInstall(const QString& title) : InstallerPage(title) { //QLabel* label = new QLabel( tr("") ) m_Output = new QTextEdit; m_Output->setReadOnly(true); m_Progress = new QProgressBar(0); QVBoxLayout* vbox = new QVBoxLayout; vbox->addWidget(m_Output); vbox->addWidget(m_Progress); m_Widget->setLayout(vbox); } void PageInstall::show() { // emit changeNext(false); // emit changePrev(false); } bool PageInstall::validate() { return true; }