Procházet zdrojové kódy

Partly implemented functionality of Settings module

Ivan Arkhipov před 5 roky
rodič
revize
2b4b7a972a

+ 138 - 43
src/Legacy/widgets/settingswidget.cpp

@@ -13,27 +13,32 @@
 #include <QFileDialog>
 #include <QMetaObject>
 
+using namespace SettingsWidgetPrivate;
+
 SettingsWidget::SettingsWidget(PatchList *legacy_patches, QWidget *parent)
     : QWidget(parent)
     , ui(new Ui::SettingsWidget)
     , legacy_patches_(legacy_patches)
 {
     ui->setupUi(this);
-    for (int i = 1; i <= 4; ++i)
-        setStatusToBlock(i, E_ERROR);
-
-    combobox_scrolling_disabler = new SettingsWidgetPrivate::ComboboxScrollingDisabler();
-    scroller = new SettingsWidgetPrivate::SettingsTabsScroller({ui->sub_entry_1,
-                                                                ui->sub_entry_2,
-                                                                ui->sub_entry_3,
-                                                                ui->sub_entry_4
-                                                               },
-                                                                ui->content_scroll_area
-                                                               );
+
+    combobox_scrolling_disabler = new ComboboxScrollingDisabler();
+    scroller = new SettingsTabsScroller({ui->sub_entry_1,
+                                         ui->sub_entry_2,
+                                         ui->sub_entry_3,
+                                         ui->sub_entry_4
+                                        },
+                                        ui->content_scroll_area);
 
     ui->lotro_base_language_combobox->installEventFilter(combobox_scrolling_disabler);
     ui->interface_scale_combobox->installEventFilter(combobox_scrolling_disabler);
 //    ui->content_scroll_area->verticalScrollBar()->installEventFilter(scroller);
+
+    ui->patch_installing_label->hide();
+    connect(legacy_patches, &PatchList::patchOperationsStarted, this, &SettingsWidget::onPatchTotalOperationsStarted);
+    connect(legacy_patches, &PatchList::patchOperationsFinished, this, &SettingsWidget::onPatchTotalOperationsFinished);
+
+    setActualParametersValues();
 }
 
 SettingsWidget::~SettingsWidget()
@@ -43,24 +48,88 @@ SettingsWidget::~SettingsWidget()
     delete ui;
 }
 
