pollymc/launcher/ui/dialogs/NewInstanceDialog.h

102 lines
3.0 KiB
C
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0-only
/*
* PolyMC - Minecraft Launcher
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
2013-02-02 00:37:36 +05:30
*
* 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.
2013-02-02 00:37:36 +05:30
*
* 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-02 00:37:36 +05:30
*/
#pragma once
2013-02-02 00:37:36 +05:30
#include <QDialog>
2014-09-06 21:46:56 +05:30
#include "ui/pages/BasePageProvider.h"
2018-03-19 07:06:12 +05:30
#include "InstanceTask.h"
namespace Ui
{
2013-02-02 00:37:36 +05:30
class NewInstanceDialog;
}
2018-03-19 07:06:12 +05:30
class PageContainer;
class QDialogButtonBox;
class ImportPage;
class FlamePage;
2018-03-19 07:06:12 +05:30
class NewInstanceDialog : public QDialog, public BasePageProvider
2013-02-02 00:37:36 +05:30
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2013-02-02 00:37:36 +05:30
public:
2018-07-15 18:21:05 +05:30
explicit NewInstanceDialog(const QString & initialGroup, const QString & url = QString(), QWidget *parent = 0);
~NewInstanceDialog();
2018-07-15 18:21:05 +05:30
void updateDialogState();
void setSuggestedPack(const QString& name = QString(), InstanceTask * task = nullptr);
void setSuggestedPack(const QString& name, QString version, InstanceTask * task = nullptr);
2018-07-15 18:21:05 +05:30
void setSuggestedIconFromFile(const QString &path, const QString &name);
void setSuggestedIcon(const QString &key);
2018-07-15 18:21:05 +05:30
InstanceTask * extractTask();
2018-03-19 07:06:12 +05:30
2018-07-15 18:21:05 +05:30
QString dialogTitle() override;
QList<BasePage *> getPages() override;
2018-07-15 18:21:05 +05:30
QString instName() const;
QString instGroup() const;
QString iconKey() const;
public slots:
2018-07-15 18:21:05 +05:30
void accept() override;
void reject() override;
private slots:
2018-07-15 18:21:05 +05:30
void on_iconButton_clicked();
void on_instNameTextBox_textChanged(const QString &arg1);
2013-02-02 00:37:36 +05:30
private:
2018-07-15 18:21:05 +05:30
Ui::NewInstanceDialog *ui = nullptr;
PageContainer * m_container = nullptr;
QDialogButtonBox * m_buttons = nullptr;
2018-07-15 18:21:05 +05:30
QString InstIconKey;
ImportPage *importPage = nullptr;
2018-07-15 18:21:05 +05:30
std::unique_ptr<InstanceTask> creationTask;
2018-07-15 18:21:05 +05:30
bool importIcon = false;
QString importIconPath;
QString importIconName;
QString importVersion;
2018-07-15 18:21:05 +05:30
void importIconNow();
2013-02-02 00:37:36 +05:30
};