2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
#include "nimsettings.h"
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "nimcodestylepreferencesfactory.h"
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "../nimconstants.h"
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <texteditor/codestylepool.h>
|
2021-03-25 15:45:58 +01:00
|
|
|
#include <texteditor/icodestylepreferencesfactory.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <texteditor/simplecodestylepreferences.h>
|
|
|
|
|
#include <texteditor/tabsettings.h>
|
2021-03-25 15:45:58 +01:00
|
|
|
#include <texteditor/texteditorsettings.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/layoutbuilder.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
using namespace TextEditor;
|
2021-03-25 15:45:58 +01:00
|
|
|
using namespace Utils;
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
namespace Nim {
|
|
|
|
|
|
2018-12-23 15:18:06 +01:00
|
|
|
static SimpleCodeStylePreferences *m_globalCodeStyle = nullptr;
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
NimSettings::NimSettings()
|
2018-12-23 15:18:06 +01:00
|
|
|
{
|
2021-03-25 15:45:58 +01:00
|
|
|
setAutoApply(false);
|
|
|
|
|
setSettingsGroups("Nim", "NimSuggest");
|
2018-12-23 15:18:06 +01:00
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
InitializeCodeStyleSettings();
|
2018-12-23 15:18:06 +01:00
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
registerAspect(&nimSuggestPath);
|
|
|
|
|
nimSuggestPath.setSettingsKey("Command");
|
|
|
|
|
nimSuggestPath.setDisplayStyle(StringAspect::PathChooserDisplay);
|
|
|
|
|
nimSuggestPath.setExpectedKind(PathChooser::ExistingCommand);
|
|
|
|
|
nimSuggestPath.setLabelText(tr("Path:"));
|
2018-12-23 15:18:06 +01:00
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
readSettings(Core::ICore::settings());
|
2018-12-23 15:18:06 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
NimSettings::~NimSettings()
|
2018-12-23 15:18:06 +01:00
|
|
|
{
|
2021-03-25 15:45:58 +01:00
|
|
|
TerminateCodeStyleSettings();
|
2018-12-23 15:18:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SimpleCodeStylePreferences *NimSettings::globalCodeStyle()
|
|
|
|
|
{
|
|
|
|
|
return m_globalCodeStyle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimSettings::InitializeCodeStyleSettings()
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
// code style factory
|
|
|
|
|
auto factory = new NimCodeStylePreferencesFactory();
|
|
|
|
|
TextEditorSettings::registerCodeStyleFactory(factory);
|
|
|
|
|
|
|
|
|
|
// code style pool
|
|
|
|
|
auto pool = new CodeStylePool(factory, this);
|
|
|
|
|
TextEditorSettings::registerCodeStylePool(Nim::Constants::C_NIMLANGUAGE_ID, pool);
|
|
|
|
|
|
|
|
|
|
m_globalCodeStyle = new SimpleCodeStylePreferences();
|
|
|
|
|
m_globalCodeStyle->setDelegatingPool(pool);
|
|
|
|
|
m_globalCodeStyle->setDisplayName(tr("Global", "Settings"));
|
|
|
|
|
m_globalCodeStyle->setId(Nim::Constants::C_NIMGLOBALCODESTYLE_ID);
|
|
|
|
|
pool->addCodeStyle(m_globalCodeStyle);
|
|
|
|
|
TextEditorSettings::registerCodeStyle(Nim::Constants::C_NIMLANGUAGE_ID, m_globalCodeStyle);
|
|
|
|
|
|
|
|
|
|
auto nimCodeStyle = new SimpleCodeStylePreferences();
|
|
|
|
|
nimCodeStyle->setId("nim");
|
|
|
|
|
nimCodeStyle->setDisplayName(tr("Nim"));
|
|
|
|
|
nimCodeStyle->setReadOnly(true);
|
2018-12-23 15:18:06 +01:00
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
TabSettings nimTabSettings;
|
|
|
|
|
nimTabSettings.m_tabPolicy = TabSettings::SpacesOnlyTabPolicy;
|
|
|
|
|
nimTabSettings.m_tabSize = 2;
|
|
|
|
|
nimTabSettings.m_indentSize = 2;
|
|
|
|
|
nimTabSettings.m_continuationAlignBehavior = TabSettings::ContinuationAlignWithIndent;
|
|
|
|
|
nimCodeStyle->setTabSettings(nimTabSettings);
|
2018-12-23 15:18:06 +01:00
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
pool->addCodeStyle(nimCodeStyle);
|
|
|
|
|
|
|
|
|
|
m_globalCodeStyle->setCurrentDelegate(nimCodeStyle);
|
|
|
|
|
|
|
|
|
|
pool->loadCustomCodeStyles();
|
|
|
|
|
|
|
|
|
|
// load global settings (after built-in settings are added to the pool)
|
|
|
|
|
QSettings *s = Core::ICore::settings();
|
|
|
|
|
m_globalCodeStyle->fromSettings(QLatin1String(Nim::Constants::C_NIMLANGUAGE_ID), s);
|
|
|
|
|
|
2018-12-23 15:18:06 +01:00
|
|
|
TextEditorSettings::registerMimeTypeForLanguageId(Nim::Constants::C_NIM_MIMETYPE,
|
|
|
|
|
Nim::Constants::C_NIMLANGUAGE_ID);
|
|
|
|
|
TextEditorSettings::registerMimeTypeForLanguageId(Nim::Constants::C_NIM_SCRIPT_MIMETYPE,
|
|
|
|
|
Nim::Constants::C_NIMLANGUAGE_ID);
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2018-12-23 15:18:06 +01:00
|
|
|
void NimSettings::TerminateCodeStyleSettings()
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
TextEditorSettings::unregisterCodeStyle(Nim::Constants::C_NIMLANGUAGE_ID);
|
|
|
|
|
TextEditorSettings::unregisterCodeStylePool(Nim::Constants::C_NIMLANGUAGE_ID);
|
|
|
|
|
TextEditorSettings::unregisterCodeStyleFactory(Nim::Constants::C_NIMLANGUAGE_ID);
|
|
|
|
|
|
|
|
|
|
delete m_globalCodeStyle;
|
|
|
|
|
m_globalCodeStyle = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-25 15:45:58 +01:00
|
|
|
|
|
|
|
|
// NimToolSettingsPage
|
|
|
|
|
|
|
|
|
|
NimToolsSettingsPage::NimToolsSettingsPage(NimSettings *settings)
|
|
|
|
|
{
|
|
|
|
|
setId(Nim::Constants::C_NIMTOOLSSETTINGSPAGE_ID);
|
|
|
|
|
setDisplayName(NimSettings::tr(Nim::Constants::C_NIMTOOLSSETTINGSPAGE_DISPLAY));
|
|
|
|
|
setCategory(Nim::Constants::C_NIMTOOLSSETTINGSPAGE_CATEGORY);
|
|
|
|
|
setDisplayCategory(NimSettings::tr("Nim"));
|
|
|
|
|
setCategoryIconPath(":/nim/images/settingscategory_nim.png");
|
|
|
|
|
setSettings(settings);
|
|
|
|
|
|
|
|
|
|
setLayouter([settings](QWidget *widget) {
|
|
|
|
|
using namespace Layouting;
|
|
|
|
|
Column {
|
|
|
|
|
Group {
|
2022-07-26 13:46:27 +02:00
|
|
|
title("Nimsuggest"),
|
2022-07-21 11:10:34 +02:00
|
|
|
Column { settings->nimSuggestPath }
|
2021-03-25 15:45:58 +01:00
|
|
|
},
|
2022-07-22 18:54:04 +02:00
|
|
|
st
|
2021-03-25 15:45:58 +01:00
|
|
|
}.attachTo(widget);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
} // namespace Nim
|