2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 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"
|
|
|
|
#include "pages/BasePage.h"
|
2015-03-02 02:50:57 +05:30
|
|
|
#include <MultiMC.h>
|
2015-08-20 05:19:03 +05:30
|
|
|
#include "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
|
|
|
|
{
|
2014-07-21 03:17:46 +05:30
|
|
|
class MultiMCPage;
|
2013-01-16 06:16:27 +05:30
|
|
|
}
|
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
class MultiMCPage : public QWidget, public BasePage
|
2013-01-16 06:16:27 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-16 06:16:27 +05:30
|
|
|
public:
|
2014-07-21 03:17:46 +05:30
|
|
|
explicit MultiMCPage(QWidget *parent = 0);
|
|
|
|
~MultiMCPage();
|
2014-07-16 03:43:40 +05:30
|
|
|
|
|
|
|
QString displayName() const override
|
|
|
|
{
|
2016-03-23 03:58:47 +05:30
|
|
|
return "MultiMC";
|
2014-07-16 03:43:40 +05:30
|
|
|
}
|
|
|
|
QIcon icon() const override
|
|
|
|
{
|
2015-03-02 02:50:57 +05:30
|
|
|
return MMC->getThemedIcon("multimc");
|
2014-07-16 03:43:40 +05:30
|
|
|
}
|
|
|
|
QString id() const override
|
|
|
|
{
|
2014-07-21 03:17:46 +05:30
|
|
|
return "multimc-settings";
|
2014-07-16 03:43:40 +05:30
|
|
|
}
|
|
|
|
QString helpPage() const override
|
|
|
|
{
|
2014-07-21 03:17:46 +05:30
|
|
|
return "MultiMC-settings";
|
2014-07-16 03:43:40 +05:30
|
|
|
}
|
2014-07-21 03:17:46 +05:30
|
|
|
bool apply() override;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
private:
|
|
|
|
void applySettings();
|
|
|
|
void loadSettings();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2013-12-20 19:17:26 +05:30
|
|
|
void on_ftbLauncherBrowseBtn_clicked();
|
|
|
|
void on_ftbBrowseBtn_clicked();
|
|
|
|
|
2013-01-16 06:16:27 +05:30
|
|
|
void on_instDirBrowseBtn_clicked();
|
|
|
|
void on_modsDirBrowseBtn_clicked();
|
|
|
|
void on_lwjglDirBrowseBtn_clicked();
|
2014-07-16 03:43:40 +05:30
|
|
|
void on_iconsDirBrowseBtn_clicked();
|
2013-12-31 05:54:28 +05:30
|
|
|
|
2017-01-02 00:29:46 +05:30
|
|
|
void languageIndexChanged(int index);
|
|
|
|
|
2014-01-05 07:16:47 +05:30
|
|
|
/*!
|
|
|
|
* Updates the list of update channels in the combo box.
|
|
|
|
*/
|
|
|
|
void refreshUpdateChannelList();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Updates the channel description label.
|
|
|
|
*/
|
|
|
|
void refreshUpdateChannelDesc();
|
|
|
|
|
2014-11-11 05:20:17 +05:30
|
|
|
/*!
|
|
|
|
* Updates the font preview
|
|
|
|
*/
|
|
|
|
void refreshFontPreview();
|
|
|
|
|
|
|
|
void updateChannelSelectionChanged(int index);
|
2014-01-05 07:16:47 +05:30
|
|
|
|
2013-01-16 06:16:27 +05:30
|
|
|
private:
|
2014-07-21 03:17:46 +05:30
|
|
|
Ui::MultiMCPage *ui;
|
2014-01-05 07:16:47 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* Stores the currently selected update channel.
|
|
|
|
*/
|
|
|
|
QString m_currentUpdateChannel;
|
2014-11-11 05:20:17 +05:30
|
|
|
|
|
|
|
// default format for the font preview...
|
|
|
|
QTextCharFormat *defaultFormat;
|
2015-08-20 05:19:03 +05:30
|
|
|
|
|
|
|
std::unique_ptr<LogColorCache> m_colors;
|
2017-01-02 00:29:46 +05:30
|
|
|
|
|
|
|
std::shared_ptr<TranslationsModel> m_languageModel;
|
2013-01-16 06:16:27 +05:30
|
|
|
};
|