// 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 #include "clangutils.h" #include #include #include #include namespace LanguageClient { class Client; } namespace ClangCodeModel { namespace Internal { class ClangdClient; class ClangdTextMark : public TextEditor::TextMark { public: ClangdTextMark(TextEditor::TextDocument *doc, const LanguageServerProtocol::Diagnostic &diagnostic, bool isProjectFile, ClangdClient *client); private: bool addToolTipContent(QLayout *target) const override; const LanguageServerProtocol::Diagnostic m_lspDiagnostic; const ClangDiagnostic m_diagnostic; const QPointer m_client; }; } // namespace Internal } // namespace ClangCodeModel