2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-01-16 06:16:27 +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 07:23:05 +05:30
|
|
|
*
|
2013-01-16 06:16:27 +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 07:23:05 +05:30
|
|
|
#pragma once
|
2013-01-16 06:16:27 +05:30
|
|
|
|
2013-11-24 11:06:16 +05:30
|
|
|
#include <memory>
|
2013-01-16 06:16:27 +05:30
|
|
|
#include <QDialog>
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "java/JavaChecker.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/pages/BasePage.h"
|
2021-11-20 20:52:22 +05:30
|
|
|
#include <Application.h>
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/ColorCache.h"
|
2017-01-02 00:29:46 +05:30
|
|
|
#include <translations/TranslationsModel.h>
|
2013-11-24 11:06:16 +05:30
|
|
|
|
2014-11-11 05:20:17 +05:30
|
|
|
class QTextCharFormat;
|
2013-02-26 00:54:46 +05:30
|
|
|
class SettingsObject;
|
2013-01-29 03:05:09 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
2021-10-13 05:29:25 +05:30
|
|
|
class LauncherPage;
|
2013-01-16 06:16:27 +05:30
|
|
|
}
|
|
|
|
|
2021-10-13 05:29:25 +05:30
|
|
|
class LauncherPage : public QWidget, public BasePage
|
2013-01-16 06:16:27 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-16 06:16:27 +05:30
|
|
|
public:
|
2021-10-13 05:29:25 +05:30
|
|
|
explicit LauncherPage(QWidget *parent = 0);
|
|
|
|
~LauncherPage();
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
QString displayName() const override
|
|
|
|
{
|
2021-10-16 04:12:01 +05:30
|
|
|
return "Launcher";
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
QIcon icon() const override
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
return APPLICATION->getThemedIcon("launcher");
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
QString id() const override
|
|
|
|
{
|
2021-10-16 04:12:01 +05:30
|
|
|
return "launcher-settings";
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
QString helpPage() const override
|
|
|
|
{
|
2021-10-16 04:12:01 +05:30
|
|
|
return "Launcher-settings";
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
bool apply() override;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
void applySettings();
|
|
|
|
void loadSettings();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_instDirBrowseBtn_clicked();
|
|
|
|
void on_modsDirBrowseBtn_clicked();
|
|
|
|
void on_iconsDirBrowseBtn_clicked();
|
2021-07-02 04:49:55 +05:30
|
|
|
void on_migrateDataFolderMacBtn_clicked();
|
2013-12-31 05:54:28 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
/*!
|
|
|
|
* Updates the list of update channels in the combo box.
|
|
|
|
*/
|
|
|
|
void refreshUpdateChannelList();
|
2014-01-05 07:16:47 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
/*!
|
|
|
|
* Updates the channel description label.
|
|
|
|
*/
|
|
|
|
void refreshUpdateChannelDesc();
|
2014-01-05 07:16:47 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
/*!
|
|
|
|
* Updates the font preview
|
|
|
|
*/
|
|
|
|
void refreshFontPreview();
|
2014-11-11 05:20:17 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void updateChannelSelectionChanged(int index);
|
2014-01-05 07:16:47 +05:30
|
|
|
|
2013-01-16 06:16:27 +05:30
|
|
|
private:
|
2021-10-13 05:29:25 +05:30
|
|
|
Ui::LauncherPage *ui;
|
2014-01-05 07:16:47 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
/*!
|
|
|
|
* Stores the currently selected update channel.
|
|
|
|
*/
|
|
|
|
QString m_currentUpdateChannel;
|
2014-11-11 05:20:17 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// default format for the font preview...
|
|
|
|
QTextCharFormat *defaultFormat;
|
2015-08-20 05:19:03 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
std::unique_ptr<LogColorCache> m_colors;
|
2017-01-02 00:29:46 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
std::shared_ptr<TranslationsModel> m_languageModel;
|
2013-01-16 06:16:27 +05:30
|
|
|
};
|