-
Notifications
You must be signed in to change notification settings - Fork 483
Expand file tree
/
Copy pathcontext_cpp.h
More file actions
160 lines (143 loc) · 5.99 KB
/
context_cpp.h
File metadata and controls
160 lines (143 loc) · 5.99 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : context_cpp.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CONTEXT_CPP_H
#define CONTEXT_CPP_H
#include "LSP/LSPEvent.h"
#include "cl_command_event.h"
#include "context_base.h"
#include "ctags_manager.h"
#include "database/entry.h"
#include "macros.h"
#include <map>
class RefactorSource;
class ContextCpp : public ContextBase
{
std::map<wxString, int> m_propertyInt;
wxMenu* m_rclickMenu;
protected:
void OnShowCodeNavMenu(clCodeCompletionEvent& e);
void OnCodeCompleteFiles(clCodeCompletionEvent& event);
void OnSymbolDeclarationFound(LSPEvent& event);
private:
bool TryOpenFile(const wxFileName& fileName, bool lookInEntireWorkspace = true);
bool IsJavaScript() const;
bool DoGetFunctionBody(long curPos, long& blockStartPos, long& blockEndPos, wxString& content);
void Initialize();
bool DoCodeComplete(long pos);
void DoCreateFile(const wxFileName& fn);
void DoUpdateCalltipHighlight();
size_t DoGetEntriesForHeaderAndImpl(std::vector<TagEntryPtr>& prototypes,
std::vector<TagEntryPtr>& functions,
wxString& otherfile);
public:
/**
* @brief
* @return
*/
bool IsAtBlockComment() const override;
/**
* @brief
* @return
*/
bool IsAtLineComment() const override;
explicit ContextCpp(clEditor* container);
bool IsDefaultContext() const override;
~ContextCpp() override;
ContextCpp();
std::shared_ptr<ContextBase> NewInstance(clEditor* container) override;
bool CompleteWord() override;
bool CodeComplete(long pos = wxNOT_FOUND) override;
bool GotoDefinition() override;
wxString GetCurrentScopeName() override;
void AutoIndent(const wxChar&) override;
bool IsCommentOrString(long pos) override;
void AddMenuDynamicContent(wxMenu* menu) override;
void RemoveMenuDynamicContent(wxMenu* menu) override;
void ApplySettings() override;
wxString CallTipContent() override;
void SetActive() override;
void SemicolonShift() override;
void ProcessIdleActions() override;
bool IsComment(long pos) const;
// override swapfiles features
virtual void SwapFiles(const wxFileName& fileName);
// Event handlers
void OnDwellEnd(wxStyledTextEvent& event) override;
void OnDbgDwellEnd(wxStyledTextEvent& event) override;
void OnDbgDwellStart(wxStyledTextEvent& event) override;
void OnSciUpdateUI(wxStyledTextEvent& event) override;
void OnFileSaved() override;
void AutoAddComment() override;
// Capture menu events
// return this context specific right click menu
wxMenu* GetMenu() override;
virtual void OnSwapFiles(wxCommandEvent& event);
virtual void OnInsertDoxyComment(wxCommandEvent& event);
virtual void OnCommentSelection(wxCommandEvent& event);
virtual void OnCommentLine(wxCommandEvent& event);
virtual void OnGenerateSettersGetters(wxCommandEvent& event);
virtual void OnFindImpl(wxCommandEvent& event);
virtual void OnFindDecl(wxCommandEvent& event);
void OnKeyDown(wxKeyEvent& event) override;
virtual void OnUpdateUI(wxUpdateUIEvent& event);
virtual void OnContextOpenDocument(wxCommandEvent& event);
virtual void OnAddIncludeFile(wxCommandEvent& e);
virtual void OnAddForwardDecl(wxCommandEvent& e);
virtual void OnMoveImpl(wxCommandEvent& e);
virtual void OnAddImpl(wxCommandEvent& e);
virtual void OnAddMultiImpl(wxCommandEvent& e);
virtual void OnUserTypedXChars(const wxString& word);
void OnCallTipClick(wxStyledTextEvent& e) override;
void OnCalltipCancel() override;
DECLARE_EVENT_TABLE()
private:
wxString GetExpression(long pos, bool onlyWord, clEditor* editor = NULL, bool forCC = true);
bool DoGotoSymbol(TagEntryPtr tag);
bool IsIncludeStatement(const wxString& line, wxString* fileName = NULL, wxString* fileNameUpToCaret = NULL);
int FindLineToAddInclude();
/**
* @brief add missing implementations. If line_number is provided
* then only add the function found on this line number
*/
void DoAddFunctionImplementation(int line_number = wxNOT_FOUND);
public:
void DoMakeDoxyCommentString(DoxygenComment& dc, const wxString& blockPrefix, wxChar keywordPrefix);
private:
/**
* \brief try to find a swapped file for this rhs. The logic is based on the C++ coding conventions
* a swapped file for a.cpp will be a.h or a.hpp
* \param rhs input
* \param lhs output
* \return true if such sibling file exist, false otherwise
*/
bool FindSwappedFile(const wxFileName& rhs, wxStringSet_t& others);
bool FindSwappedFile(const wxFileName& rhs, wxString& lhs);
/**
* @brief format editor
* @param editor
*/
void DoFormatEditor(clEditor* editor);
};
#endif // CONTEXT_CPP_H