mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-02 23:20:20 +00:00
8ef87e618a
Icon aliases were complete mess. Some icons had alias some didn't. Named with underscores vs. hyphens vs. camelCase. Lower vs. upper case. "ICON" prefix vs. suffix vs. nothing. With vs. without filename suffix. Some didn't make sence. Eg. mapwidget-marker-gray (I can see, it's grey, but what does it represent?) Some were duplicated, eg warning vs. warning-icon. Some were name after widget, which is wrong. Do not reinvent wheel. Use widely used naming scheme close to Freedesktop Icon Naming Specification. This will enable usage of common icons from current set in the future. Thus Subsurface will fit nicely to GUI. This changes icon aliases to one, easy grep-able style. Signed-off-by: Martin Měřinský <mermar@centrum.cz>
107 lines
4.3 KiB
C++
107 lines
4.3 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "preferences_language.h"
|
|
#include "ui_prefs_language.h"
|
|
#include "core/helpers.h"
|
|
#include "core/subsurface-qt/SettingsObjectWrapper.h"
|
|
|
|
#include <QApplication>
|
|
#include <QMessageBox>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include "qt-models/models.h"
|
|
|
|
PreferencesLanguage::PreferencesLanguage() : AbstractPreferencesWidget(tr("Language"), QIcon(":preferences-desktop-locale-icon"), 4)
|
|
{
|
|
ui = new Ui::PreferencesLanguage();
|
|
ui->setupUi(this);
|
|
|
|
QSortFilterProxyModel *filterModel = new QSortFilterProxyModel();
|
|
filterModel->setSourceModel(LanguageModel::instance());
|
|
filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
ui->languageDropdown->setModel(filterModel);
|
|
filterModel->sort(0);
|
|
connect(ui->languageFilter, &QLineEdit::textChanged,
|
|
filterModel, &QSortFilterProxyModel::setFilterFixedString);
|
|
|
|
dateFormatShortMap.insert("MM/dd/yyyy", "M/d/yy");
|
|
dateFormatShortMap.insert("dd.MM.yyyy", "d.M.yy");
|
|
dateFormatShortMap.insert("yyyy-MM-dd", "yy-M-d");
|
|
foreach (QString format, dateFormatShortMap.keys())
|
|
ui->dateFormatEntry->addItem(format);
|
|
connect(ui->dateFormatEntry, SIGNAL(currentIndexChanged(const QString&)),
|
|
this, SLOT(dateFormatChanged(const QString&)));
|
|
|
|
ui->timeFormatEntry->addItem("hh:mm");
|
|
ui->timeFormatEntry->addItem("h:mm AP");
|
|
ui->timeFormatEntry->addItem("hh:mm AP");
|
|
}
|
|
|
|
PreferencesLanguage::~PreferencesLanguage()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void PreferencesLanguage::dateFormatChanged(const QString &text)
|
|
{
|
|
ui->shortDateFormatEntry->setText(dateFormatShortMap.value(text));
|
|
}
|
|
|
|
void PreferencesLanguage::refreshSettings()
|
|
{
|
|
ui->languageSystemDefault->setChecked(prefs.locale.use_system_language);
|
|
ui->timeFormatSystemDefault->setChecked(!prefs.time_format_override);
|
|
ui->dateFormatSystemDefault->setChecked(!prefs.date_format_override);
|
|
ui->timeFormatEntry->setCurrentText(prefs.time_format);
|
|
ui->dateFormatEntry->setCurrentText(prefs.date_format);
|
|
ui->shortDateFormatEntry->setText(prefs.date_format_short);
|
|
QAbstractItemModel *m = ui->languageDropdown->model();
|
|
QModelIndexList languages = m->match(m->index(0, 0), Qt::UserRole, QString(prefs.locale.lang_locale).replace("-", "_"));
|
|
if (languages.count())
|
|
ui->languageDropdown->setCurrentIndex(languages.first().row());
|
|
}
|
|
|
|
#include <QDebug>
|
|
void PreferencesLanguage::syncSettings()
|
|
{
|
|
bool useSystemLang = prefs.locale.use_system_language;
|
|
QString currentText = ui->languageDropdown->currentText();
|
|
|
|
if (useSystemLang != ui->languageSystemDefault->isChecked() ||
|
|
(!useSystemLang && currentText != prefs.locale.language)) {
|
|
// remove the googlemaps cache folder on language change
|
|
QDir googlecachedir(QString(system_default_directory()).append("/googlemaps"));
|
|
googlecachedir.removeRecursively();
|
|
|
|
QMessageBox::warning(this, tr("Restart required"),
|
|
tr("To correctly load a new language you must restart Subsurface."));
|
|
}
|
|
QAbstractItemModel *m = ui->languageDropdown->model();
|
|
QModelIndexList languages = m->match(m->index(0, 0), Qt::DisplayRole, currentText);
|
|
QString currentLocale;
|
|
if (languages.count())
|
|
currentLocale = m->data(languages.first(),Qt::UserRole).toString();
|
|
|
|
|
|
auto lang = SettingsObjectWrapper::instance()->language_settings;
|
|
lang->setLanguage(currentText);
|
|
lang->setLangLocale(currentLocale);
|
|
lang->setUseSystemLanguage(ui->languageSystemDefault->isChecked());
|
|
lang->setTimeFormatOverride(!ui->timeFormatSystemDefault->isChecked());
|
|
lang->setDateFormatOverride(!ui->dateFormatSystemDefault->isChecked());
|
|
lang->setTimeFormat(ui->timeFormatEntry->currentText());
|
|
lang->setDateFormat(ui->dateFormatEntry->currentText());
|
|
lang->setDateFormatShort(ui->shortDateFormatEntry->text());
|
|
uiLanguage(NULL);
|
|
|
|
QString qDateTimeWeb = tr("These will be used as is. This might not be what you intended.\nSee http://doc.qt.io/qt-5/qdatetime.html#toString");
|
|
QRegExp tfillegalchars("[^hHmszaApPt\\s:;\\.,]");
|
|
if (tfillegalchars.indexIn(ui->timeFormatEntry->currentText()) >= 0)
|
|
QMessageBox::warning(this, tr("Literal characters"),
|
|
tr("Non-special character(s) in time format.\n") + qDateTimeWeb);
|
|
|
|
QRegExp dfillegalchars("[^dMy/\\s:;\\.,\\-]");
|
|
if (dfillegalchars.indexIn(ui->dateFormatEntry->currentText()) >= 0 ||
|
|
dfillegalchars.indexIn(ui->shortDateFormatEntry->text()) >= 0)
|
|
QMessageBox::warning(this, tr("Literal characters"),
|
|
tr("Non-special character(s) in date format.\n") + qDateTimeWeb);
|
|
}
|