You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-2.2-install.../src/pageinstall.cpp

36 lines
580 B

#include "pageinstall.h"
#include <QBoxLayout>
#include <QLabel>
#include <QTextEdit>
#include <QProgressBar>
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;
}