diff options
Diffstat (limited to 'archived/projt-launcher/launcher/InstancePageProvider.h')
| -rw-r--r-- | archived/projt-launcher/launcher/InstancePageProvider.h | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/archived/projt-launcher/launcher/InstancePageProvider.h b/archived/projt-launcher/launcher/InstancePageProvider.h new file mode 100644 index 0000000000..18808f1c13 --- /dev/null +++ b/archived/projt-launcher/launcher/InstancePageProvider.h @@ -0,0 +1,85 @@ +// SPDX-License-Identifier: GPL-3.0-only +// SPDX-FileCopyrightText: 2026 Project Tick +// SPDX-FileContributor: Project Tick Team +/* + * ProjT Launcher - Minecraft Launcher + * Copyright (C) 2026 Project Tick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#pragma once +#include <FileSystem.h> +#include <ui/pages/instance/DataPackPage.h> +#include "minecraft/MinecraftInstance.h" +#include "ui/pages/BasePage.h" +#include "ui/pages/BasePageProvider.h" +#include "ui/pages/instance/BackupPage.h" +#include "ui/pages/instance/InstanceSettingsPage.h" +#include "ui/pages/instance/LogPage.h" +#include "ui/pages/instance/ManagedPackPage.h" +#include "ui/pages/instance/ModFolderPage.h" +#include "ui/pages/instance/NotesPage.h" +#include "ui/pages/instance/OtherLogsPage.h" +#include "ui/pages/instance/ResourcePackPage.h" +#include "ui/pages/instance/ScreenshotsPage.h" +#include "ui/pages/instance/ServersPage.h" +#include "ui/pages/instance/ShaderPackPage.h" +#include "ui/pages/instance/TexturePackPage.h" +#include "ui/pages/instance/VersionPage.h" +#include "ui/pages/instance/WorldListPage.h" + +class InstancePageProvider : protected QObject, public BasePageProvider +{ + Q_OBJECT + public: + explicit InstancePageProvider(InstancePtr parent) + { + inst = parent; + } + + virtual ~InstancePageProvider() = default; + virtual QList<BasePage*> getPages() override + { + QList<BasePage*> values; + values.append(new LogPage(inst)); + std::shared_ptr<MinecraftInstance> onesix = std::dynamic_pointer_cast<MinecraftInstance>(inst); + values.append(new VersionPage(onesix.get())); + values.append(ManagedPackPage::createPage(onesix.get())); + auto modsPage = new ModFolderPage(onesix.get(), onesix->loaderModList()); + modsPage->setFilter("%1 (*.zip *.jar *.litemod *.nilmod)"); + values.append(modsPage); + values.append(new CoreModFolderPage(onesix.get(), onesix->coreModList())); + values.append(new NilModFolderPage(onesix.get(), onesix->nilModList())); + values.append(new ResourcePackPage(onesix.get(), onesix->resourcePackList())); + values.append(new GlobalDataPackPage(onesix.get())); + values.append(new TexturePackPage(onesix.get(), onesix->texturePackList())); + values.append(new ShaderPackPage(onesix.get(), onesix->shaderPackList())); + values.append(new NotesPage(onesix.get())); + values.append(new WorldListPage(onesix, onesix->worldList())); + values.append(new ServersPage(onesix)); + values.append(new ScreenshotsPage(FS::PathCombine(onesix->gameRoot(), "screenshots"))); + values.append(new BackupPage(onesix.get())); + values.append(new InstanceSettingsPage(onesix)); + values.append(new OtherLogsPage("logs", tr("Other Logs"), "Other-Logs", inst)); + return values; + } + + virtual QString dialogTitle() override + { + return tr("Edit Instance (%1)").arg(inst->name()); + } + + protected: + InstancePtr inst; +}; |
