Revert "NOISSUE simple/stupid default game options, UI only"
This reverts commit 497d9bec02
.
This commit is contained in:
parent
497d9bec02
commit
48b2f95129
@ -111,8 +111,6 @@ SET(MULTIMC_SOURCES
|
||||
pages/global/AccountListPage.h
|
||||
pages/global/CustomCommandsPage.cpp
|
||||
pages/global/CustomCommandsPage.h
|
||||
pages/global/DefaultGameOptionsPage.cpp
|
||||
pages/global/DefaultGameOptionsPage.h
|
||||
pages/global/ExternalToolsPage.cpp
|
||||
pages/global/ExternalToolsPage.h
|
||||
pages/global/JavaPage.cpp
|
||||
@ -244,7 +242,6 @@ SET(MULTIMC_UIS
|
||||
|
||||
# Global settings pages
|
||||
pages/global/AccountListPage.ui
|
||||
pages/global/DefaultGameOptionsPage.ui
|
||||
pages/global/ExternalToolsPage.ui
|
||||
pages/global/JavaPage.ui
|
||||
pages/global/MinecraftPage.ui
|
||||
|
@ -13,7 +13,6 @@
|
||||
#include "pages/global/PasteEEPage.h"
|
||||
#include "pages/global/PackagesPage.h"
|
||||
#include "pages/global/CustomCommandsPage.h"
|
||||
#include "pages/global/DefaultGameOptionsPage.h"
|
||||
|
||||
#include "themes/ITheme.h"
|
||||
#include "themes/SystemTheme.h"
|
||||
@ -486,11 +485,6 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
||||
// The cat
|
||||
m_settings->registerSetting("TheCat", false);
|
||||
|
||||
|
||||
// Default options
|
||||
m_settings->registerSetting("DefaultOptionsMode", "NoAutojump");
|
||||
m_settings->registerSetting("DefaultOptionsText", "autoJump:false");
|
||||
|
||||
m_settings->registerSetting("InstSortMode", "Name");
|
||||
m_settings->registerSetting("SelectedInstance", QString());
|
||||
|
||||
@ -525,7 +519,6 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
||||
m_globalSettingsProvider = std::make_shared<GenericPageProvider>(tr("Settings"));
|
||||
m_globalSettingsProvider->addPage<MultiMCSettingsPage>();
|
||||
m_globalSettingsProvider->addPage<MinecraftPage>();
|
||||
m_globalSettingsProvider->addPage<DefaultGameOptionsPage>();
|
||||
m_globalSettingsProvider->addPage<JavaPage>();
|
||||
m_globalSettingsProvider->addPage<LanguagePage>();
|
||||
m_globalSettingsProvider->addPage<CustomCommandsPage>();
|
||||
|
@ -1,110 +0,0 @@
|
||||
#include "DefaultGameOptionsPage.h"
|
||||
#include "ui_DefaultGameOptionsPage.h"
|
||||
#include "minecraft/MinecraftInstance.h"
|
||||
#include "minecraft/gameoptions/GameOptions.h"
|
||||
#include <QTabBar>
|
||||
#include "MultiMC.h"
|
||||
namespace {
|
||||
enum Mode {
|
||||
NoDefault = 0,
|
||||
NoAutojump = 1,
|
||||
Fulltext = 2
|
||||
};
|
||||
}
|
||||
|
||||
DefaultGameOptionsPage::DefaultGameOptionsPage(QWidget* parent) : QWidget(parent), ui(new Ui::DefaultGameOptionsPage)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->tabWidget->tabBar()->hide();
|
||||
ui->defaultOptionsMode->setId(ui->radioDisabled, NoDefault);
|
||||
ui->defaultOptionsMode->setId(ui->radioNoAutojump, NoAutojump);
|
||||
ui->defaultOptionsMode->setId(ui->radioFullText, Fulltext);
|
||||
loadSettings();
|
||||
updateEnabledWidgets();
|
||||
connect(ui->defaultOptionsMode, SIGNAL(buttonClicked(int)), SLOT(radioChanged(int)));
|
||||
}
|
||||
|
||||
bool DefaultGameOptionsPage::apply()
|
||||
{
|
||||
applySettings();
|
||||
return true;
|
||||
}
|
||||
|
||||
void DefaultGameOptionsPage::updateEnabledWidgets()
|
||||
{
|
||||
auto id = ui->defaultOptionsMode->checkedId();
|
||||
switch(id) {
|
||||
case NoDefault:
|
||||
default:
|
||||
case NoAutojump: {
|
||||
ui->textEdit->setEnabled(false);
|
||||
break;
|
||||
}
|
||||
case Fulltext: {
|
||||
ui->textEdit->setEnabled(true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void DefaultGameOptionsPage::radioChanged(int)
|
||||
{
|
||||
updateEnabledWidgets();
|
||||
}
|
||||
|
||||
|
||||
void DefaultGameOptionsPage::applySettings()
|
||||
{
|
||||
auto s = MMC->settings();
|
||||
|
||||
auto id = ui->defaultOptionsMode->checkedId();
|
||||
switch(id) {
|
||||
case NoDefault: {
|
||||
s->set("DefaultOptionsMode", "NoDefault");
|
||||
break;
|
||||
}
|
||||
default:
|
||||
case NoAutojump: {
|
||||
s->set("DefaultOptionsMode", "NoAutojump");
|
||||
break;
|
||||
}
|
||||
case Fulltext: {
|
||||
s->set("DefaultOptionsMode", "Fulltext");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
s->set("DefaultOptionsText", ui->textEdit->toPlainText());
|
||||
}
|
||||
|
||||
void DefaultGameOptionsPage::loadSettings()
|
||||
{
|
||||
auto s = MMC->settings();
|
||||
auto modeStr = s->get("DefaultOptionsMode").toString();
|
||||
if(modeStr == "NoDefault") {
|
||||
ui->radioDisabled->setChecked(true);
|
||||
} else if(modeStr == "Fulltext") {
|
||||
ui->radioFullText->setChecked(true);
|
||||
} else {
|
||||
ui->radioNoAutojump->setChecked(true);
|
||||
}
|
||||
ui->textEdit->setText(s->get("DefaultOptionsText").toString());
|
||||
}
|
||||
|
||||
|
||||
DefaultGameOptionsPage::~DefaultGameOptionsPage()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void DefaultGameOptionsPage::openedImpl()
|
||||
{
|
||||
}
|
||||
|
||||
void DefaultGameOptionsPage::closedImpl()
|
||||
{
|
||||
}
|
||||
|
||||
#include "DefaultGameOptionsPage.moc"
|
||||
|
||||
|
@ -1,73 +0,0 @@
|
||||
/* Copyright 2013-2019 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.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
#include <QString>
|
||||
|
||||
#include "pages/BasePage.h"
|
||||
#include <MultiMC.h>
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class DefaultGameOptionsPage;
|
||||
}
|
||||
|
||||
class GameOptions;
|
||||
class MinecraftInstance;
|
||||
|
||||
class DefaultGameOptionsPage : public QWidget, public BasePage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DefaultGameOptionsPage(QWidget *parent = 0);
|
||||
virtual ~DefaultGameOptionsPage();
|
||||
|
||||
void openedImpl() override;
|
||||
void closedImpl() override;
|
||||
|
||||
virtual QString displayName() const override
|
||||
{
|
||||
return tr("Game Options");
|
||||
}
|
||||
virtual QIcon icon() const override
|
||||
{
|
||||
return MMC->getThemedIcon("settings");
|
||||
}
|
||||
virtual QString id() const override
|
||||
{
|
||||
return "defaultgameoptions";
|
||||
}
|
||||
virtual QString helpPage() const override
|
||||
{
|
||||
return "Default-Game-Options";
|
||||
}
|
||||
|
||||
bool apply() override;
|
||||
|
||||
private:
|
||||
void applySettings();
|
||||
void loadSettings();
|
||||
void updateEnabledWidgets();
|
||||
|
||||
private slots:
|
||||
void radioChanged(int);
|
||||
|
||||
private: // data
|
||||
Ui::DefaultGameOptionsPage *ui = nullptr;
|
||||
};
|
||||
|
@ -1,96 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>DefaultGameOptionsPage</class>
|
||||
<widget class="QWidget" name="DefaultGameOptionsPage">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>706</width>
|
||||
<height>575</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="tab">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<attribute name="title">
|
||||
<string notr="true">Tab 1</string>
|
||||
</attribute>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="1" column="0">
|
||||
<widget class="QRadioButton" name="radioDisabled">
|
||||
<property name="text">
|
||||
<string>No Default</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">defaultOptionsMode</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QRadioButton" name="radioNoAutojump">
|
||||
<property name="text">
|
||||
<string>No Autojump</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">defaultOptionsMode</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QRadioButton" name="radioFullText">
|
||||
<property name="text">
|
||||
<string>Full Text</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">defaultOptionsMode</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" colspan="3">
|
||||
<widget class="QTextEdit" name="textEdit"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>tabWidget</tabstop>
|
||||
<tabstop>radioDisabled</tabstop>
|
||||
<tabstop>radioNoAutojump</tabstop>
|
||||
<tabstop>radioFullText</tabstop>
|
||||
<tabstop>textEdit</tabstop>
|
||||
</tabstops>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<buttongroups>
|
||||
<buttongroup name="defaultOptionsMode"/>
|
||||
</buttongroups>
|
||||
</ui>
|
Loading…
Reference in New Issue
Block a user