blob: 16b6d29ec1277d9802f4a85d3f9dbf8c0691e220 (
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) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "languageclient_global.h"
#include <languageserverprotocol/languagefeatures.h>
#include <texteditor/basehoverhandler.h>
#include <functional>
namespace LanguageClient {
class Client;
using HelpItemProvider = std::function<void(const LanguageServerProtocol::HoverRequest::Response &,
const Utils::FilePath &path)>;
class LANGUAGECLIENT_EXPORT HoverHandler final : public TextEditor::BaseHoverHandler
{
public:
explicit HoverHandler(Client *client);
~HoverHandler() override;
void abort() override;
/// If prefer diagnostics is enabled the hover handler checks whether a diagnostics is at the
/// pos passed to identifyMatch _before_ sending hover request to the server. If a diagnostic
/// can be found it will be used as a tooltip and no hover request is sent to the server.
/// If prefer diagnostics is disabled the diagnostics are only checked if the response is empty.
/// Defaults to prefer diagnostics.
void setPreferDiagnosticts(bool prefer);
void setHelpItemProvider(const HelpItemProvider &provider) { m_helpItemProvider = provider; }
void setHelpItem(const LanguageServerProtocol::MessageId &msgId, const Core::HelpItem &help);
protected:
void identifyMatch(TextEditor::TextEditorWidget *editorWidget,
int pos,
ReportPriority report) override;
private:
void handleResponse(const LanguageServerProtocol::HoverRequest::Response &response,
const QTextCursor &cursor);
void setContent(const LanguageServerProtocol::HoverContent &content);
bool reportDiagnostics(const QTextCursor &cursor);
QPointer<Client> m_client;
std::optional<LanguageServerProtocol::MessageId> m_currentRequest;
Utils::FilePath m_filePath;
LanguageServerProtocol::HoverRequest::Response m_response;
TextEditor::BaseHoverHandler::ReportPriority m_report;
HelpItemProvider m_helpItemProvider;
bool m_preferDiagnostics = true;
};
} // namespace LanguageClient
|