+void SettingsWidget::setActualParametersValues()
+{
+    QString game_path = Settings::getValue("Lotro/game_path").toString();
+    if (game_path == "none") {
+        game_path = "Путь к файлам игры не выбран";
+    }
+    ui->game_folder_path->setText(game_path);
+
+
+    QString original_locale = Settings::getValue("Lotro/original_locale").toString();
+    int index = 0;
+
+    if (original_locale == "English")
+        index = 0;
+    if (original_locale == "DE")
+        index = 1;
+    if (original_locale == "FR")
+        index = 2;
+    ui->lotro_base_language_combobox->setCurrentIndex(index);
+
+    ui->skiprawdownload_checkbox->setChecked(Settings::getValue("Lotro/skip_raw_download").toBool());
+    ui->nosplashscreen_checkbox->setChecked(Settings::getValue("Lotro/no_splash_screen").toBool());
+
+    QString backup_status = Settings::getValue("Backup/installed").toBool() ? "Отсутствует" : "Активна";
+    ui->backup_status_value->setText(backup_status);
+    ui->backup_path_value->setText(QApplication::applicationDirPath() + Settings::getValue("Backup/path").toString());
+    QString backup_creation_time = Settings::getValue("Backup/creation_time").toString();
+    if (backup_creation_time == "none")
+        backup_creation_time = "-";
+    ui->backup_creation_time_value->setText(backup_creation_time);
+
+    ui->patch_texts_checkbox->setChecked(Settings::getValue("Components/texts_main").toBool());
+    ui->patch_items_checkbox->setChecked(Settings::getValue("Components/texts_items").toBool());
+    ui->patch_emotes_checkbox->setChecked(Settings::getValue("Components/texts/emotes").toBool());
+    ui->patch_maps_checkbox->setChecked(Settings::getValue("Components/maps").toBool());
+    ui->patch_loadscreens_checkbox->setChecked(Settings::getValue("Components/loadscreens").toBool());
+    ui->patch_textures_checkbox->setChecked(Settings::getValue("Componens/textures").toBool());
+    ui->patch_sounds_checkbox->setChecked(Settings::getValue("Components/sounds").toBool());
+    ui->patch_video_checkbox->setChecked(Settings::getValue("Components/videos").toBool());
+    ui->micropatch_checkbox->setChecked(Settings::getValue("Components/micropatch").toBool());
+
+    int interface_scale = Settings::getValue("General/UI_scale").toInt();
+
+    int interface_scale_combobox_index = 0;
+    if (interface_scale == 50)
+        interface_scale_combobox_index = 0;
+    if (interface_scale == 75)
+        interface_scale_combobox_index = 1;
+    if (interface_scale == 100)
+        interface_scale_combobox_index = 2;
+    if (interface_scale == 125)
+        interface_scale_combobox_index = 3;
+    if (interface_scale == 150)
+        interface_scale_combobox_index = 4;
+    if (interface_scale == 175)
+        interface_scale_combobox_index = 5;
+    if (interface_scale == 200)
+        interface_scale_combobox_index = 6;
+
+    ui->interface_scale_combobox->setCurrentIndex(interface_scale_combobox_index);
+}
+
 void SettingsWidget::updateFontsSizes()
 {
     ui->frame_title->setFont(trajan_10pt);
     ui->group_label_1->setFont(trajan_9pt);
     ui->group_label_2->setFont(trajan_9pt);
     ui->group_label_3->setFont(trajan_9pt);
+    ui->group_label_4->setFont(trajan_9pt);
+
+    ui->patch_installing_label->setFont(crimson_12pt);
+    ui->apply_changes_button->setFont(trajan_10pt);
 
     ui->sub_entry_1_title->setFont(garamond_11pt);
     ui->sub_entry_2_title->setFont(garamond_11pt);
     ui->sub_entry_3_title->setFont(garamond_11pt);
+    ui->sub_entry_4_title->setFont(garamond_11pt);
 
     ui->backup_create_button->setFont(trajan_8pt);
     ui->backup_restore_button->setFont(trajan_8pt);
     ui->backup_remove_button->setFont(trajan_8pt);
 
-    ui->apply_button_entry_1->setFont(trajan_11pt);
-    ui->apply_button_entry_2->setFont(trajan_11pt);
-
     ui->game_folder_label->setFont(crimson_11pt);
     ui->game_folder_path->setFont(crimson_11pt);
     ui->lotro_base_language_label->setFont(crimson_11pt);
@@ -86,9 +155,9 @@ void SettingsWidget::updateFontsSizes()
     ui->patch_video_checkbox->setFont(crimson_11pt);
     ui->patch_texts_checkbox->setFont(crimson_11pt);
 
-    ui->micropatch_checkbox->setFont(crimson_12pt);
-    ui->interface_scale_label->setFont(crimson_12pt);
-    ui->interface_scale_combobox->setFont(crimson_12pt);
+    ui->micropatch_checkbox->setFont(crimson_11pt);
+    ui->interface_scale_label->setFont(crimson_11pt);
+    ui->interface_scale_combobox->setFont(crimson_11pt);
     ui->interface_scale_combobox->insertItem(ui->interface_scale_combobox->count(), "250%"); // is needed to invoke elements resize
     ui->interface_scale_combobox->removeItem(ui->interface_scale_combobox->count() - 1);
 
@@ -97,23 +166,7 @@ void SettingsWidget::updateFontsSizes()
     ui->sounds_block_label->setFont(crimson_12pt);
 }
 
