2017-01-08 03:58:05 +00:00
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-02-01 19:07:36 +00:00
|
|
|
*
|
|
|
|
* 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-03 20:28:04 +00:00
|
|
|
*
|
2013-02-01 19:07:36 +00:00
|
|
|
* 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-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
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseVersion.h"
|
2013-04-22 21:39:41 +01:00
|
|
|
|
2013-11-03 20:28:04 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
2013-02-01 19:07:36 +00:00
|
|
|
class NewInstanceDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class NewInstanceDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-02-01 19:07:36 +00:00
|
|
|
public:
|
2016-04-11 00:30:50 +01:00
|
|
|
explicit NewInstanceDialog(const QString & initialGroup, QWidget *parent = 0);
|
2013-02-01 19:07:36 +00:00
|
|
|
~NewInstanceDialog();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-04-22 21:39:41 +01:00
|
|
|
void updateDialogState();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2015-08-21 08:00:35 +01:00
|
|
|
void setSelectedVersion(BaseVersionPtr version);
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-04-22 21:39:41 +01:00
|
|
|
void loadVersionList();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-04-22 23:15:18 +01:00
|
|
|
QString instName() const;
|
2014-11-08 20:17:28 +00:00
|
|
|
QString instGroup() const;
|
2013-04-22 23:15:18 +01:00
|
|
|
QString iconKey() const;
|
2015-02-12 21:01:20 +00:00
|
|
|
QUrl modpackUrl() const;
|
2013-09-15 23:54:39 +01:00
|
|
|
BaseVersionPtr selectedVersion() const;
|
2013-11-03 20:28:04 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2013-04-22 21:39:41 +01:00
|
|
|
void on_btnChangeVersion_clicked();
|
2013-08-10 17:34:08 +01:00
|
|
|
void on_iconButton_clicked();
|
2015-02-12 21:01:20 +00:00
|
|
|
void on_modpackBtn_clicked();
|
2013-05-07 03:28:28 +01:00
|
|
|
void on_instNameTextBox_textChanged(const QString &arg1);
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-02-01 19:07:36 +00:00
|
|
|
private:
|
|
|
|
Ui::NewInstanceDialog *ui;
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-09-15 23:54:39 +01:00
|
|
|
BaseVersionPtr m_selectedVersion;
|
2013-08-10 17:34:08 +01:00
|
|
|
QString InstIconKey;
|
2015-08-21 08:00:35 +01:00
|
|
|
QString originalPlaceholderText;
|
2013-02-01 19:07:36 +00:00
|
|
|
};
|