2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-02-02 00:37:36 +05:30
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 01:58:04 +05:30
|
|
|
*
|
2013-02-02 00:37:36 +05:30
|
|
|
* 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-11-04 01:58:04 +05:30
|
|
|
#pragma once
|
2013-02-02 00:37:36 +05:30
|
|
|
|
|
|
|
#include <QDialog>
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "BaseVersion.h"
|
2018-03-19 07:06:12 +05:30
|
|
|
#include "pages/BasePageProvider.h"
|
|
|
|
#include "InstanceTask.h"
|
2013-04-23 02:09:41 +05:30
|
|
|
|
2013-11-04 01:58:04 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
2013-02-02 00:37:36 +05:30
|
|
|
class NewInstanceDialog;
|
|
|
|
}
|
|
|
|
|
2018-03-19 07:06:12 +05:30
|
|
|
class PageContainer;
|
|
|
|
class QDialogButtonBox;
|
2019-07-10 01:21:19 +05:30
|
|
|
class ImportPage;
|
2021-03-24 05:29:43 +05:30
|
|
|
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-11-04 01:58:04 +05:30
|
|
|
|
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();
|
2013-11-04 01:58:04 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void updateDialogState();
|
2013-11-04 01:58:04 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void setSuggestedPack(const QString & name = QString(), InstanceTask * task = nullptr);
|
|
|
|
void setSuggestedIconFromFile(const QString &path, const QString &name);
|
2021-06-19 19:49:39 +05:30
|
|
|
void setSuggestedIcon(const QString &key);
|
2018-04-07 19:45:58 +05:30
|
|
|
|
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;
|
2013-11-04 01:58:04 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QString instName() const;
|
|
|
|
QString instGroup() const;
|
|
|
|
QString iconKey() const;
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-03-28 01:32:57 +05:30
|
|
|
public slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void accept() override;
|
|
|
|
void reject() override;
|
2018-03-28 01:32:57 +05:30
|
|
|
|
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_iconButton_clicked();
|
|
|
|
void on_instNameTextBox_textChanged(const QString &arg1);
|
2018-03-01 00:12:30 +05:30
|
|
|
|
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-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QString InstIconKey;
|
2019-07-10 01:21:19 +05:30
|
|
|
ImportPage *importPage = nullptr;
|
2021-03-24 05:29:43 +05:30
|
|
|
FlamePage *flamePage = nullptr;
|
2018-07-15 18:21:05 +05:30
|
|
|
std::unique_ptr<InstanceTask> creationTask;
|
2018-04-07 19:45:58 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
bool importIcon = false;
|
|
|
|
QString importIconPath;
|
|
|
|
QString importIconName;
|
2018-04-07 19:45:58 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void importIconNow();
|
2013-02-02 00:37:36 +05:30
|
|
|
};
|