blob: 1c48e75d5b7e2d4b6a1e66f8f2b161f5863e5045 (
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
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "requests/getcompletions.h"
#include <texteditor/basehoverhandler.h>
#include <QTextBlock>
#pragma once
namespace TextEditor { class TextSuggestion; }
namespace Copilot::Internal {
class CopilotClient;
class CopilotHoverHandler final : public TextEditor::BaseHoverHandler
{
public:
CopilotHoverHandler() = default;
protected:
void identifyMatch(TextEditor::TextEditorWidget *editorWidget,
int pos,
ReportPriority report) final;
void operateTooltip(TextEditor::TextEditorWidget *editorWidget, const QPoint &point) final;
private:
QTextBlock m_block;
};
} // namespace Copilot::Internal
|