2015-08-26 09:37:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
Title("Nimsuggest"),
|
|
|
|
|
settings->nimSuggestPath
|
|
|
|
|
},
|
|
|
|
|
Stretch()
|
|
|
|
|
}.attachTo(widget);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
} // namespace Nim
|