Sat, 11 Jun 2022 14:30:30 +0300
Rewrite dependency loading
7 | 1 | #include <QSettings> |
202
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
2 | #include <QMdiArea> |
40
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
3 | #include "gl/common.h" |
16 | 4 | #include "keyboardshortcutseditor.h" |
7 | 5 | #include "settingseditor.h" |
6 | #include "ui_settingseditor.h" | |
7 | ||
16 | 8 | SettingsEditor::SettingsEditor( |
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
9 | Configuration* settings, |
16 | 10 | const uiutilities::KeySequenceMap& defaultKeyboardShortcuts, |
11 | QWidget* parent | |
12 | ) : | |
7 | 13 | QDialog{parent}, |
14 | ui{*new Ui_SettingsEditor}, | |
15 | settings{settings}, | |
16 | libraries{settings, this}, | |
16 | 17 | librariesEditor{settings, this}, |
18 | defaultKeyboardShortcuts{defaultKeyboardShortcuts} | |
7 | 19 | { |
20 | this->ui.setupUi(this); | |
202
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
21 | this->ui.keyboardShortcutsView->setModel(new KeyboardShortcutsEditor{parent, this}); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
22 | this->ui.viewModeButtonGroup->setId(this->ui.viewModeTabs, int{QMdiArea::TabbedView}); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
23 | this->ui.viewModeButtonGroup->setId(this->ui.viewModeSubWindows, int{QMdiArea::SubWindowView}); |
7 | 24 | this->loadLocales(); |
25 | this->setDefaults(); | |
26 | QVBoxLayout* layout = new QVBoxLayout{this}; | |
27 | layout->addWidget(&librariesEditor); | |
28 | this->ui.tabLdrawLibraries->setLayout(layout); | |
29 | connect( | |
30 | this, | |
31 | &SettingsEditor::accepted, | |
32 | this, | |
33 | &SettingsEditor::handleAccepted); | |
34 | } | |
35 | ||
36 | SettingsEditor::~SettingsEditor() | |
37 | { | |
38 | delete &this->ui; | |
39 | } | |
40 | ||
41 | void SettingsEditor::handleAccepted() | |
42 | { | |
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
43 | this->settings->setLocale(this->ui.language->currentData().toString()); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
44 | this->settings->setMainColor(this->ui.mainColorButton->selectedColor()); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
45 | this->settings->setBackgroundColor(this->ui.backgroundColorButton->selectedColor()); |
48
3c10f0e2fbe0
added selection highlighting
Teemu Piippo <teemu@hecknology.net>
parents:
45
diff
changeset
|
46 | this->settings->setSelectedColor(this->ui.selectedColorButton->selectedColor()); |
44
c6114b3af3a6
added configurable line thickness
Teemu Piippo <teemu@hecknology.net>
parents:
41
diff
changeset
|
47 | this->settings->setLineThickness(static_cast<GLfloat>(this->ui.lineThickness->value())); |
45
272c84c7c87e
added configurable line anti-aliasing
Teemu Piippo <teemu@hecknology.net>
parents:
44
diff
changeset
|
48 | this->settings->setLineAntiAliasing(this->ui.lineAntiAliasing->isChecked()); |
202
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
49 | const int viewMode = this->ui.viewModeButtonGroup->checkedId(); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
50 | if (viewMode != -1) { |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
51 | this->settings->setViewMode(viewMode); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
52 | } |
7 | 53 | this->librariesEditor.saveSettings(this->settings); |
54 | } | |
55 | ||
56 | void SettingsEditor::loadLocales() | |
57 | { | |
58 | this->ui.language->clear(); | |
59 | QDir dir{":/locale"}; | |
60 | // Collect translation files in built-in resources | |
61 | QVector<QString> localeCodes = {"en"}; // English is the default locale | |
62 | for (const QFileInfo& file : dir.entryInfoList(QDir::Files)) | |
63 | { | |
64 | localeCodes.append(file.baseName()); | |
65 | } | |
66 | std::sort(localeCodes.begin(), localeCodes.end()); | |
67 | this->ui.language->addItem(tr("System language"), "system"); | |
68 | for (const QString& localeCode : localeCodes) | |
69 | { | |
70 | const QLocale locale{localeCode}; | |
71 | const QString languageName = QLocale::languageToString(locale.language()); | |
72 | const QIcon flag{":/flags/" + localeCode + ".png"}; | |
73 | this->ui.language->addItem(languageName, localeCode); | |
74 | this->ui.language->setItemIcon(this->ui.language->count() - 1, flag); | |
75 | } | |
76 | } | |
77 | ||
78 | void SettingsEditor::setDefaults() | |
79 | { | |
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
80 | this->setCurrentLanguage(this->settings->locale()); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
81 | this->ui.mainColorButton->setSelectedColor(this->settings->mainColor()); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
40
diff
changeset
|
82 | this->ui.backgroundColorButton->setSelectedColor(this->settings->backgroundColor()); |
48
3c10f0e2fbe0
added selection highlighting
Teemu Piippo <teemu@hecknology.net>
parents:
45
diff
changeset
|
83 | this->ui.selectedColorButton->setSelectedColor(this->settings->selectedColor()); |
44
c6114b3af3a6
added configurable line thickness
Teemu Piippo <teemu@hecknology.net>
parents:
41
diff
changeset
|
84 | this->ui.lineThickness->setValue(static_cast<double>(this->settings->lineThickness())); |
45
272c84c7c87e
added configurable line anti-aliasing
Teemu Piippo <teemu@hecknology.net>
parents:
44
diff
changeset
|
85 | this->ui.lineAntiAliasing->setChecked(this->settings->lineAntiAliasing()); |
202
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
86 | auto* const viewModeButton = this->ui.viewModeButtonGroup->button(this->settings->viewMode()); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
87 | if (viewModeButton != nullptr) { |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
88 | viewModeButton->setChecked(true); |
b05af0bab735
Replaced the tab widget with an MDI area
Teemu Piippo <teemu@hecknology.net>
parents:
48
diff
changeset
|
89 | } |
7 | 90 | } |
91 | ||
92 | void SettingsEditor::setCurrentLanguage(const QString& localeCode) | |
93 | { | |
94 | for (int i = 0; i < this->ui.language->count(); i += 1) | |
95 | { | |
96 | if (this->ui.language->itemData(i) == localeCode) | |
97 | { | |
98 | this->ui.language->setCurrentIndex(i); | |
99 | break; | |
100 | } | |
101 | } | |
102 | } |