Add dark and light theme to editor config page.

The dark and light themes are hardwired into Seer.
After applying one of them, you can tweak them.
Then save the configuration.
This commit is contained in:
Ernie Pasveer
2022-07-09 10:03:03 -05:00
parent ff8dec0824
commit 8c894b9e84
8 changed files with 270 additions and 95 deletions
+3 -3
View File
@@ -16,10 +16,10 @@
SeerEditorManagerWidget::SeerEditorManagerWidget (QWidget* parent) : QWidget(parent) {
// Initialize private data
_editorFont = QFont("Source Code Pro", 10); // Default font.
_editorHighlighterSettings = SeerHighlighterSettings::populateForCPP(); // Default syntax highlighting.
_editorFont = QFont("Source Code Pro", 10); // Default font.
_editorHighlighterSettings = SeerHighlighterSettings::populateForCPP(""); // Default syntax highlighting.
_editorHighlighterEnabled = true;
_editorKeySettings = SeerKeySettings::populate(); // Defualt key settings.
_editorKeySettings = SeerKeySettings::populate(); // Defualt key settings.
_assemblyWidget = 0;
// Setup UI