-void SettingsWidget::setStatusToBlock(int block_id, SettingsWidget::E_STATUS status)
-{
-    QWidget* widget = ui->checkpoints_list->findChild<QWidget*>("group_status_icon_" + QString::number(block_id));
-    if (!widget)
-        return;
-
-    if (status == E_NONE)
-        widget->setStyleSheet("");
-    if (status == E_OK)
-        widget->setStyleSheet("border-image: url(:/status/ok_icon.png);");
-    if (status == E_WARNING)
-        widget->setStyleSheet("border-image: url(:/status/alert_icon.png);");
-    if (status == E_ERROR)
-        widget->setStyleSheet("border-image: url(:/status/error_icon.png);");
-}
-
-void SettingsWidget::resizeEvent(QResizeEvent *event)
+void SettingsWidget::resizeEvent(QResizeEvent *)
 {
     updateFontsSizes();
     double coefficient = window_width / default_window_width;
@@ -121,24 +174,18 @@ void SettingsWidget::resizeEvent(QResizeEvent *event)
     ui->frame_title->move(QPoint(45, 33) * coefficient);
     ui->frame_title->resize(QSize(201, 21) * coefficient);
     ui->checkpoints_list->move(QPoint(25, 70) * coefficient);
-    ui->checkpoints_list->resize(QSize(265, 321) * coefficient);
+    ui->checkpoints_list->resize(QSize(265, 451) * coefficient);
 
     ui->content_scroll_area->move(QPoint(310, 0) * coefficient);
     ui->content_scroll_area->resize(QSize(671, 521) * coefficient);
     ui->content_widget->setMinimumWidth(650 * coefficient);
 
-    ui->group_status_icon_1->setMinimumSize(QSize(25, 25) * coefficient);
-    ui->group_status_icon_2->setMinimumSize(QSize(25, 25) * coefficient);
-    ui->group_status_icon_3->setMinimumSize(QSize(25, 25) * coefficient);
-
     ui->change_folder_button->setMinimumSize(QSize(36, 32) * coefficient);
 
     ui->patch_texts_icon->setMinimumSize(QSize(80, 80) * coefficient);
     ui->patch_graphics_icon->setMinimumSize(QSize(80, 80) * coefficient);
     ui->patch_sounds_icon->setMinimumSize(QSize(80, 80) * coefficient);
-
-    ui->apply_button_entry_1->setMinimumHeight(double(55) * coefficient);
-    ui->apply_button_entry_2->setMinimumHeight(double(55) * coefficient);
+    ui->apply_changes_button->setMinimumSize(QSize(160, 60) * coefficient);
 }
 
 void SettingsWidget::on_interface_scale_combobox_currentIndexChanged(const QString &arg1)
@@ -152,7 +199,7 @@ void SettingsWidget::on_interface_scale_combobox_currentIndexChanged(const QStri
     }
 
     int value = arg1.left(arg1.length() - 1).toInt();
-    window->resize(1000 * value / 100, 648 * value / 100);
+    window->resize(default_window_width * value / 100, default_window_height * value / 100);
 
     Settings::setValue("General/UI_scale", value);
 }
@@ -192,3 +239,51 @@ void SettingsWidget::on_lotro_base_language_combobox_currentIndexChanged(int ind
 
     Settings::setValue("Lotro/original_locale", value);
 }
+
+void SettingsWidget::onPatchTotalOperationsStarted()
+{
+    patch_operations_running_ = true;
+    ui->patch_installing_label->show();
+
+    ui->change_folder_button->setEnabled(false);
+    ui->lotro_base_language_combobox->setEnabled(false);
+
+    ui->backup_create_button->setEnabled(false);
+    ui->backup_restore_button->setEnabled(false);
+    ui->backup_remove_button->setEnabled(false);
+
+    ui->patch_texts_checkbox->setEnabled(false);
+    ui->patch_items_checkbox->setEnabled(false);
+    ui->patch_emotes_checkbox->setEnabled(false);
+    ui->patch_maps_checkbox->setEnabled(false);
+    ui->patch_textures_checkbox->setEnabled(false);
+    ui->patch_loadscreens_checkbox->setEnabled(false);
+    ui->patch_sounds_checkbox->setEnabled(false);
+    ui->patch_video_checkbox->setEnabled(false);
+    ui->patch_force_apply_button->setEnabled(false);
+    ui->micropatch_checkbox->setEnabled(false);
+}
+
+void SettingsWidget::onPatchTotalOperationsFinished()
+{
+    patch_operations_running_ = false;
+    ui->patch_installing_label->hide();
+
+    ui->change_folder_button->setEnabled(true);
+    ui->lotro_base_language_combobox->setEnabled(true);
+
+    ui->backup_create_button->setEnabled(true);
+    ui->backup_restore_button->setEnabled(true);
+    ui->backup_remove_button->setEnabled(true);
+
+    ui->patch_texts_checkbox->setEnabled(true);
+    ui->patch_items_checkbox->setEnabled(true);
+    ui->patch_emotes_checkbox->setEnabled(true);
+    ui->patch_maps_checkbox->setEnabled(true);
+    ui->patch_textures_checkbox->setEnabled(true);
+    ui->patch_loadscreens_checkbox->setEnabled(true);
+    ui->patch_sounds_checkbox->setEnabled(true);
+    ui->patch_video_checkbox->setEnabled(true);
+    ui->patch_force_apply_button->setEnabled(true);
+    ui->micropatch_checkbox->setEnabled(true);
+}

+ 12 - 11
src/Legacy/widgets/settingswidget.h

@@ -47,7 +47,7 @@ public:
     }
 
 protected:
