/** * Copyright (C) 2021-2024 Saturneric * * This file is part of GpgFrontend. * * GpgFrontend 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. * * GpgFrontend 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 GpgFrontend. If not, see . * * The initial version of the source code is inherited from * the gpg4usb project, which is under GPL-3.0-or-later. * * All the source code of GpgFrontend was modified and released by * Saturneric starting on May 12, 2021. * * SPDX-License-Identifier: GPL-3.0-or-later * */ #include "SettingsDialog.h" #include "core/GpgConstants.h" #include "ui/dialog/settings/SettingsAppearance.h" #include "ui/dialog/settings/SettingsGeneral.h" #include "ui/dialog/settings/SettingsKeyServer.h" #include "ui/dialog/settings/SettingsNetwork.h" #include "ui/main_window/MainWindow.h" namespace GpgFrontend::UI { SettingsDialog::SettingsDialog(QWidget* parent) : GeneralDialog(typeid(SettingsDialog).name(), parent) { tab_widget_ = new QTabWidget(); general_tab_ = new GeneralTab(); appearance_tab_ = new AppearanceTab(); key_server_tab_ = new KeyserverTab(); network_tab_ = new NetworkTab(); auto* main_layout = new QVBoxLayout(); main_layout->addWidget(tab_widget_); main_layout->stretch(0); tab_widget_->addTab(general_tab_, tr("General")); tab_widget_->addTab(appearance_tab_, tr("Appearance")); tab_widget_->addTab(key_server_tab_, tr("Key Server")); tab_widget_->addTab(network_tab_, tr("Network")); #if defined(__APPLE__) && defined(__MACH__) connect(this, &QDialog::finished, this, &SettingsDialog::SlotAccept); setWindowTitle(tr("Preference")); #else button_box_ = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(button_box_, &QDialogButtonBox::accepted, this, &SettingsDialog::SlotAccept); connect(button_box_, &QDialogButtonBox::rejected, this, &SettingsDialog::reject); main_layout->addWidget(button_box_); main_layout->stretch(0); setWindowTitle(tr("Settings")); #endif setLayout(main_layout); // restart ui connect(general_tab_, &GeneralTab::SignalRestartNeeded, this, &SettingsDialog::slot_declare_a_restart); // restart core and ui connect(general_tab_, &GeneralTab::SignalDeepRestartNeeded, this, &SettingsDialog::slot_declare_a_deep_restart); // restart core and ui connect(appearance_tab_, &AppearanceTab::SignalRestartNeeded, this, &SettingsDialog::slot_declare_a_restart); // announce main window connect(this, &SettingsDialog::SignalRestartNeeded, qobject_cast(parent), &MainWindow::SlotSetRestartNeeded); this->setMinimumWidth(500); this->adjustSize(); this->show(); this->raise(); this->activateWindow(); } void SettingsDialog::slot_declare_a_restart() { if (restart_mode_ < kRestartCode) { this->restart_mode_ = kRestartCode; } } void SettingsDialog::slot_declare_a_deep_restart() { if (restart_mode_ < kDeepRestartCode) { this->restart_mode_ = kDeepRestartCode; } } void SettingsDialog::SlotAccept() { general_tab_->ApplySettings(); appearance_tab_->ApplySettings(); key_server_tab_->ApplySettings(); network_tab_->ApplySettings(); if (restart_mode_ != kNonRestartCode) { emit SignalRestartNeeded(restart_mode_); } close(); } auto SettingsDialog::ListLanguages() -> QHash { QHash languages; languages.insert(QString(), tr("System Default")); auto filenames = QDir(QLatin1String(":/i18n")).entryList(); for (const auto& file : filenames) { auto start = file.indexOf('.') + 1; auto end = file.lastIndexOf('.'); if (start < 0 || end < 0 || start >= end) continue; auto locale = file.mid(start, end - start); QLocale const q_locale(locale); #if QT_VERSION >= QT_VERSION_CHECK(6, 2, 0) if (q_locale.nativeTerritoryName().isEmpty()) continue; #else if (q_locale.nativeCountryName().isEmpty()) continue; #endif auto language = q_locale.nativeLanguageName() + " (" + locale + ")"; languages.insert(q_locale.name(), language); } return languages; } } // namespace GpgFrontend::UI