30 lines
547 B
C++
30 lines
547 B
C++
|
#include "TechnicPage.h"
|
||
|
#include "ui_TechnicPage.h"
|
||
|
|
||
|
#include "MultiMC.h"
|
||
|
#include "FolderInstanceProvider.h"
|
||
|
#include "dialogs/CustomMessageBox.h"
|
||
|
#include "dialogs/ProgressDialog.h"
|
||
|
#include "dialogs/NewInstanceDialog.h"
|
||
|
|
||
|
TechnicPage::TechnicPage(NewInstanceDialog* dialog, QWidget *parent)
|
||
|
: QWidget(parent), ui(new Ui::TechnicPage), dialog(dialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
TechnicPage::~TechnicPage()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
bool TechnicPage::shouldDisplay() const
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void TechnicPage::openedImpl()
|
||
|
{
|
||
|
dialog->setSuggestedPack();
|
||
|
}
|