aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljseditor/qmljseditorplugin.h
blob: f8303624a286b5f4c75de6ddd2f24a4225825ed0 (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
// 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

namespace QmlJS { class JsonSchemaManager; }

namespace QmlJSEditor::Internal {

class QmlJSQuickFixAssistProvider;

QmlJSQuickFixAssistProvider *quickFixAssistProvider();
QmlJS::JsonSchemaManager *jsonManager();

void setupQmlJSEditor();
void inspectElement();
void showContextPane();

enum class FormatResult {
    Success,
    Failed
};

} // QmlJSEditor::Internal