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