summaryrefslogtreecommitdiffstats
path: root/application/pages/instance/TexturePackPage.h
blob: 2ba5b8667d82e6f69552557faddabb2b225a145b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include "ModFolderPage.h"
#include "ui_ModFolderPage.h"

class TexturePackPage : public ModFolderPage
{
    Q_OBJECT
public:
    explicit TexturePackPage(MinecraftInstance *instance, QWidget *parent = 0)
        : ModFolderPage(instance, instance->texturePackList(), "texturepacks", "resourcepacks",
                        tr("Texture packs"), "Texture-packs", parent)
    {
        ui->configFolderBtn->setHidden(true);
    }
    virtual ~TexturePackPage() {}
    virtual bool shouldDisplay() const override
    {
        return m_inst->traits().contains("texturepacks");
    }
};