pollymc/launcher/ui/pages/global/LauncherPage.h

125 lines
3.2 KiB
C
Raw Normal View History

2022-03-21 00:31:08 +05:30
// SPDX-License-Identifier: GPL-3.0-only
/*
* PolyMC - Minecraft Launcher
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
2013-01-16 06:16:27 +05:30
*
2022-03-21 00:31:08 +05:30
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
2022-03-21 00:31:08 +05:30
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2013-01-16 06:16:27 +05:30
*
2022-03-21 00:31:08 +05:30
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* This file incorporates work covered by the following copyright and
* permission notice:
*
* Copyright 2013-2021 MultiMC Contributors
*
* 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
*
* 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-01-16 06:16:27 +05:30
*/
#pragma once
2013-01-16 06:16:27 +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 "ui/pages/BasePage.h"
2021-11-20 20:52:22 +05:30
#include <Application.h>
#include "ui/ColorCache.h"
#include <translations/TranslationsModel.h>
class QTextCharFormat;
class SettingsObject;
2013-01-29 03:05:09 +05:30
namespace Ui
{
class LauncherPage;
2013-01-16 06:16:27 +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-01-16 06:16:27 +05:30
public:
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;
void retranslate() override;
private:
2018-07-15 18:21:05 +05:30
void applySettings();
void loadSettings();
private
slots:
2018-07-15 18:21:05 +05:30
void on_instDirBrowseBtn_clicked();
void on_modsDirBrowseBtn_clicked();
void on_iconsDirBrowseBtn_clicked();
void on_metadataDisableBtn_clicked();
2018-07-15 18:21:05 +05:30
/*!
* Updates the list of update channels in the combo box.
*/
void refreshUpdateChannelList();
2018-07-15 18:21:05 +05:30
/*!
* Updates the channel description label.
*/
void refreshUpdateChannelDesc();
2018-07-15 18:21:05 +05:30
/*!
* Updates the font preview
*/
void refreshFontPreview();
void updateChannelSelectionChanged(int index);
2013-01-16 06:16:27 +05:30
private:
Ui::LauncherPage *ui;
2018-07-15 18:21:05 +05:30
/*!
* Stores the currently selected update channel.
*/
QString m_currentUpdateChannel;
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;
2018-07-15 18:21:05 +05:30
std::shared_ptr<TranslationsModel> m_languageModel;
2013-01-16 06:16:27 +05:30
};