blob: 6a4c7f2f54fd2e0d2858de81a82d73a8916be3c6 (
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
|
// 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 "indenter.h"
#include <utils/id.h>
#include <QWidget>
namespace ProjectExplorer { class Project; }
namespace TextEditor {
class ICodeStylePreferences;
class TEXTEDITOR_EXPORT CodeStyleEditorWidget : public QWidget
{
Q_OBJECT
public:
CodeStyleEditorWidget(QWidget *parent = nullptr)
: QWidget(parent)
{}
virtual void apply() {}
virtual void finish() {}
};
class TEXTEDITOR_EXPORT ICodeStylePreferencesFactory
{
ICodeStylePreferencesFactory(const ICodeStylePreferencesFactory &) = delete;
ICodeStylePreferencesFactory &operator=(const ICodeStylePreferencesFactory &) = delete;
public:
ICodeStylePreferencesFactory();
virtual ~ICodeStylePreferencesFactory() = default;
virtual CodeStyleEditorWidget *createCodeStyleEditor(ICodeStylePreferences *codeStyle,
ProjectExplorer::Project *project = nullptr,
QWidget *parent = nullptr);
virtual CodeStyleEditorWidget *createAdditionalGlobalSettings(ICodeStylePreferences *codeStyle,
ProjectExplorer::Project *project
= nullptr,
QWidget *parent = nullptr);
virtual Utils::Id languageId() = 0;
virtual QString displayName() = 0;
virtual ICodeStylePreferences *createCodeStyle() const = 0;
virtual CodeStyleEditorWidget *createEditor(ICodeStylePreferences *preferences,
ProjectExplorer::Project *project = nullptr,
QWidget *parent = nullptr) const = 0;
virtual TextEditor::Indenter *createIndenter(QTextDocument *doc) const = 0;
virtual QString snippetProviderGroupId() const = 0;
virtual QString previewText() const = 0;
};
} // namespace TextEditor
|