aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlls/qqmllscompletionplugin_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlls/qqmllscompletionplugin_p.h')
-rw-r--r--src/qmlls/qqmllscompletionplugin_p.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/qmlls/qqmllscompletionplugin_p.h b/src/qmlls/qqmllscompletionplugin_p.h
new file mode 100644
index 0000000000..0dde7bec76
--- /dev/null
+++ b/src/qmlls/qqmllscompletionplugin_p.h
@@ -0,0 +1,42 @@
+// Copyright (C) 2024 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 QQMLLSCOMPLETIONPLUGIN_H
+#define QQMLLSCOMPLETIONPLUGIN_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 <iterator>
+
+#include <QtQmlDom/private/qqmldomelements_p.h>
+#include <QtLanguageServer/private/qlanguageserverspectypes_p.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQmlLSCompletionPlugin
+{
+public:
+ QQmlLSCompletionPlugin() = default;
+ virtual ~QQmlLSCompletionPlugin() = default;
+
+ using BackInsertIterator = std::back_insert_iterator<QList<QLspSpecification::CompletionItem>>;
+
+ virtual void suggestSnippetsForLeftHandSideOfBinding(const QQmlJS::Dom::DomItem &items,
+ BackInsertIterator result) const = 0;
+
+ virtual void suggestSnippetsForRightHandSideOfBinding(const QQmlJS::Dom::DomItem &items,
+ BackInsertIterator result) const = 0;
+};
+
+QT_END_NAMESPACE
+
+#endif // QQMLLSCOMPLETIONPLUGIN_H