1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of Qt Creator.
7 **
8 ** Commercial License Usage
9 ** Licensees holding valid commercial Qt licenses may use this file in
10 ** accordance with the commercial license agreement provided with the
11 ** Software or, alternatively, in accordance with the terms contained in
12 ** a written agreement between you and The Qt Company. For licensing terms
13 ** and conditions see https://www.qt.io/terms-conditions. For further
14 ** information use the contact form at https://www.qt.io/contact-us.
15 **
16 ** GNU General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU
18 ** General Public License version 3 as published by the Free Software
19 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
20 ** included in the packaging of this file. Please review the following
21 ** information to ensure the GNU General Public License requirements will
22 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
23 **
24 ****************************************************************************/
25 
26 #pragma once
27 
28 #include <texteditor/codeassist/assistproposaliteminterface.h>
29 
30 #include <QIcon>
31 #include <QString>
32 
33 namespace ClangCodeModel {
34 namespace Internal {
35 
36 class ClangPreprocessorAssistProposalItem final : public TextEditor::AssistProposalItemInterface
37 {
38 public:
39     ~ClangPreprocessorAssistProposalItem() noexcept override = default;
40     bool prematurelyApplies(const QChar &typedChar) const final;
41     bool implicitlyApplies() const final;
42     void apply(TextEditor::TextDocumentManipulatorInterface &manipulator,
43                int basePosition) const final;
44 
45     void setText(const QString &text);
46     QString text() const final;
47 
48     void setIcon(const QIcon &icon);
49     QIcon icon() const final;
50 
51     void setDetail(const QString &detail);
52     QString detail() const final;
53 
54     Qt::TextFormat detailFormat() const final;
55 
56     bool isSnippet() const final;
57     bool isValid() const final;
58 
59     quint64 hash() const final;
60 
61     void setCompletionOperator(uint completionOperator);
62 
63 private:
64     bool isInclude() const;
65 
66 private:
67     QString m_text;
68     QString m_detail;
69     QIcon m_icon;
70     uint m_completionOperator;
71     mutable QChar m_typedCharacter;
72 };
73 
74 } // namespace Internal
75 } // namespace ClangCodeModel
76