This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 131
/
options.cpp
87 lines (72 loc) · 2.77 KB
/
options.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* This file is part of QssEditor.
*
* QssEditor 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.
*
* QssEditor 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 QssEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QCoreApplication>
#include <QDir>
#include "settings.h"
#include "options.h"
#include "ui_options.h"
Options::Options(QWidget *parent) :
QDialog(parent),
ui(new Ui::Options),
m_startTranslationIndex(-1)
{
ui->setupUi(this);
ui->checkOpenLast->setChecked(SETTINGS_GET_BOOL(SETTING_OPEN_LAST_FILE));
ui->spinPreviewDelay->setValue(SETTINGS_GET_INT(SETTING_PREVIEW_DELAY));
ui->comboLang->addItem('<' + tr("System") + '>');
// translations
const QMap<QString, QString> tsmap = Settings::instance()->translations();
QString ts = SETTINGS_GET_STRING(SETTING_TRANSLATION);
QMap<QString, QString>::const_iterator itEnd = tsmap.end();
const QString basePath =
#ifdef Q_OS_UNIX
QString("/usr/share/" TARGET_STRING).toLower()
#else
QCoreApplication::applicationDirPath()
#endif
+ QDir::separator()
+ "translations"
+ QDir::separator();
for(QMap<QString, QString>::const_iterator it = tsmap.begin();it != itEnd;++it)
{
ui->comboLang->addItem(QIcon(basePath + it.key() + ".png"), it.value(), it.key());
if(it.key() == ts)
{
m_startTranslationIndex = ui->comboLang->count() - 1;
ui->comboLang->setCurrentIndex(m_startTranslationIndex);
}
}
if(m_startTranslationIndex < 0)
m_startTranslationIndex = 0;
ui->labelRestart->hide();
adjustSize();
resize(width(), height()+10);
}
Options::~Options()
{
delete ui;
}
void Options::slotSomethingImportantChanged()
{
ui->labelRestart->setVisible(ui->comboLang->currentIndex() != m_startTranslationIndex);
}
void Options::saveSettings() const
{
SETTINGS_SET_STRING(SETTING_TRANSLATION, ui->comboLang->itemData(ui->comboLang->currentIndex()).toString(), Settings::NoSync);
SETTINGS_SET_BOOL(SETTING_OPEN_LAST_FILE, ui->checkOpenLast->isChecked(), Settings::NoSync);
SETTINGS_SET_INT(SETTING_PREVIEW_DELAY, ui->spinPreviewDelay->value());
}