/************************************************************************ ** ** @file tapepreferencesconfigurationpage.cpp ** @author Roman Telezhynskyi ** @date 12 4, 2017 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2017 Valentina project ** All Rights Reserved. ** ** Valentina 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, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina 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. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #include "tapepreferencesconfigurationpage.h" #include "ui_tapepreferencesconfigurationpage.h" #include "../../mapplication.h" #include "../vmisc/vtapesettings.h" #include "../vpatterndb/variables/vmeasurement.h" #include "../vpatterndb/pmsystems.h" //--------------------------------------------------------------------------------------------------------------------- TapePreferencesConfigurationPage::TapePreferencesConfigurationPage(QWidget *parent) : QWidget(parent), ui(new Ui::TapePreferencesConfigurationPage), m_langChanged(false), m_systemChanged(false) { ui->setupUi(this); RetranslateUi(); InitLanguages(ui->langCombo); connect(ui->langCombo, QOverload::of(&QComboBox::currentIndexChanged), this, [this]() { m_langChanged = true; }); //-------------------- Decimal separator setup ui->osOptionCheck->setChecked(MApplication::VApp()->TapeSettings()->GetOsSeparator()); // Theme ui->darkModeCheck->setChecked(MApplication::VApp()->TapeSettings()->GetDarkMode()); // Native dialogs ui->checkBoxDontUseNativeDialog->setChecked(MApplication::VApp()->TapeSettings()->IsDontUseNativeDialog()); //---------------------- Pattern making system ui->systemBookValueLabel->setFixedHeight(4 * QFontMetrics(ui->systemBookValueLabel->font()).lineSpacing()); connect(ui->systemCombo, QOverload::of(&QComboBox::currentIndexChanged), this, [this]() { m_systemChanged = true; QString text = VAbstractApplication::VApp()->TrVars() ->PMSystemAuthor(ui->systemCombo->currentData().toString()); ui->systemAuthorValueLabel->setText(text); ui->systemAuthorValueLabel->setToolTip(text); text = VAbstractApplication::VApp()->TrVars()->PMSystemBook(ui->systemCombo->currentData().toString()); ui->systemBookValueLabel->setPlainText(text); }); // set default pattern making system int index = ui->systemCombo->findData(MApplication::VApp()->TapeSettings()->GetPMSystemCode()); if (index != -1) { ui->systemCombo->setCurrentIndex(index); } //----------------------------- Measurements Editing connect(ui->resetWarningsButton, &QPushButton::released, this, []() { MApplication::VApp()->TapeSettings()->SetConfirmFormatRewriting(true); }); //----------------------- Toolbar ui->toolBarStyleCheck->setChecked(MApplication::VApp()->TapeSettings()->GetToolBarStyle()); } //--------------------------------------------------------------------------------------------------------------------- TapePreferencesConfigurationPage::~TapePreferencesConfigurationPage() { delete ui; } //--------------------------------------------------------------------------------------------------------------------- QStringList TapePreferencesConfigurationPage::Apply() { QStringList preferences; VTapeSettings *settings = MApplication::VApp()->TapeSettings(); settings->SetOsSeparator(ui->osOptionCheck->isChecked()); settings->SetToolBarStyle(ui->toolBarStyleCheck->isChecked()); if (settings->GetDarkMode() != ui->darkModeCheck->isChecked()) { settings->SetDarkMode(ui->darkModeCheck->isChecked()); preferences.append(tr("dark mode")); } if (settings->IsDontUseNativeDialog() != ui->checkBoxDontUseNativeDialog->isChecked()) { settings->SetDontUseNativeDialog(ui->checkBoxDontUseNativeDialog->isChecked()); } if (m_langChanged || m_systemChanged) { const QString locale = qvariant_cast(ui->langCombo->currentData()); settings->SetLocale(locale); m_langChanged = false; const QString code = qvariant_cast(ui->systemCombo->currentData()); settings->SetPMSystemCode(code); m_systemChanged = false; VAbstractApplication::VApp()->LoadTranslation(locale); qApp->processEvents();// force to call changeEvent // Part about measurments will not be updated automatically MApplication::VApp()->RetranslateTables(); MApplication::VApp()->RetranslateGroups(); } return preferences; } //--------------------------------------------------------------------------------------------------------------------- void TapePreferencesConfigurationPage::changeEvent(QEvent *event) { if (event->type() == QEvent::LanguageChange) { // retranslate designer form (single inheritance approach) RetranslateUi(); ui->retranslateUi(this); } // remember to call base class implementation QWidget::changeEvent(event); } //--------------------------------------------------------------------------------------------------------------------- void TapePreferencesConfigurationPage::RetranslateUi() { ui->osOptionCheck->setText(tr("With OS options") + QStringLiteral(" (%1)").arg(QLocale().decimalPoint())); { const QString code = qvariant_cast(ui->systemCombo->currentData()); ui->systemCombo->blockSignals(true); ui->systemCombo->clear(); InitPMSystems(ui->systemCombo); ui->systemCombo->setCurrentIndex(-1); ui->systemCombo->blockSignals(false); ui->systemCombo->setCurrentIndex(ui->systemCombo->findData(code)); } }