-    bool eventFilter(QObject *obj, QEvent *event) override {
+    bool eventFilter(QObject *, QEvent *event) override {
 //        if (obj != target_widget_) {
 //            return false;
 //        }
@@ -87,12 +87,11 @@ protected:
     }
 
 private:
-    int current_entry_id_;
     QScrollArea* target_widget_;
+    int current_entry_id_;
     QList<QWidget*> entries_;
     QPropertyAnimation* scroll_entries_animation_;
 };
-
 }
 
 class SettingsWidget : public QWidget
@@ -105,16 +104,12 @@ public:
 
     ~SettingsWidget();
 
-    enum E_STATUS {
-        E_NONE = 0,
-        E_ERROR = -2,
-        E_WARNING = -1,
-        E_OK = 1
-    };
-
 public slots:
+    void setActualParametersValues();
+
     void updateFontsSizes();
-    void setStatusToBlock(int block_id, E_STATUS status);
+
+//    void checkIfPropertiesChanged();
 
 protected:
     void resizeEvent(QResizeEvent *event) override;
@@ -126,7 +121,13 @@ private slots:
 
     void on_lotro_base_language_combobox_currentIndexChanged(int index);
 
+    void onPatchTotalOperationsStarted();
+
+    void onPatchTotalOperationsFinished();
+
 private:
+    bool patch_operations_running_;
+
     Ui::SettingsWidget *ui;
 
     PatchList *legacy_patches_;

+ 285 - 325
src/Legacy/widgets/settingswidget.ui

@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>1000</width>
-    <height>538</height>
+    <height>530</height>
    </rect>
   </property>
   <property name="sizePolicy">
@@ -50,7 +50,7 @@
      <x>25</x>
      <y>70</y>
      <width>265</width>
-     <height>321</height>
+     <height>451</height>
     </rect>
    </property>
    <layout class="QGridLayout" name="gridLayout_6">
@@ -60,43 +60,58 @@
     <property name="rightMargin">
      <number>11</number>
     </property>
+    <property name="bottomMargin">
+     <number>0</number>
+    </property>
     <property name="horizontalSpacing">
      <number>0</number>
     </property>
     <property name="verticalSpacing">
-     <number>20</number>
+     <number>15</number>
     </property>
-    <item row="0" column="0">
-     <widget class="QLabel" name="group_label_1">
+    <item row="5" column="0">
+     <widget class="QLabel" name="patch_installing_label">
       <property name="font">
        <font>
         <family>Trajan Pro 3</family>
         <pointsize>10</pointsize>
        </font>
       </property>
+      <property name="styleSheet">
+       <string notr="true">color: red</string>
+      </property>
       <property name="text">
-       <string>I. Общие настройки</string>
+       <string>Выполняется установка русификации, изменение параметров недоступно</string>
+      </property>
+      <property name="alignment">
+       <set>Qt::AlignCenter</set>
       </property>
       <property name="wordWrap">
        <bool>true</bool>
       </property>
+      <property name="textInteractionFlags">
+       <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextEditable|Qt::TextEditorInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
+      </property>
      </widget>
     </item>
-    <item row="3" column="0">
-     <spacer name="verticalSpacer">
-      <property name="orientation">
-       <enum>Qt::Vertical</enum>
+    <item row="2" column="0">
+     <widget class="QLabel" name="group_label_3">
+      <property name="font">
+       <font>
+        <family>Trajan Pro 3</family>
+        <pointsize>10</pointsize>
+       </font>
       </property>
-      <property name="sizeHint" stdset="0">
-       <size>
-        <width>20</width>
-        <height>60</height>
-       </size>
+      <property name="text">
+       <string>III. Выбор компонентов русификации</string>
       </property>
-     </spacer>
+      <property name="wordWrap">
+       <bool>true</bool>
+      </property>
+     </widget>
     </item>
-    <item row="1" column="0">
-     <widget class="QLabel" name="group_label_2">
+    <item row="3" column="0">
+     <widget class="QLabel" name="group_label_4">
       <property name="font">
        <font>
         <family>Trajan Pro 3</family>
@@ -104,15 +119,15 @@
        </font>
       </property>
       <property name="text">
-       <string>II. Настройка резервной копии</string>
+       <string>IV. Параметры Наследия</string>
       </property>
       <property name="wordWrap">
        <bool>true</bool>
       </property>
      </widget>
     </item>
-    <item row="2" column="0">
-     <widget class="QLabel" name="group_label_3">
+    <item row="0" column="0">
+     <widget class="QLabel" name="group_label_1">
       <property name="font">
        <font>
         <family>Trajan Pro 3</family>
