PrismLauncher/gui/pages/LegacyUpgradePage.cpp

40 lines
693 B
C++
Raw Normal View History

2014-06-08 17:02:20 +01:00
#include "LegacyUpgradePage.h"
#include <logic/LegacyInstance.h>
2014-06-08 17:02:20 +01:00
#include "ui_LegacyUpgradePage.h"
QString LegacyUpgradePage::displayName() const
2014-06-08 17:02:20 +01:00
{
return tr("Upgrade");
}
QIcon LegacyUpgradePage::icon() const
2014-06-08 17:02:20 +01:00
{
return QIcon::fromTheme("checkupdate");
2014-06-08 17:02:20 +01:00
}
QString LegacyUpgradePage::id() const
2014-06-08 17:02:20 +01:00
{
return "upgrade";
}
LegacyUpgradePage::LegacyUpgradePage(LegacyInstance *inst, QWidget *parent)
: QWidget(parent), ui(new Ui::LegacyUpgradePage), m_inst(inst)
{
ui->setupUi(this);
}
LegacyUpgradePage::~LegacyUpgradePage()
{
delete ui;
}
void LegacyUpgradePage::on_upgradeButton_clicked()
{
// now what?
}
bool LegacyUpgradePage::shouldDisplay() const
{
return !m_inst->isRunning();
}