2022-03-20 19:01:08 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-11-03 03:54:57 +00:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-03-20 19:01:08 +00:00
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2022-03-27 15:08:11 +01:00
|
|
|
* Copyright (c) 2022 dada513 <dada513@protonmail.com>
|
2023-06-28 22:02:34 +01:00
|
|
|
* Copyright (C) 2022 Tayou <git@tayou.org>
|
2013-01-16 00:46:27 +00:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* 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.
|
2013-10-28 19:55:12 +00:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* 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 00:46:27 +00:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* 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 00:46:27 +00:00
|
|
|
*/
|
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
#include "LauncherPage.h"
|
|
|
|
#include "ui_LauncherPage.h"
|
2014-07-15 23:13:40 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QDir>
|
2014-07-15 23:13:40 +01:00
|
|
|
#include <QFileDialog>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QMenuBar>
|
2014-07-15 23:13:40 +01:00
|
|
|
#include <QMessageBox>
|
2014-11-10 23:50:17 +00:00
|
|
|
#include <QTextCharFormat>
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-10-05 00:47:27 +01:00
|
|
|
#include <FileSystem.h>
|
2021-11-20 15:22:22 +00:00
|
|
|
#include "Application.h"
|
2015-12-28 03:45:49 +00:00
|
|
|
#include "BuildConfig.h"
|
2022-10-30 17:54:52 +00:00
|
|
|
#include "DesktopServices.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "settings/SettingsObject.h"
|
2021-11-22 02:55:16 +00:00
|
|
|
#include "ui/themes/ITheme.h"
|
2022-11-01 21:45:15 +00:00
|
|
|
#include "updater/ExternalUpdater.h"
|
2013-01-16 00:46:27 +00:00
|
|
|
|
2021-07-02 00:19:55 +01:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QProcess>
|
|
|
|
|
2014-05-11 18:13:21 +01:00
|
|
|
// FIXME: possibly move elsewhere
|
2023-08-02 17:35:35 +01:00
|
|
|
enum InstSortMode {
|
2014-05-11 18:13:21 +01:00
|
|
|
// Sort alphabetically by name.
|
|
|
|
Sort_Name,
|
|
|
|
// Sort by which instance was launched most recently.
|
|
|
|
Sort_LastLaunch
|
|
|
|
};
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
LauncherPage::LauncherPage(QWidget* parent) : QWidget(parent), ui(new Ui::LauncherPage)
|
2013-01-16 00:46:27 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2015-08-20 00:49:03 +01:00
|
|
|
auto origForeground = ui->fontPreview->palette().color(ui->fontPreview->foregroundRole());
|
|
|
|
auto origBackground = ui->fontPreview->palette().color(ui->fontPreview->backgroundRole());
|
|
|
|
m_colors.reset(new LogColorCache(origForeground, origBackground));
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-11-03 23:11:20 +00:00
|
|
|
ui->sortingModeGroup->setId(ui->sortByNameBtn, Sort_Name);
|
|
|
|
ui->sortingModeGroup->setId(ui->sortLastLaunchedBtn, Sort_LastLaunch);
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2014-11-10 23:50:17 +00:00
|
|
|
defaultFormat = new QTextCharFormat(ui->fontPreview->currentCharFormat());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
m_languageModel = APPLICATION->translations();
|
2014-07-20 22:47:46 +01:00
|
|
|
loadSettings();
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-11-01 21:45:15 +00:00
|
|
|
ui->updateSettingsBox->setHidden(!APPLICATION->updater());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2014-11-10 23:50:17 +00:00
|
|
|
connect(ui->fontSizeBox, SIGNAL(valueChanged(int)), SLOT(refreshFontPreview()));
|
|
|
|
connect(ui->consoleFont, SIGNAL(currentFontChanged(QFont)), SLOT(refreshFontPreview()));
|
2023-01-20 14:13:25 +00:00
|
|
|
|
|
|
|
connect(ui->themeCustomizationWidget, &ThemeCustomizationWidget::currentCatChanged, APPLICATION, &Application::currentCatChanged);
|
2013-01-16 00:46:27 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
LauncherPage::~LauncherPage()
|
2013-01-16 00:46:27 +00:00
|
|
|
{
|
|
|
|
delete ui;
|
2019-08-10 18:58:58 +01:00
|
|
|
delete defaultFormat;
|
2013-01-16 00:46:27 +00:00
|
|
|
}
|
2014-01-02 02:20:34 +00:00
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
bool LauncherPage::apply()
|
2014-01-02 02:20:34 +00:00
|
|
|
{
|
2014-07-20 22:47:46 +01:00
|
|
|
applySettings();
|
|
|
|
return true;
|
2013-01-16 00:46:27 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::on_instDirBrowseBtn_clicked()
|
2013-01-16 00:46:27 +00:00
|
|
|
{
|
2017-12-03 18:21:04 +00:00
|
|
|
QString raw_dir = QFileDialog::getExistingDirectory(this, tr("Instance Folder"), ui->instDirTextBox->text());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-10-28 19:55:12 +00:00
|
|
|
// do not allow current dir - it's dirty. Do not allow dirs that don't exist
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!raw_dir.isEmpty() && QDir(raw_dir).exists()) {
|
2017-12-03 18:21:04 +00:00
|
|
|
QString cooked_dir = FS::NormalizePath(raw_dir);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (FS::checkProblemticPathJava(QDir(cooked_dir))) {
|
2014-07-27 14:50:03 +01:00
|
|
|
QMessageBox warning;
|
2023-08-02 17:35:35 +01:00
|
|
|
warning.setText(
|
|
|
|
tr("You're trying to specify an instance folder which\'s path "
|
|
|
|
"contains at least one \'!\'. "
|
|
|
|
"Java is known to cause problems if that is the case, your "
|
|
|
|
"instances (probably) won't start!"));
|
2014-07-27 14:50:03 +01:00
|
|
|
warning.setInformativeText(
|
|
|
|
tr("Do you really want to use this path? "
|
|
|
|
"Selecting \"No\" will close this and not alter your instance path."));
|
2022-03-28 19:55:03 +01:00
|
|
|
warning.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
|
2014-07-27 14:50:03 +01:00
|
|
|
int result = warning.exec();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (result == QMessageBox::Ok) {
|
2014-07-27 14:50:03 +01:00
|
|
|
ui->instDirTextBox->setText(cooked_dir);
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
} else if (DesktopServices::isFlatpak() && raw_dir.startsWith("/run/user")) {
|
2022-03-27 15:08:11 +01:00
|
|
|
QMessageBox warning;
|
|
|
|
warning.setText(tr("You're trying to specify an instance folder "
|
2023-08-02 17:35:35 +01:00
|
|
|
"which was granted temporarily via Flatpak.\n"
|
|
|
|
"This is known to cause problems. "
|
|
|
|
"After a restart the launcher might break, "
|
|
|
|
"because it will no longer have access to that directory.\n\n"
|
|
|
|
"Granting %1 access to it via Flatseal is recommended.")
|
|
|
|
.arg(BuildConfig.LAUNCHER_DISPLAYNAME));
|
|
|
|
warning.setInformativeText(tr("Do you want to proceed anyway?"));
|
2022-03-28 19:55:03 +01:00
|
|
|
warning.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
|
2022-03-27 15:08:11 +01:00
|
|
|
int result = warning.exec();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (result == QMessageBox::Ok) {
|
2022-03-27 15:08:11 +01:00
|
|
|
ui->instDirTextBox->setText(cooked_dir);
|
2023-03-13 15:37:45 +00:00
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2014-07-27 14:50:03 +01:00
|
|
|
ui->instDirTextBox->setText(cooked_dir);
|
|
|
|
}
|
2013-10-28 19:55:12 +00:00
|
|
|
}
|
2013-01-16 00:46:27 +00:00
|
|
|
}
|
2014-07-27 14:50:03 +01:00
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::on_iconsDirBrowseBtn_clicked()
|
2013-12-31 00:24:28 +00:00
|
|
|
{
|
2017-12-03 18:21:04 +00:00
|
|
|
QString raw_dir = QFileDialog::getExistingDirectory(this, tr("Icons Folder"), ui->iconsDirTextBox->text());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-12-31 00:24:28 +00:00
|
|
|
// do not allow current dir - it's dirty. Do not allow dirs that don't exist
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!raw_dir.isEmpty() && QDir(raw_dir).exists()) {
|
2017-12-03 18:21:04 +00:00
|
|
|
QString cooked_dir = FS::NormalizePath(raw_dir);
|
2013-12-31 00:24:28 +00:00
|
|
|
ui->iconsDirTextBox->setText(cooked_dir);
|
|
|
|
}
|
|
|
|
}
|
2023-03-13 15:37:45 +00:00
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::on_modsDirBrowseBtn_clicked()
|
2013-01-16 00:46:27 +00:00
|
|
|
{
|
2017-12-03 18:21:04 +00:00
|
|
|
QString raw_dir = QFileDialog::getExistingDirectory(this, tr("Mods Folder"), ui->modsDirTextBox->text());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-10-29 21:13:42 +00:00
|
|
|
// do not allow current dir - it's dirty. Do not allow dirs that don't exist
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!raw_dir.isEmpty() && QDir(raw_dir).exists()) {
|
2017-12-03 18:21:04 +00:00
|
|
|
QString cooked_dir = FS::NormalizePath(raw_dir);
|
2013-10-29 21:13:42 +00:00
|
|
|
ui->modsDirTextBox->setText(cooked_dir);
|
2013-10-28 19:55:12 +00:00
|
|
|
}
|
2013-01-16 00:46:27 +00:00
|
|
|
}
|
|
|
|
|
2023-03-13 15:37:45 +00:00
|
|
|
void LauncherPage::on_downloadsDirBrowseBtn_clicked()
|
|
|
|
{
|
|
|
|
QString raw_dir = QFileDialog::getExistingDirectory(this, tr("Downloads Folder"), ui->downloadsDirTextBox->text());
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!raw_dir.isEmpty() && QDir(raw_dir).exists()) {
|
2023-03-13 15:37:45 +00:00
|
|
|
QString cooked_dir = FS::NormalizePath(raw_dir);
|
|
|
|
ui->downloadsDirTextBox->setText(cooked_dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 14:19:23 +01:00
|
|
|
void LauncherPage::on_metadataDisableBtn_clicked()
|
|
|
|
{
|
|
|
|
ui->metadataWarningLabel->setHidden(!ui->metadataDisableBtn->isChecked());
|
|
|
|
}
|
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::applySettings()
|
2014-01-05 01:46:47 +00:00
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
auto s = APPLICATION->settings();
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-01-28 21:35:09 +00:00
|
|
|
// Updates
|
2023-08-02 17:35:35 +01:00
|
|
|
if (APPLICATION->updater()) {
|
2022-11-01 21:45:15 +00:00
|
|
|
APPLICATION->updater()->setAutomaticallyChecksForUpdates(ui->autoUpdateCheckBox->isChecked());
|
2022-04-26 00:33:17 +01:00
|
|
|
}
|
|
|
|
|
2022-04-15 23:25:37 +01:00
|
|
|
s->set("MenuBarInsteadOfToolBar", ui->preferMenuBarCheckBox->isChecked());
|
|
|
|
|
2014-11-09 18:48:35 +00:00
|
|
|
// Console settings
|
2014-11-10 23:50:17 +00:00
|
|
|
s->set("ShowConsole", ui->showConsoleCheck->isChecked());
|
|
|
|
s->set("AutoCloseConsole", ui->autoCloseConsoleCheck->isChecked());
|
2016-11-03 23:19:32 +00:00
|
|
|
s->set("ShowConsoleOnError", ui->showConsoleErrorCheck->isChecked());
|
2014-11-09 18:48:35 +00:00
|
|
|
QString consoleFontFamily = ui->consoleFont->currentFont().family();
|
|
|
|
s->set("ConsoleFont", consoleFontFamily);
|
2014-11-10 23:50:17 +00:00
|
|
|
s->set("ConsoleFontSize", ui->fontSizeBox->value());
|
2015-06-11 00:49:13 +01:00
|
|
|
s->set("ConsoleMaxLines", ui->lineLimitSpinBox->value());
|
|
|
|
s->set("ConsoleOverflowStop", ui->checkStopLogging->checkState() != Qt::Unchecked);
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-01-28 21:35:09 +00:00
|
|
|
// Folders
|
|
|
|
// TODO: Offer to move instances to new instance folder.
|
2013-02-25 19:24:46 +00:00
|
|
|
s->set("InstanceDir", ui->instDirTextBox->text());
|
|
|
|
s->set("CentralModsDir", ui->modsDirTextBox->text());
|
2013-12-31 00:24:28 +00:00
|
|
|
s->set("IconsDir", ui->iconsDirTextBox->text());
|
2023-03-13 15:37:45 +00:00
|
|
|
s->set("DownloadsDir", ui->downloadsDirTextBox->text());
|
2023-03-28 03:01:53 +01:00
|
|
|
s->set("DownloadsDirWatchRecursive", ui->downloadsDirWatchRecursiveCheckBox->isChecked());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
auto sortMode = (InstSortMode)ui->sortingModeGroup->checkedId();
|
2023-08-02 17:35:35 +01:00
|
|
|
switch (sortMode) {
|
|
|
|
case Sort_LastLaunch:
|
|
|
|
s->set("InstSortMode", "LastLaunch");
|
|
|
|
break;
|
|
|
|
case Sort_Name:
|
|
|
|
default:
|
|
|
|
s->set("InstSortMode", "Name");
|
|
|
|
break;
|
2013-11-03 23:11:20 +00:00
|
|
|
}
|
2022-04-17 14:19:23 +01:00
|
|
|
|
|
|
|
// Mods
|
2022-04-21 19:45:20 +01:00
|
|
|
s->set("ModMetadataDisabled", ui->metadataDisableBtn->isChecked());
|
2013-01-28 21:35:09 +00:00
|
|
|
}
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::loadSettings()
|
2013-01-28 21:35:09 +00:00
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
auto s = APPLICATION->settings();
|
2013-01-28 21:35:09 +00:00
|
|
|
// Updates
|
2023-08-02 17:35:35 +01:00
|
|
|
if (APPLICATION->updater()) {
|
2022-11-01 21:45:15 +00:00
|
|
|
ui->autoUpdateCheckBox->setChecked(APPLICATION->updater()->getAutomaticallyChecksForUpdates());
|
2022-04-26 00:33:17 +01:00
|
|
|
}
|
|
|
|
|
2022-04-15 23:25:37 +01:00
|
|
|
// Toolbar/menu bar settings (not applicable if native menu bar is present)
|
2022-04-17 21:32:51 +01:00
|
|
|
ui->toolsBox->setEnabled(!QMenuBar().isNativeMenuBar());
|
|
|
|
#ifdef Q_OS_MACOS
|
2022-04-15 23:25:37 +01:00
|
|
|
ui->toolsBox->setVisible(!QMenuBar().isNativeMenuBar());
|
2022-04-17 21:32:51 +01:00
|
|
|
#endif
|
2022-04-15 23:25:37 +01:00
|
|
|
ui->preferMenuBarCheckBox->setChecked(s->get("MenuBarInsteadOfToolBar").toBool());
|
|
|
|
|
2014-11-09 18:48:35 +00:00
|
|
|
// Console settings
|
2014-11-10 23:50:17 +00:00
|
|
|
ui->showConsoleCheck->setChecked(s->get("ShowConsole").toBool());
|
|
|
|
ui->autoCloseConsoleCheck->setChecked(s->get("AutoCloseConsole").toBool());
|
2016-11-03 23:19:32 +00:00
|
|
|
ui->showConsoleErrorCheck->setChecked(s->get("ShowConsoleOnError").toBool());
|
2021-11-20 15:22:22 +00:00
|
|
|
QString fontFamily = APPLICATION->settings()->get("ConsoleFont").toString();
|
2014-11-09 18:48:35 +00:00
|
|
|
QFont consoleFont(fontFamily);
|
|
|
|
ui->consoleFont->setCurrentFont(consoleFont);
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2014-11-10 23:50:17 +00:00
|
|
|
bool conversionOk = true;
|
2021-11-20 15:22:22 +00:00
|
|
|
int fontSize = APPLICATION->settings()->get("ConsoleFontSize").toInt(&conversionOk);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!conversionOk) {
|
2014-11-10 23:50:17 +00:00
|
|
|
fontSize = 11;
|
|
|
|
}
|
|
|
|
ui->fontSizeBox->setValue(fontSize);
|
|
|
|
refreshFontPreview();
|
2015-06-11 00:49:13 +01:00
|
|
|
ui->lineLimitSpinBox->setValue(s->get("ConsoleMaxLines").toInt());
|
|
|
|
ui->checkStopLogging->setChecked(s->get("ConsoleOverflowStop").toBool());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-01-28 21:35:09 +00:00
|
|
|
// Folders
|
2013-02-25 19:24:46 +00:00
|
|
|
ui->instDirTextBox->setText(s->get("InstanceDir").toString());
|
|
|
|
ui->modsDirTextBox->setText(s->get("CentralModsDir").toString());
|
2013-12-31 00:24:28 +00:00
|
|
|
ui->iconsDirTextBox->setText(s->get("IconsDir").toString());
|
2023-03-13 15:37:45 +00:00
|
|
|
ui->downloadsDirTextBox->setText(s->get("DownloadsDir").toString());
|
2023-04-08 15:26:56 +01:00
|
|
|
ui->downloadsDirWatchRecursiveCheckBox->setChecked(s->get("DownloadsDirWatchRecursive").toBool());
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2013-11-03 23:11:20 +00:00
|
|
|
QString sortMode = s->get("InstSortMode").toString();
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (sortMode == "LastLaunch") {
|
2013-11-03 23:11:20 +00:00
|
|
|
ui->sortLastLaunchedBtn->setChecked(true);
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2013-11-03 23:11:20 +00:00
|
|
|
ui->sortByNameBtn->setChecked(true);
|
|
|
|
}
|
2022-04-17 14:19:23 +01:00
|
|
|
|
|
|
|
// Mods
|
2022-06-04 14:30:34 +01:00
|
|
|
ui->metadataDisableBtn->setChecked(s->get("ModMetadataDisabled").toBool());
|
2022-04-17 14:19:23 +01:00
|
|
|
ui->metadataWarningLabel->setHidden(!ui->metadataDisableBtn->isChecked());
|
2013-11-24 05:36:16 +00:00
|
|
|
}
|
2014-11-10 23:50:17 +00:00
|
|
|
|
2021-10-13 00:59:25 +01:00
|
|
|
void LauncherPage::refreshFontPreview()
|
2014-11-10 23:50:17 +00:00
|
|
|
{
|
|
|
|
int fontSize = ui->fontSizeBox->value();
|
|
|
|
QString fontFamily = ui->consoleFont->currentFont().family();
|
|
|
|
ui->fontPreview->clear();
|
|
|
|
defaultFormat->setFont(QFont(fontFamily, fontSize));
|
|
|
|
{
|
|
|
|
QTextCharFormat format(*defaultFormat);
|
2015-08-20 00:49:03 +01:00
|
|
|
format.setForeground(m_colors->getFront(MessageLevel::Error));
|
2014-11-10 23:50:17 +00:00
|
|
|
// append a paragraph/line
|
|
|
|
auto workCursor = ui->fontPreview->textCursor();
|
|
|
|
workCursor.movePosition(QTextCursor::End);
|
|
|
|
workCursor.insertText(tr("[Something/ERROR] A spooky error!"), format);
|
|
|
|
workCursor.insertBlock();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
QTextCharFormat format(*defaultFormat);
|
2015-08-20 00:49:03 +01:00
|
|
|
format.setForeground(m_colors->getFront(MessageLevel::Message));
|
2014-11-10 23:50:17 +00:00
|
|
|
// append a paragraph/line
|
|
|
|
auto workCursor = ui->fontPreview->textCursor();
|
|
|
|
workCursor.movePosition(QTextCursor::End);
|
|
|
|
workCursor.insertText(tr("[Test/INFO] A harmless message..."), format);
|
|
|
|
workCursor.insertBlock();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
QTextCharFormat format(*defaultFormat);
|
2015-08-20 00:49:03 +01:00
|
|
|
format.setForeground(m_colors->getFront(MessageLevel::Warning));
|
2014-11-10 23:50:17 +00:00
|
|
|
// append a paragraph/line
|
|
|
|
auto workCursor = ui->fontPreview->textCursor();
|
|
|
|
workCursor.movePosition(QTextCursor::End);
|
|
|
|
workCursor.insertText(tr("[Something/WARN] A not so spooky warning."), format);
|
|
|
|
workCursor.insertBlock();
|
|
|
|
}
|
2015-05-04 00:20:48 +01:00
|
|
|
}
|
2022-02-22 18:23:53 +00:00
|
|
|
|
|
|
|
void LauncherPage::retranslate()
|
|
|
|
{
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|