@@ -120,68 +135,164 @@
        </font>
       </property>
       <property name="text">
-       <string>III. Выбор компонентов</string>
+       <string>I. Параметры клиента игры</string>
       </property>
       <property name="wordWrap">
        <bool>true</bool>
       </property>
      </widget>
     </item>
-    <item row="0" column="1">
-     <widget class="QWidget" name="group_status_icon_1" native="true">
-      <property name="sizePolicy">
-       <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-        <horstretch>0</horstretch>
-        <verstretch>0</verstretch>
-       </sizepolicy>
+    <item row="4" column="0">
+     <spacer name="verticalSpacer">
+      <property name="orientation">
+       <enum>Qt::Vertical</enum>
       </property>
-      <property name="minimumSize">
+      <property name="sizeHint" stdset="0">
        <size>
-        <width>25</width>
-        <height>25</height>
+        <width>20</width>
+        <height>60</height>
        </size>
       </property>
-      <property name="styleSheet">
-       <string notr="true">border-image: url(:/status/ok_icon.png);</string>
-      </property>
-     </widget>
+     </spacer>
     </item>
-    <item row="2" column="1">
-     <widget class="QWidget" name="group_status_icon_3" native="true">
-      <property name="sizePolicy">
-       <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-        <horstretch>0</horstretch>
-        <verstretch>0</verstretch>
-       </sizepolicy>
+    <item row="1" column="0">
+     <widget class="QLabel" name="group_label_2">
+      <property name="font">
+       <font>
+        <family>Trajan Pro 3</family>
+        <pointsize>10</pointsize>
+       </font>
       </property>
-      <property name="minimumSize">
-       <size>
-        <width>25</width>
-        <height>25</height>
-       </size>
+      <property name="text">
+       <string>II. Параметры резервной копии</string>
       </property>
-      <property name="styleSheet">
-       <string notr="true">border-image: url(:/status/error_icon.png);</string>
+      <property name="wordWrap">
+       <bool>true</bool>
       </property>
      </widget>
     </item>
-    <item row="1" column="1">
-     <widget class="QWidget" name="group_status_icon_2" native="true">
+    <item row="6" column="0">
+     <widget class="QWidget" name="widget_3" native="true">
       <property name="sizePolicy">
-       <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
+       <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="minimumSize">
        <size>
-        <width>25</width>
-        <height>25</height>
+        <width>0</width>
+        <height>0</height>
        </size>
       </property>
-      <property name="styleSheet">
-       <string notr="true">border-image: url(:/status/ok_icon.png);</string>
-      </property>
+      <layout class="QHBoxLayout" name="horizontalLayout_5">
+       <property name="spacing">
+        <number>0</number>
+       </property>
+       <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>
+        <spacer name="horizontalSpacer">
+         <property name="orientation">
+          <enum>Qt::Horizontal</enum>
+         </property>
+         <property name="sizeHint" stdset="0">
+          <size>
+           <width>34</width>
+           <height>20</height>
+          </size>
+         </property>
+        </spacer>
+       </item>
+       <item>
+        <widget class="QPushButton" name="apply_changes_button">
+         <property name="sizePolicy">
+          <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
+           <horstretch>0</horstretch>
+           <verstretch>0</verstretch>
+          </sizepolicy>
+         </property>
+         <property name="minimumSize">
+          <size>
+           <width>160</width>
+           <height>60</height>
+          </size>
+         </property>
+         <property name="font">
+          <font>
+           <family>Trajan Pro 3</family>
+           <pointsize>11</pointsize>
+           <weight>50</weight>
+           <bold>false</bold>
+           <kerning>false</kerning>
+          </font>
+         </property>
+         <property name="autoFillBackground">
+          <bool>false</bool>
+         </property>
+         <property name="styleSheet">
+          <string notr="true">QPushButton#apply_changes_button { 
+	color: white;
+	border-image: url(:/buttons/button_big_normal.png);
+}
+
+QPushButton#apply_changes_button:hover {
+	color: white;
+	border-image: url(:/buttons/button_big_over.png);
+}
+
+QPushButton#apply_changes_button:pressed {
+	color: white;
+	border-image: url(:/buttons/button_big_pressed.png);
+}
+
+QPushButton#apply_changes_button:disabled {
+	color: white;
+	border-image: url(:/buttons/button_big_disabled.png);
+}
+</string>
+         </property>
+         <property name="text">
+          <string notr="true">  Применить  </string>
+         </property>
+         <property name="iconSize">
+          <size>
+           <width>0</width>
+           <height>0</height>
+          </size>
+         </property>
+         <property name="default">
+          <bool>false</bool>
+         </property>
+         <property name="flat">
+          <bool>true</bool>
+         </property>
+        </widget>
+       </item>
+       <item>
+        <spacer name="horizontalSpacer_3">
+         <property name="orientation">
+          <enum>Qt::Horizontal</enum>
+         </property>
+         <property name="sizeHint" stdset="0">
+          <size>
+           <width>34</width>
+           <height>20</height>
+          </size>
+         </property>
+        </spacer>
+       </item>
+      </layout>
      </widget>
     </item>
    </layout>
