2014-06-08 20:26:48 +01:00
|
|
|
#pragma once
|
2021-06-19 00:59:48 +01:00
|
|
|
|
2014-06-08 20:26:48 +01:00
|
|
|
#include "ModFolderPage.h"
|
2016-11-26 13:59:27 +00:00
|
|
|
#include "ui_ModFolderPage.h"
|
2014-06-08 20:26:48 +01:00
|
|
|
|
|
|
|
class TexturePackPage : public ModFolderPage
|
|
|
|
{
|
2018-12-23 00:05:11 +00:00
|
|
|
Q_OBJECT
|
2014-06-08 20:26:48 +01:00
|
|
|
public:
|
2018-07-15 13:51:05 +01:00
|
|
|
explicit TexturePackPage(MinecraftInstance *instance, QWidget *parent = 0)
|
|
|
|
: ModFolderPage(instance, instance->texturePackList(), "texturepacks", "resourcepacks",
|
|
|
|
tr("Texture packs"), "Texture-packs", parent)
|
|
|
|
{
|
2019-07-16 00:30:53 +01:00
|
|
|
ui->actionView_configs->setVisible(false);
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
virtual ~TexturePackPage() {}
|
2021-06-19 00:59:48 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual bool shouldDisplay() const override
|
|
|
|
{
|
|
|
|
return m_inst->traits().contains("texturepacks");
|
|
|
|
}
|
2014-06-08 20:26:48 +01:00
|
|
|
};
|