2022-06-01 21:03:51 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 18:41:47 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-06-01 21:03:51 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2013-02-01 19:07:36 +00:00
|
|
|
*
|
2022-06-01 21:03:51 +01:00
|
|
|
* 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.
|
2013-11-03 20:28:04 +00:00
|
|
|
*
|
2022-06-01 21:03:51 +01:00
|
|
|
* 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.
|
2013-02-01 19:07:36 +00:00
|
|
|
*
|
2022-06-01 21:03:51 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-02-01 19:07:36 +00:00
|
|
|
*/
|
|
|
|
|
2013-11-03 20:28:04 +00:00
|
|
|
#pragma once
|
2013-02-01 19:07:36 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
2014-09-06 17:16:56 +01:00
|
|
|
|
2018-03-19 01:36:12 +00:00
|
|
|
#include "InstanceTask.h"
|
2023-05-16 00:40:56 +01:00
|
|
|
#include "ui/pages/BasePageProvider.h"
|
2013-04-22 21:39:41 +01:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
namespace Ui {
|
2013-02-01 19:07:36 +00:00
|
|
|
class NewInstanceDialog;
|
|
|
|
}
|
|
|
|
|
2018-03-19 01:36:12 +00:00
|
|
|
class PageContainer;
|
|
|
|
class QDialogButtonBox;
|
2019-07-09 20:51:19 +01:00
|
|
|
class ImportPage;
|
2021-03-23 23:59:43 +00:00
|
|
|
class FlamePage;
|
2018-03-19 01:36:12 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
class NewInstanceDialog : public QDialog, public BasePageProvider {
|
2013-02-01 19:07:36 +00:00
|
|
|
Q_OBJECT
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
public:
|
|
|
|
explicit NewInstanceDialog(const QString& initialGroup,
|
|
|
|
const QString& url = QString(),
|
|
|
|
const QMap<QString, QString>& extra_info = {},
|
|
|
|
QWidget* parent = 0);
|
|
|
|
~NewInstanceDialog();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
void updateDialogState();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
void setSuggestedPack(const QString& name = QString(), InstanceTask* task = nullptr);
|
|
|
|
void setSuggestedPack(const QString& name, QString version, InstanceTask* task = nullptr);
|
|
|
|
void setSuggestedIconFromFile(const QString& path, const QString& name);
|
|
|
|
void setSuggestedIcon(const QString& key);
|
2018-04-07 15:15:58 +01:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
InstanceTask* extractTask();
|
2018-03-19 01:36:12 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
QString dialogTitle() override;
|
|
|
|
QList<BasePage*> getPages() override;
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
QString instName() const;
|
|
|
|
QString instGroup() const;
|
|
|
|
QString iconKey() const;
|
2018-02-28 18:42:30 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
public slots:
|
2018-03-27 21:02:57 +01:00
|
|
|
void accept() override;
|
|
|
|
void reject() override;
|
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
private slots:
|
2013-08-10 17:34:08 +01:00
|
|
|
void on_iconButton_clicked();
|
2023-05-16 00:40:56 +01:00
|
|
|
void on_instNameTextBox_textChanged(const QString& arg1);
|
2018-02-28 18:42:30 +00:00
|
|
|
|
2023-05-16 00:40:56 +01:00
|
|
|
private:
|
|
|
|
Ui::NewInstanceDialog* ui = nullptr;
|
|
|
|
PageContainer* m_container = nullptr;
|
|
|
|
QDialogButtonBox* m_buttons = nullptr;
|
2018-02-28 18:42:30 +00:00
|
|
|
|
2013-08-10 17:34:08 +01:00
|
|
|
QString InstIconKey;
|
2023-05-16 00:40:56 +01:00
|
|
|
ImportPage* importPage = nullptr;
|
2018-03-19 01:36:12 +00:00
|
|
|
std::unique_ptr<InstanceTask> creationTask;
|
2018-04-07 15:15:58 +01:00
|
|
|
|
|
|
|
bool importIcon = false;
|
|
|
|
QString importIconPath;
|
|
|
|
QString importIconName;
|
|
|
|
|
2022-07-14 20:13:23 +01:00
|
|
|
QString importVersion;
|
|
|
|
|
2018-04-07 15:15:58 +01:00
|
|
|
void importIconNow();
|
2013-02-01 19:07:36 +00:00
|
|
|
};
|