|
@@ -12,6 +12,7 @@
|
|
|
#include <QScrollBar>
|
|
|
#include <QFileDialog>
|
|
|
#include <QMetaObject>
|
|
|
+#include <QMessageBox>
|
|
|
|
|
|
using namespace SettingsWidgetPrivate;
|
|
|
|
|
@@ -20,6 +21,8 @@ SettingsWidget::SettingsWidget(PatchList *legacy_patches, QWidget *parent)
|
|
|
, ui(new Ui::SettingsWidget)
|
|
|
, legacy_patches_(legacy_patches)
|
|
|
{
|
|
|
+ settings_changed_ = false;
|
|
|
+
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
combobox_scrolling_disabler = new ComboboxScrollingDisabler();
|
|
@@ -38,6 +41,9 @@ SettingsWidget::SettingsWidget(PatchList *legacy_patches, QWidget *parent)
|
|
|
connect(legacy_patches, &PatchList::patchOperationsStarted, this, &SettingsWidget::onPatchTotalOperationsStarted);
|
|
|
connect(legacy_patches, &PatchList::patchOperationsFinished, this, &SettingsWidget::onPatchTotalOperationsFinished);
|
|
|
|
|
|
+ ui->apply_changes_button->hide();
|
|
|
+ ui->apply_changes_label->hide();
|
|
|
+
|
|
|
setActualParametersValues();
|
|
|
}
|
|
|
|
|
@@ -188,20 +194,23 @@ void SettingsWidget::resizeEvent(QResizeEvent *)
|
|
|
ui->apply_changes_button->setMinimumSize(QSize(160, 60) * coefficient);
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_interface_scale_combobox_currentIndexChanged(const QString &arg1)
|
|
|
-{
|
|
|
- MainWindow* window = qobject_cast<MainWindow*>(qApp->activeWindow());
|
|
|
-
|
|
|
- if (!window) {
|
|
|
- ui->interface_scale_combobox->setCurrentText(Settings::getValue("General/UI_scale").toString() + "%");
|
|
|
- qDebug() << "CANNOT FIND MAIN WINDOW!!!";
|
|
|
- return;
|
|
|
+void SettingsWidget::processParameterChange() {
|
|
|
+ if (!settings_changed_) {
|
|
|
+ settings_changed_ = true;
|
|
|
+ settings_backup_ = Settings::createSettingsBackup();
|
|
|
+ emit SettingsChanged();
|
|
|
+ ui->apply_changes_label->show();
|
|
|
+ ui->apply_changes_button->show();
|
|
|
}
|
|
|
+}
|
|
|
|
|
|
- int value = arg1.left(arg1.length() - 1).toInt();
|
|
|
- window->resize(default_window_width * value / 100, default_window_height * value / 100);
|
|
|
-
|
|
|
- Settings::setValue("General/UI_scale", value);
|
|
|
+void SettingsWidget::checkIfParametersWereReset() {
|
|
|
+ if (settings_changed_ && settings_backup_ == Settings::createSettingsBackup()) {
|
|
|
+ settings_changed_ = false;
|
|
|
+ emit SettingsReset();
|
|
|
+ ui->apply_changes_label->hide();
|
|
|
+ ui->apply_changes_button->hide();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::on_change_folder_button_clicked()
|
|
@@ -216,11 +225,14 @@ void SettingsWidget::on_change_folder_button_clicked()
|
|
|
|
|
|
QString game_folder= str.replace("/LotroLauncher.exe", "").replace("\\", "/").replace("//", "/") + "/";
|
|
|
|
|
|
- if (Settings::getValue("Lotro/game_path").toString() == game_folder)
|
|
|
+ if (Settings::getValue("Lotro/game_path").toString() == game_folder) {
|
|
|
return;
|
|
|
+ }
|
|
|
|
|
|
+ processParameterChange();
|
|
|
Settings::setValue("Lotro/game_path", game_folder);
|
|
|
ui->game_folder_path->setText(game_folder);
|
|
|
+ checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::on_lotro_base_language_combobox_currentIndexChanged(int index)
|
|
@@ -234,10 +246,116 @@ void SettingsWidget::on_lotro_base_language_combobox_currentIndexChanged(int ind
|
|
|
if (index == 2)
|
|
|
value = "FR";
|
|
|
|
|
|
- if (Settings::getValue("Lotro/original_locale").toString() == value)
|
|
|
+ if (Settings::getValue("Lotro/original_locale").toString() == value) {
|
|
|
return;
|
|
|
+ }
|
|
|
|
|
|
+ processParameterChange();
|
|
|
Settings::setValue("Lotro/original_locale", value);
|
|
|
+ checkIfParametersWereReset();
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_skiprawdownload_checkbox_stateChanged(int arg1) {
|
|
|
+ processParameterChange();
|
|
|
+ if (arg1 == Qt::Checked) {
|
|
|
+ Settings::setValue("Lotro/skip_raw_download", true);
|
|
|
+ }
|
|
|
+ if (arg1 == Qt::Unchecked) {
|
|
|
+ Settings::setValue("Lotro/skip_raw_download", false);
|
|
|
+ }
|
|
|
+ checkIfParametersWereReset();
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_nosplashscreen_checkbox_stateChanged(int arg1)
|
|
|
+{
|
|
|
+ processParameterChange();
|
|
|
+ if (arg1 == Qt::Checked) {
|
|
|
+ Settings::setValue("Lotro/no_splash_screen", true);
|
|
|
+ }
|
|
|
+ if (arg1 == Qt::Unchecked) {
|
|
|
+ Settings::setValue("Lotro/no_splash_screen", false);
|
|
|
+ }
|
|
|
+ checkIfParametersWereReset();
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_backup_create_button_clicked()
|
|
|
+{
|
|
|
+ if (settings_changed_) {
|
|
|
+ QMessageBox::warning(nullptr, "Невозможно выполнить действие!", "Некоторые настройки были изменены. Чтобы создать резервную копию, примените или отмените изменения!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Settings::getValue("Backup/installed").toBool()) {
|
|
|
+ int result = QMessageBox::question(nullptr, "Подтвердите действие", "Резервная копия уже существует. Вы хотите перезаписать существующую копию?", QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton);
|
|
|
+ if (result != QMessageBox::Yes) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ QMetaObject::invokeMethod(legacy_patches_, "createBackup", Qt::QueuedConnection);
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_backup_restore_button_clicked()
|
|
|
+{
|
|
|
+ if (!Settings::getValue("Backup/installed").toBool()) {
|
|
|
+ QMessageBox::warning(nullptr, "Невозможно выполнить действие.", "Резервная копия не найдена. Создайте резервную копию, чтобы иметь возможность восстановления данных.");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (settings_changed_) {
|
|
|
+ QMessageBox::warning(nullptr, "Невозможно выполнить действие.", "Некоторые настройки были изменены. Чтобы восстановить данные из резервной копии, примените или отмените изменения!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ QMetaObject::invokeMethod(legacy_patches_, "restoreFromBackup", Qt::QueuedConnection);
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_backup_remove_button_clicked()
|
|
|
+{
|
|
|
+ if (Settings::getValue("Backup/installed").toBool()) {
|
|
|
+ int result = QMessageBox::question(nullptr, "Подтвердите действие", "Вы уверены, что хотите удалить существующую резервную копию?", QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton);
|
|
|
+ if (result != QMessageBox::Yes) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ QMessageBox::information(nullptr, "Невозможно выполнить действие.", "Удаление невозможно: резервной копии не существует.");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ QMetaObject::invokeMethod(legacy_patches_, "removeBackup", Qt::QueuedConnection);
|
|
|
+}
|
|
|
+
|
|
|
+void SettingsWidget::on_patch_texts_checkbox_stateChanged(int arg1)
|
|
|
+{
|
|
|
+ processParameterChange();
|
|
|
+ if (arg1 == Qt::Checked) {
|
|
|
+ Settings::setValue("Components/texts_main", true);
|
|
|
+ Settings::updatePatchComponentsDependencies();
|
|
|
+ } else {
|
|
|
+ Settings::setValue("Components/texts_main", false);
|
|
|
+ Settings::updatePatchComponentsDependencies();
|
|
|
+ }
|
|
|
+ checkIfParametersWereReset();
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+void SettingsWidget::on_interface_scale_combobox_currentIndexChanged(const QString &arg1)
|
|
|
+{
|
|
|
+ MainWindow* window = qobject_cast<MainWindow*>(qApp->activeWindow());
|
|
|
+
|
|
|
+ if (!window) {
|
|
|
+ ui->interface_scale_combobox->setCurrentText(Settings::getValue("General/UI_scale").toString() + "%");
|
|
|
+ qDebug() << "CANNOT FIND MAIN WINDOW!!!";
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ int value = arg1.left(arg1.length() - 1).toInt();
|
|
|
+ window->resize(default_window_width * value / 100, default_window_height * value / 100);
|
|
|
+
|
|
|
+ Settings::setValue("General/UI_scale", value);
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::onPatchTotalOperationsStarted()
|
|
@@ -287,3 +405,6 @@ void SettingsWidget::onPatchTotalOperationsFinished()
|
|
|
ui->patch_force_apply_button->setEnabled(true);
|
|
|
ui->micropatch_checkbox->setEnabled(true);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|