pollymc/launcher/dialogs/NewInstanceDialog.h

81 lines
2.1 KiB
C
Raw Normal View History

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-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.
*/
#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"
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();
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);
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;
FlamePage *flamePage = 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;
2018-07-15 18:21:05 +05:30
void importIconNow();
2013-02-02 00:37:36 +05:30
};