settingswidget.cpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. #include "widgets/settingswidget.h"
  2. #include "ui_settingswidget.h"
  3. #include "models/filesystem.h"
  4. #include "widgets/mainwindow.h"
  5. #include <QDebug>
  6. #include <QFileDialog>
  7. #include <QMessageBox>
  8. SettingsWidget::SettingsWidget(QSettings* settings, PatchDownloader* patch_downloader, LotroDatManager* lotro_dat_manager, QWidget *parent) :
  9. QWidget(parent), app_settings(settings),
  10. ui(new Ui::SettingsWidget)
  11. {
  12. ui->setupUi(this);
  13. ui_update_timer.setInterval(500);
  14. connect(&ui_update_timer, &QTimer::timeout, this, &SettingsWidget::updateUI);
  15. ui_update_timer.start();
  16. }
  17. SettingsWidget::~SettingsWidget()
  18. {
  19. ui_update_timer.stop();
  20. delete ui;
  21. }
  22. void SettingsWidget::updateUI()
  23. {
  24. if (!qApp)
  25. return;
  26. // QString path = app->properties.value("settings/lotro_folder", "(не выбрана)").toString();
  27. // ui->folder_value_common->setText(path);
  28. // ui->data_protection_checkbox_common->setChecked(app->properties.value("settings/data_protection", 1).toBool());
  29. // ui->restore_checkbox_common->setChecked(app->properties.value("settings/auto_restore", 1).toBool());
  30. // ui->download_updates_checkbox_common->setChecked(app->properties.value("settings/download_updates", 1).toBool());
  31. // ui->expert_tabs_checkbox_common->setChecked(app->properties.value("settings/expert_mode", 0).toBool());
  32. // ui->restrict_download_speed_checkbox_common->setChecked(app->properties.value("settings/limit_download_speed", 0).toBool());
  33. // ui->download_restrict_slider->setValue(app->properties.value("settings/download_speed", 64).toInt());
  34. // if (app->properties.value("settings/expert_mode", 0).toBool()) {
  35. // ui->management_widget->show();
  36. // ui->data_protection_checkbox_common->show();
  37. // ui->restore_checkbox_common->show();
  38. // } else {
  39. // ui->management_widget->hide();
  40. // ui->data_protection_checkbox_common->hide();
  41. // ui->restore_checkbox_common->hide();
  42. // }
  43. // int locale_index = 0;
  44. // QString value = app->properties.value("settings/locale", "English").toString();
  45. // if (value == "English")
  46. // locale_index = 0;
  47. // if (value == "DE")
  48. // locale_index = 1;
  49. // if (value == "FR")
  50. // locale_index = 2;
  51. // ui->lotro_patch_language_combobox_common->setCurrentIndex(locale_index);
  52. }
  53. void SettingsWidget::on_download_restrict_slider_valueChanged(int value)
  54. {
  55. // if (value >= 1024) {
  56. // double new_value = double(value) / 1024;
  57. // ui->download_speed_label_common->setText(QString::number(new_value, 'g', 2) + " Мб/с");
  58. // } else {
  59. // ui->download_speed_label_common->setText(QString::number(value) + " Кб/с");
  60. // }
  61. // app->properties.setValue("settings/download_speed", value);
  62. // app->properties.sync();
  63. }
  64. void SettingsWidget::on_interface_scale_combobox_common_currentIndexChanged(const QString &arg1)
  65. {
  66. MainWindow* window = qobject_cast<MainWindow*>(qApp->activeWindow());
  67. if (!window) {
  68. ui->interface_scale_combobox_common->setCurrentText(app_settings->value("general/ui_scale", 100).toString() + "%");
  69. qDebug() << "CANNOT FIND MAIN WINDOW!!!";
  70. return;
  71. }
  72. int value = arg1.left(arg1.length() - 1).toInt();
  73. window->changeFontSizeRecursive(value, window);
  74. window->resize(900 * value / 100, 650 * value / 100);
  75. app_settings->setValue("general/ui_scale", value);
  76. }
  77. void SettingsWidget::on_change_folder_button_clicked()
  78. {
  79. // QStringList known_paths = FileSystem::recognizeRegistryLotroPath();
  80. // QString template_path = known_paths.size() > 0 ? known_paths[0] : "";
  81. // QString str = QFileDialog::getOpenFileName(0, "Расположение игры", template_path, "LotroLauncher.exe");
  82. // QString path = str.replace("/LotroLauncher.exe", "").replace("\\", "/").replace("//", "/");
  83. // if (!FileSystem::fileExists(path + "/LotroLauncher.exe")) {
  84. // QMessageBox error_box("Ошибка!", "Похоже, указана неверная папка с игрой. Не могу найти файл LotroLauncher.exe",
  85. // QMessageBox::Critical, QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
  86. // return;
  87. // }
  88. // if (!FileSystem::fileExists(path + "/client_local_English.dat")) {
  89. // QMessageBox pmbx("Файл данных не найден",
  90. // "Файл данных client_local_English.dat не обнаружен в папке с игрой. Запустить лаунчер игры с целью скачать недостающие данные?",
  91. // QMessageBox::Warning,
  92. // QMessageBox::Yes,
  93. // QMessageBox::No,
  94. // QMessageBox::NoButton);
  95. // if (pmbx.exec() == QMessageBox::Yes) {
  96. // // Start LotRO;
  97. // return;
  98. // } else {
  99. // // Set status Файл данных не найден
  100. // }
  101. // }
  102. // app->properties.setValue("settings/lotro_folder", path);
  103. // app->properties.sync();
  104. // ui->folder_value_common->setText(path);
  105. }
  106. void SettingsWidget::on_data_protection_checkbox_common_stateChanged(int arg1)
  107. {
  108. // app->properties.setValue("settings/data_protection", arg1);
  109. // app->properties.sync();
  110. }
  111. void SettingsWidget::on_restore_checkbox_common_stateChanged(int arg1)
  112. {
  113. // app->properties.setValue("settings/auto_restore", arg1);
  114. // app->properties.sync();
  115. }
  116. void SettingsWidget::on_download_updates_checkbox_common_stateChanged(int arg1)
  117. {
  118. // app->properties.setValue("settings/download_updates", arg1);
  119. // app->properties.sync();
  120. }
  121. void SettingsWidget::on_expert_tabs_checkbox_common_stateChanged(int arg1)
  122. {
  123. // app->properties.setValue("settings/expert_mode", arg1);
  124. // app->properties.sync();
  125. }
  126. void SettingsWidget::on_restrict_download_speed_checkbox_common_stateChanged(int arg1)
  127. {
  128. // app->properties.setValue("settings/limit_download_speed", arg1);
  129. // app->properties.sync();
  130. }
  131. void SettingsWidget::on_lotro_patch_language_combobox_common_activated(int index)
  132. {
  133. // QString value = "";
  134. // if (index == 0)
  135. // value = "English";
  136. // if (index == 1)
  137. // value = "DE";
  138. // if (index == 2)
  139. // value = "FR";
  140. //
  141. // app->properties.setValue("settings/locale", value);
  142. // app->properties.sync();
  143. }