@@ -258,9 +369,9 @@ QScrollBar:vertical {
     <property name="geometry">
      <rect>
       <x>0</x>
-      <y>0</y>
+      <y>-409</y>
       <width>651</width>
-      <height>1060</height>
+      <height>967</height>
      </rect>
     </property>
     <property name="sizePolicy">
@@ -334,22 +445,6 @@ border-radius: 0px;
           </property>
          </widget>
         </item>
-        <item row="3" column="0">
-         <widget class="QCheckBox" name="skiprawdownload_checkbox">
-          <property name="font">
-           <font>
-            <family>Crimson Text</family>
-            <pointsize>11</pointsize>
-           </font>
-          </property>
-          <property name="text">
-           <string>Пропустить проверку видеороликов и экранов загрузки (ускоряет запуск игры)</string>
-          </property>
-          <property name="checked">
-           <bool>true</bool>
-          </property>
-         </widget>
-        </item>
         <item row="0" column="0">
          <widget class="QLabel" name="sub_entry_1_title">
           <property name="sizePolicy">
@@ -375,99 +470,20 @@ border-radius: 0px;
           </property>
          </widget>
         </item>
-        <item row="7" column="0">
-         <widget class="QWidget" name="apply_block_3" native="true">
-          <layout class="QHBoxLayout" name="horizontalLayout_8">
-           <property name="spacing">
-            <number>0</number>
-           </property>
-           <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>
-            <spacer name="horizontalSpacer_6">
-             <property name="orientation">
-              <enum>Qt::Horizontal</enum>
-             </property>
-             <property name="sizeHint" stdset="0">
-              <size>
-               <width>40</width>
-               <height>20</height>
-              </size>
-             </property>
-            </spacer>
-           </item>
-           <item>
-            <widget class="QPushButton" name="apply_button_entry_1">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="minimumSize">
-              <size>
-               <width>0</width>
-               <height>55</height>
-              </size>
-             </property>
-             <property name="font">
-              <font>
-               <family>Trajan Pro 3</family>
-               <pointsize>11</pointsize>
-               <weight>50</weight>
-               <bold>false</bold>
-               <kerning>false</kerning>
-              </font>
-             </property>
-             <property name="autoFillBackground">
-              <bool>false</bool>
-             </property>
-             <property name="styleSheet">
-              <string notr="true">QPushButton { 
-	color: white;
-	border-image: url(:/buttons/button_big_normal.png);
-}
-
-QPushButton:hover {
-	color: white;
-	border-image: url(:/buttons/button_big_over.png);
-}
-
-QPushButton:pressed {
-	color: white;
-	border-image: url(:/buttons/button_big_pressed.png);
-}
-
-</string>
-             </property>
-             <property name="text">
-              <string notr="true">    применить    </string>
-             </property>
-             <property name="iconSize">
-              <size>
-               <width>0</width>
-               <height>0</height>
-              </size>
-             </property>
-             <property name="default">
-              <bool>false</bool>
-             </property>
-             <property name="flat">
-              <bool>true</bool>
-             </property>
-            </widget>
-           </item>
-          </layout>
+        <item row="3" column="0">
+         <widget class="QCheckBox" name="skiprawdownload_checkbox">
+          <property name="font">
+           <font>
+            <family>Crimson Text</family>
+            <pointsize>11</pointsize>
+           </font>
+          </property>
+          <property name="text">
+           <string>Пропустить проверку видеороликов и экранов загрузки (ускоряет запуск игры)</string>
+          </property>
+          <property name="checked">
+           <bool>true</bool>
+          </property>
          </widget>
         </item>
         <item row="2" column="0">
@@ -1125,99 +1141,23 @@ background-color: none;</string>
           </property>
          </widget>
         </item>
-        <item row="4" column="0" colspan="2">
-         <widget class="QWidget" name="apply_block" native="true">
-          <layout class="QHBoxLayout" name="horizontalLayout_6">
-           <property name="spacing">
-            <number>0</number>
-           </property>
-           <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>
-            <spacer name="horizontalSpacer_3">
-             <property name="orientation">
-              <enum>Qt::Horizontal</enum>
-             </property>
-             <property name="sizeHint" stdset="0">
-              <size>
-               <width>40</width>
-               <height>20</height>
-              </size>
-             </property>
-            </spacer>
-           </item>
-           <item>
-            <widget class="QPushButton" name="apply_button_entry_2">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="minimumSize">
-              <size>
-               <width>0</width>
-               <height>55</height>
-              </size>
-             </property>
-             <property name="font">
-              <font>
-               <family>Trajan Pro 3</family>
-               <pointsize>11</pointsize>
-               <weight>50</weight>
-               <bold>false</bold>
-               <kerning>false</kerning>
-              </font>
-             </property>
-             <property name="autoFillBackground">
-              <bool>false</bool>
-             </property>
-             <property name="styleSheet">
-              <string notr="true">QPushButton { 
-	color: white;
-	border-image: url(:/buttons/button_big_normal.png);
-}
-
-QPushButton:hover {
-	color: white;
-	border-image: url(:/buttons/button_big_over.png);
-}
-
-QPushButton:pressed {
-	color: white;
-	border-image: url(:/buttons/button_big_pressed.png);
-}
-
-</string>
-             </property>
-             <property name="text">
-              <string notr="true">    применить    </string>
-             </property>
-             <property name="iconSize">
-              <size>
-               <width>0</width>
-               <height>0</height>
-              </size>
-             </property>
-             <property name="default">
-              <bool>false</bool>
-             </property>
-             <property name="flat">
-              <bool>true</bool>
-             </property>
-            </widget>
-           </item>
-          </layout>
+        <item row="4" column="1">
+         <widget class="QWidget" name="patch_sounds_icon" native="true">
+          <property name="minimumSize">
+           <size>
+            <width>80</width>
+            <height>80</height>
+           </size>
+          </property>
+          <property name="maximumSize">
+           <size>
+            <width>80</width>
+            <height>80</height>
+           </size>
+          </property>
+          <property name="styleSheet">
+           <string notr="true">border-image: url(:/patch_icons/zvuki-photo-normal.png);</string>
+          </property>
          </widget>
         </item>
         <item row="2" column="1">
@@ -1239,7 +1179,7 @@ QPushButton:pressed {
           </property>
          </widget>
         </item>
-        <item row="3" column="0">
+        <item row="4" column="0">
          <widget class="QWidget" name="sounds_block" native="true">
           <layout class="QVBoxLayout" name="verticalLayout_4">
            <property name="spacing">
@@ -1323,25 +1263,6 @@ QPushButton:pressed {
           </property>
          </widget>
         </item>
-        <item row="3" column="1">
-         <widget class="QWidget" name="patch_sounds_icon" native="true">
-          <property name="minimumSize">
-           <size>
-            <width>80</width>
-            <height>80</height>
-           </size>
-          </property>
-          <property name="maximumSize">
-           <size>
-            <width>80</width>
-            <height>80</height>
-           </size>
-          </property>
-          <property name="styleSheet">
-           <string notr="true">border-image: url(:/patch_icons/zvuki-photo-normal.png);</string>
-          </property>
-         </widget>
-        </item>
         <item row="1" column="0">
          <widget class="QWidget" name="texts_block" native="true">
           <layout class="QVBoxLayout" name="verticalLayout">
@@ -1511,49 +1432,7 @@ QPushButton:pressed {
         <property name="verticalSpacing">
          <number>10</number>
         </property>
-        <item row="0" column="0">
-         <widget class="QLabel" name="sub_entry_4_title">
-          <property name="sizePolicy">
-           <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
-            <horstretch>0</horstretch>
-            <verstretch>0</verstretch>
-           </sizepolicy>
-          </property>
-          <property name="font">
-           <font>
-            <family>EB Garamond</family>
-            <pointsize>10</pointsize>
-           </font>
-          </property>
-          <property name="text">
-           <string>● ПАРАМЕТРЫ НАСЛЕДИЯ ●</string>
-          </property>
-          <property name="alignment">
-           <set>Qt::AlignCenter</set>
-          </property>
-          <property name="wordWrap">
-           <bool>false</bool>
-          </property>
-         </widget>
-        </item>
-        <item row="1" column="0">
-         <widget class="QCheckBox" name="micropatch_checkbox">
-          <property name="font">
-           <font>
-            <family>Crimson Text</family>
-            <pointsize>11</pointsize>
-           </font>
-          </property>
-          <property name="text">
-           <string>Устанавливать самые свежие переводы (раньше появляются, 
-но могут содержать больше ошибок)</string>
-          </property>
-          <property name="checked">
-           <bool>true</bool>
-          </property>
-         </widget>
-        </item>
-        <item row="2" column="0">
+        <item row="3" column="0">
          <widget class="QWidget" name="widget_4" native="true">
           <layout class="QHBoxLayout" name="horizontalLayout_3">
            <property name="leftMargin">
@@ -1677,6 +1556,87 @@ border-radius: 3px;</string>
           </layout>
          </widget>
         </item>
+        <item row="0" column="0">
+         <widget class="QLabel" name="sub_entry_4_title">
+          <property name="sizePolicy">
+           <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+            <horstretch>0</horstretch>
+            <verstretch>0</verstretch>
+           </sizepolicy>
+          </property>
+          <property name="font">
+           <font>
+            <family>EB Garamond</family>
+            <pointsize>10</pointsize>
+           </font>
+          </property>
+          <property name="text">
+           <string>● ПАРАМЕТРЫ НАСЛЕДИЯ ●</string>
+          </property>
+          <property name="alignment">
+           <set>Qt::AlignCenter</set>
+          </property>
+          <property name="wordWrap">
+           <bool>false</bool>
+          </property>
+         </widget>
+        </item>
+        <item row="2" column="0">
+         <widget class="QCheckBox" name="micropatch_checkbox">
+          <property name="font">
+           <font>
+            <family>Crimson Text</family>
+            <pointsize>11</pointsize>
+           </font>
+          </property>
+          <property name="text">
+           <string>Устанавливать самые свежие переводы (раньше появляются, 
+но могут содержать больше ошибок)</string>
+          </property>
+          <property name="checked">
+           <bool>true</bool>
+          </property>
+         </widget>
+        </item>
+        <item row="1" column="0">
+         <widget class="QPushButton" name="patch_force_apply_button">
+          <property name="font">
+           <font>
+            <family>EB Garamond</family>
+            <pointsize>9</pointsize>
+           </font>
+          </property>
+          <property name="autoFillBackground">
+           <bool>false</bool>
+          </property>
+          <property name="styleSheet">
+           <string notr="true">QPushButton {
+	color: black;
+    border: 2px solid #8f8f91;
+    border-radius: 6px;
+    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+                                      stop: 0 #f6f7fa, stop: 1 #dadbde);
+    min-width: 80px;
+}
+ 
+QPushButton:pressed {
+    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+                                      stop: 0 #caccd3, stop: 1 #f6f7fa);
+}
+ 
+QPushButton:flat {
+    border: none; /* no border for a flat push button */
+}
+ 
+QPushButton:default {
+    border-color: navy; /* make the default button prominent */
+}</string>
+          </property>
+          <property name="text">
+           <string>Повторно применить все патчи Наследия</string>
+          </property>
+         </widget>
+        </item>
        </layout>
       </widget>
      </item>

+ 10 - 5
src/Legacy/widgets/statuswidget.ui

@@ -131,7 +131,7 @@ QScrollBar:vertical {
    <property name="geometry">
     <rect>
      <x>780</x>
-     <y>30</y>
+     <y>10</y>
      <width>201</width>
      <height>61</height>
     </rect>
@@ -147,9 +147,9 @@ QScrollBar:vertical {
    <property name="geometry">
     <rect>
      <x>310</x>
-     <y>36</y>
+     <y>16</y>
      <width>541</width>
-     <height>491</height>
+     <height>511</height>
     </rect>
    </property>
    <property name="styleSheet">
@@ -472,7 +472,7 @@ border-image: url(:/characters/galadriel_with_text.png);
     <property name="geometry">
      <rect>
       <x>0</x>
-      <y>400</y>
+      <y>420</y>
       <width>381</width>
       <height>90</height>
      </rect>
@@ -600,6 +600,11 @@ QPushButton#game_button:disabled {
    <container>1</container>
   </customwidget>
  </customwidgets>
- <resources/>
+ <resources>
+  <include location="../../../resources/backgrounds.qrc"/>
+  <include location="../../../resources/backgrounds_advanced.qrc"/>
+  <include location="../../../resources/common.qrc"/>
+  <include location="../../../resources/res.qrc"/>
+ </resources>
  <connections/>
 </ui>