blob: 5cdd8df2acda63d9f420424e133cc8b7e7df6541 (
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
|
// 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 "texteditor_global.h"
#include <utils/store.h>
QT_BEGIN_NAMESPACE
class QTextDocument;
class QTextCursor;
QT_END_NAMESPACE
namespace TextEditor {
class TEXTEDITOR_EXPORT TypingSettings
{
public:
// This enum must match the indexes of tabKeyBehavior widget
enum TabKeyBehavior {
TabNeverIndents = 0,
TabAlwaysIndents = 1,
TabLeadingWhitespaceIndents = 2
};
// This enum must match the indexes of smartBackspaceBehavior widget
enum SmartBackspaceBehavior {
BackspaceNeverIndents = 0,
BackspaceFollowsPreviousIndents = 1,
BackspaceUnindents = 2
};
enum CommentPosition {
Automatic = 0,
StartOfLine = 1,
AfterWhitespace = 2,
};
TypingSettings();
bool tabShouldIndent(const QTextDocument *document, const QTextCursor &cursor, int *suggestedPosition) const;
Utils::Store toMap() const;
void fromMap(const Utils::Store &map);
bool equals(const TypingSettings &ts) const;
bool m_autoIndent;
TabKeyBehavior m_tabKeyBehavior;
SmartBackspaceBehavior m_smartBackspaceBehavior;
bool m_preferSingleLineComments;
CommentPosition m_commentPosition = Automatic;
};
void setupTypingSettings();
void updateGlobalTypingSettings(const TypingSettings &newTypingSettings);
TEXTEDITOR_EXPORT TypingSettings &globalTypingSettings();
} // namespace TextEditor
Q_DECLARE_METATYPE(TextEditor::TypingSettings)
|