blob: b72a09253c0f3c4cc19b1b9b27db7de7f2053a8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "cppeditor_global.h"
#include <texteditor/icodestylepreferences.h>
#include <utils/store.h>
namespace CPlusPlus { class Overview; }
namespace ProjectExplorer { class Project; }
namespace TextEditor { class TabSettings; }
namespace Utils { class Id; }
namespace CppEditor {
class CPPEDITOR_EXPORT CppCodeStyleSettings
{
public:
CppCodeStyleSettings();
QStringList statementMacros;
bool indentBlockBraces = false;
bool indentBlockBody = true;
bool indentClassBraces = false;
bool indentEnumBraces = false;
bool indentNamespaceBraces = false;
bool indentNamespaceBody = false;
bool indentAccessSpecifiers = false;
bool indentDeclarationsRelativeToAccessSpecifiers = true;
bool indentFunctionBody = true;
bool indentFunctionBraces = false;
bool indentSwitchLabels = false;
bool indentStatementsRelativeToSwitchLabels = true;
bool indentBlocksRelativeToSwitchLabels = false;
bool indentControlFlowRelativeToSwitchLabels = true;
// Formatting of pointer and reference declarations, see Overview::StarBindFlag.
bool bindStarToIdentifier = true;
bool bindStarToTypeName = false;
bool bindStarToLeftSpecifier = false;
bool bindStarToRightSpecifier = false;
// false: if (a &&
// b)
// c;
// true: if (a &&
// b)
// c;
// but always: while (a &&
// b)
// foo;
bool extraPaddingForConditionsIfConfusingAlign = true;
// false: a = a +
// b;
// true: a = a +
// b
bool alignAssignments = false;
// TODO only kept to allow conversion to the new setting getterNameTemplate in
// CppEditor/QuickFixSetting. Remove in 4.16
bool preferGetterNameWithoutGetPrefix = true;
#ifdef WITH_TESTS
bool forceFormatting = false;
#endif
void toMap(Utils::Store &map) const;
void fromMap(const Utils::Store &map);
bool equals(const CppCodeStyleSettings &rhs) const;
bool operator==(const CppCodeStyleSettings &s) const { return equals(s); }
bool operator!=(const CppCodeStyleSettings &s) const { return !equals(s); }
static CppCodeStyleSettings getProjectCodeStyle(ProjectExplorer::Project *project);
static CppCodeStyleSettings currentProjectCodeStyle();
static CppCodeStyleSettings currentGlobalCodeStyle();
/*! Returns an Overview configured by the current project's code style.
If no current project is available or an error occurs when getting the
current project's code style, the current global code style settings
are applied.
*/
static CPlusPlus::Overview currentProjectCodeStyleOverview();
/*! Returns an Overview configured by the current global code style.
If there occurred an error getting the current global code style, a
default constructed Overview is returned.
*/
static CPlusPlus::Overview currentGlobalCodeStyleOverview();
static Utils::Id settingsId();
};
using CppCodeStylePreferences = TextEditor::TypedCodeStylePreferences<CppCodeStyleSettings>;
} // namespace CppEditor
Q_DECLARE_METATYPE(CppEditor::CppCodeStyleSettings)
|