forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
105 lines
3.2 KiB
C++
105 lines
3.2 KiB
C++
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "clangformatindenter.h"
|
|
#include "clangformatconstants.h"
|
|
#include "clangformatsettings.h"
|
|
#include "clangformatutils.h"
|
|
|
|
#include <coreplugin/icore.h>
|
|
#include <extensionsystem/pluginmanager.h>
|
|
#include <extensionsystem/pluginspec.h>
|
|
#include <texteditor/tabsettings.h>
|
|
#include <texteditor/textdocumentlayout.h>
|
|
#include <utils/genericconstants.h>
|
|
|
|
using namespace clang;
|
|
using namespace format;
|
|
using namespace TextEditor;
|
|
|
|
namespace ClangFormat {
|
|
|
|
static bool isBeautifierPluginActivated()
|
|
{
|
|
const QVector<ExtensionSystem::PluginSpec *> specs = ExtensionSystem::PluginManager::plugins();
|
|
return std::find_if(specs.begin(),
|
|
specs.end(),
|
|
[](ExtensionSystem::PluginSpec *spec) {
|
|
return spec->name() == "Beautifier";
|
|
})
|
|
!= specs.end();
|
|
}
|
|
|
|
static bool isBeautifierOnSaveActivated()
|
|
{
|
|
if (!isBeautifierPluginActivated())
|
|
return false;
|
|
|
|
QSettings *s = Core::ICore::settings();
|
|
bool activated = false;
|
|
s->beginGroup(Utils::Constants::BEAUTIFIER_SETTINGS_GROUP);
|
|
s->beginGroup(Utils::Constants::BEAUTIFIER_GENERAL_GROUP);
|
|
if (s->value(Utils::Constants::BEAUTIFIER_AUTO_FORMAT_ON_SAVE, false).toBool())
|
|
activated = true;
|
|
s->endGroup();
|
|
s->endGroup();
|
|
return activated;
|
|
}
|
|
|
|
ClangFormatIndenter::ClangFormatIndenter(QTextDocument *doc)
|
|
: ClangFormatBaseIndenter(doc)
|
|
{}
|
|
|
|
bool ClangFormatIndenter::formatCodeInsteadOfIndent() const
|
|
{
|
|
return ClangFormatSettings::instance().mode() == ClangFormatSettings::Mode::Formatting;
|
|
}
|
|
|
|
Utils::optional<TabSettings> ClangFormatIndenter::tabSettings() const
|
|
{
|
|
FormatStyle style = styleForFile();
|
|
TabSettings tabSettings;
|
|
|
|
switch (style.UseTab) {
|
|
case FormatStyle::UT_Never:
|
|
tabSettings.m_tabPolicy = TabSettings::SpacesOnlyTabPolicy;
|
|
break;
|
|
case FormatStyle::UT_Always:
|
|
tabSettings.m_tabPolicy = TabSettings::TabsOnlyTabPolicy;
|
|
break;
|
|
default:
|
|
tabSettings.m_tabPolicy = TabSettings::MixedTabPolicy;
|
|
}
|
|
|
|
tabSettings.m_tabSize = static_cast<int>(style.TabWidth);
|
|
tabSettings.m_indentSize = static_cast<int>(style.IndentWidth);
|
|
|
|
if (style.AlignAfterOpenBracket == FormatStyle::BAS_DontAlign)
|
|
tabSettings.m_continuationAlignBehavior = TabSettings::NoContinuationAlign;
|
|
else
|
|
tabSettings.m_continuationAlignBehavior = TabSettings::ContinuationAlignWithIndent;
|
|
|
|
return tabSettings;
|
|
}
|
|
|
|
int ClangFormatIndenter::lastSaveRevision() const
|
|
{
|
|
auto *layout = qobject_cast<TextEditor::TextDocumentLayout *>(m_doc->documentLayout());
|
|
if (!layout)
|
|
return 0;
|
|
return layout->lastSaveRevision;
|
|
}
|
|
|
|
bool ClangFormatIndenter::formatOnSave() const
|
|
{
|
|
return ClangFormatSettings::instance().formatOnSave() && !isBeautifierOnSaveActivated()
|
|
&& formatCodeInsteadOfIndent();
|
|
}
|
|
|
|
bool ClangFormatIndenter::formatWhileTyping() const
|
|
{
|
|
return ClangFormatSettings::instance().formatWhileTyping() && formatCodeInsteadOfIndent();
|
|
}
|
|
|
|
} // namespace ClangFormat
|