aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlls/qqmllanguageserver_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlls/qqmllanguageserver_p.h')
-rw-r--r--src/qmlls/qqmllanguageserver_p.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/qmlls/qqmllanguageserver_p.h b/src/qmlls/qqmllanguageserver_p.h
new file mode 100644
index 0000000000..3347acd670
--- /dev/null
+++ b/src/qmlls/qqmllanguageserver_p.h
@@ -0,0 +1,83 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QQMLLANGUAGESERVER_P_H
+#define QQMLLANGUAGESERVER_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "qlanguageserver_p.h"
+#include "qqmlcodemodel_p.h"
+#include "qqmlfindusagessupport_p.h"
+#include "qtextsynchronization_p.h"
+#include "qqmllintsuggestions_p.h"
+#include "qworkspace_p.h"
+#include "qqmlcompletionsupport_p.h"
+#include "qqmlgototypedefinitionsupport_p.h"
+#include "qqmlformatting_p.h"
+#include "qqmlrangeformatting_p.h"
+#include "qqmlgotodefinitionsupport_p.h"
+#include "qqmlrenamesymbolsupport_p.h"
+#include "qqmlhover_p.h"
+#include "qqmlhighlightsupport_p.h"
+
+QT_BEGIN_NAMESPACE
+
+class QQmlToolingSettings;
+
+namespace QmlLsp {
+
+class QQmlLanguageServer : public QLanguageServerModule
+{
+ Q_OBJECT
+public:
+ QQmlLanguageServer(std::function<void(const QByteArray &)> sendData,
+ QQmlToolingSettings *settings = nullptr);
+
+ QString name() const final;
+ void registerHandlers(QLanguageServer *server, QLanguageServerProtocol *protocol) final;
+ void setupCapabilities(const QLspSpecification::InitializeParams &clientInfo,
+ QLspSpecification::InitializeResult &serverInfo) final;
+
+ int returnValue() const;
+
+ QQmlCodeModel *codeModel();
+ QLanguageServer *server();
+ TextSynchronization *textSynchronization();
+ QmlLintSuggestions *lint();
+ WorkspaceHandlers *worspace();
+
+public Q_SLOTS:
+ void exit();
+ void errorExit();
+
+private:
+ QQmlCodeModel m_codeModel;
+ QLanguageServer m_server;
+ TextSynchronization m_textSynchronization;
+ QmlLintSuggestions m_lint;
+ WorkspaceHandlers m_workspace;
+ QmlCompletionSupport m_completionSupport;
+ QmlGoToTypeDefinitionSupport m_navigationSupport;
+ QmlGoToDefinitionSupport m_definitionSupport;
+ QQmlFindUsagesSupport m_referencesSupport;
+ QQmlDocumentFormatting m_documentFormatting;
+ QQmlRenameSymbolSupport m_renameSupport;
+ QQmlRangeFormatting m_rangeFormatting;
+ QQmlHover m_hover;
+ QQmlHighlightSupport m_highlightSupport;
+ int m_returnValue = 1;
+};
+
+} // namespace QmlLsp
+QT_END_NAMESPACE
+#endif // QQMLLANGUAGESERVER_P_H