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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
#include "LSPOutlineViewDlg.h"
#include "ColoursAndFontsManager.h"
#include "clAnsiEscapeCodeColourBuilder.hpp"
#include "drawingutils.h"
#include "globals.h"
#include "imanager.h"
#include "macros.h"
#include <stack>
#include <wx/dataview.h>
namespace
{
const wxString FUNCTION_SYMBOL = wxT("\u2A10");
const wxString CLASS_SYMBOL = wxT("\u2394");
const wxString VARIABLE_SYMBOL = wxT("\u2027");
const wxString MODULE_SYMBOL = wxT("{}");
const wxString ENUMERATOR_SYMBOL = wxT("#");
} // namespace
LSPOutlineViewDlg::LSPOutlineViewDlg(wxWindow* parent)
: LSPOutlineViewDlgBase(parent)
{
clSetDialogBestSizeAndPosition(this);
CenterOnParent();
DoInitialise();
}
LSPOutlineViewDlg::~LSPOutlineViewDlg() {}
void LSPOutlineViewDlg::DoInitialise()
{
auto lexer = ColoursAndFontsManager::Get().GetLexer("python");
m_dvTreeCtrll->DeleteAllItems();
m_dvTreeCtrll->SetSortFunction(nullptr);
m_textCtrlFilter->ClearAll();
if(m_symbols.empty()) {
clAnsiEscapeCodeColourBuilder builder;
builder.SetTheme(lexer->IsDark() ? eAsciiTheme::DARK : eAsciiTheme::LIGHT);
builder.Add(_("Language Server is still not ready... "), eAsciiColours::NORMAL_TEXT, false);
builder.Add(_("(hit ESCAPE key to dismiss)"), eAsciiColours::GRAY, false);
m_dvTreeCtrll->AddLine(builder.GetString(), false, (wxUIntPtr)0);
m_textCtrlFilter->CallAfter(&wxTextCtrl::SetFocus);
return;
}
m_dvTreeCtrll->Begin();
m_dvTreeCtrll->SetScrollToBottom(false);
clColours colours;
colours.FromLexer(lexer);
m_dvTreeCtrll->SetColours(colours);
// build the tree
wxColour class_colour = lexer->GetProperty(wxSTC_P_WORD2).GetFgColour();
wxColour variable_colour = lexer->GetProperty(wxSTC_P_IDENTIFIER).GetFgColour();
wxColour module_colour = lexer->GetProperty(wxSTC_P_STRING).GetFgColour();
wxColour function_colour = lexer->GetProperty(wxSTC_P_DEFNAME).GetFgColour();
wxColour operator_colour = lexer->GetProperty(wxSTC_P_OPERATOR).GetFgColour();
std::vector<std::pair<wxString, int>> containers;
clAnsiEscapeCodeColourBuilder builder;
for(const SymbolInformation& si : m_symbols) {
const wxString& symbol_container = si.GetContainerName();
if(symbol_container.empty()) {
containers.push_back({ si.GetName(), 1 });
} else {
int parent_depth = 0;
while(!containers.empty()) {
if(containers.back().first == symbol_container) {
parent_depth = containers.back().second;
break;
}
containers.pop_back();
}
containers.push_back({ si.GetName(), parent_depth + 1 });
}
builder.Clear();
int curdepth = containers.empty() ? 1 : containers.back().second;
// add indentation
builder.Add(wxString(' ', curdepth * 4), eAsciiColours::NORMAL_TEXT);
// determine the symbol
switch(si.GetKind()) {
case kSK_File:
case kSK_Module:
case kSK_Package:
builder.Add(MODULE_SYMBOL + " ", eAsciiColours::NORMAL_TEXT);
builder.Add(si.GetName(), module_colour);
break;
case kSK_Class:
case kSK_Struct:
case kSK_Interface:
case kSK_Object:
case kSK_Enum:
builder.Add(CLASS_SYMBOL + " ", eAsciiColours::NORMAL_TEXT);
builder.Add(si.GetName(), class_colour, true);
break;
case kSK_Method:
case kSK_Function:
case kSK_Constructor:
builder.Add(FUNCTION_SYMBOL + " ", eAsciiColours::NORMAL_TEXT);
if(si.GetName().Contains("(") && si.GetName().Contains(")")) {
// the name also has the signature
wxString signature = si.GetName().AfterFirst('(');
signature = signature.BeforeLast(')');
wxString name_only = si.GetName().BeforeFirst('(');
builder.Add(name_only, function_colour);
builder.Add("(", operator_colour);
builder.Add(signature, eAsciiColours::NORMAL_TEXT);
builder.Add(")", operator_colour);
} else {
builder.Add(si.GetName(), function_colour);
builder.Add("()", operator_colour);
}
break;
case kSK_TypeParameter: // define
case kSK_EnumMember:
builder.Add(ENUMERATOR_SYMBOL + " ", eAsciiColours::NORMAL_TEXT);
builder.Add(si.GetName(), eAsciiColours::NORMAL_TEXT);
break;
default:
builder.Add(VARIABLE_SYMBOL + " ", eAsciiColours::NORMAL_TEXT);
builder.Add(si.GetName(), variable_colour);
break;
}
m_dvTreeCtrll->AddLine(builder.GetString(), false, (wxUIntPtr)&si);
}
if(!m_dvTreeCtrll->IsEmpty()) {
m_dvTreeCtrll->SelectRow(0);
}
m_dvTreeCtrll->Commit();
m_textCtrlFilter->CallAfter(&wxTextCtrl::SetFocus);
}
void LSPOutlineViewDlg::OnEnter(wxCommandEvent& event)
{
wxUnusedVar(event);
DoSelectionActivate();
}
void LSPOutlineViewDlg::OnTextUpdated(wxCommandEvent& event)
{
wxUnusedVar(event);
m_dvTreeCtrll->ClearAllHighlights();
wxString filter_text = m_textCtrlFilter->GetValue();
wxDataViewItem starting_item =
m_dvTreeCtrll->GetSelection().IsOk() ? m_dvTreeCtrll->GetSelection() : wxDataViewItem{ nullptr };
auto match = m_dvTreeCtrll->FindNext(starting_item, filter_text, 0, wxTR_SEARCH_DEFAULT);
if(match.IsOk()) {
m_dvTreeCtrll->Select(match);
m_dvTreeCtrll->HighlightText(match, true);
m_dvTreeCtrll->EnsureVisible(match);
}
}
void LSPOutlineViewDlg::OnItemActivated(wxDataViewEvent& event)
{
wxUnusedVar(event);
DoSelectionActivate();
}
void LSPOutlineViewDlg::OnKeyDown(wxKeyEvent& event)
{
switch(event.GetKeyCode()) {
case WXK_ESCAPE:
Hide();
break;
case WXK_DOWN:
DoFindNext();
break;
case WXK_UP:
DoFindPrev();
break;
default: {
int modifier_key = event.GetModifiers();
wxChar ch = event.GetUnicodeKey();
if(modifier_key == wxMOD_CONTROL && ch == 'U') {
m_dvTreeCtrll->PageUp();
DoFindNext();
} else if(modifier_key == wxMOD_CONTROL && ch == 'D') {
m_dvTreeCtrll->PageDown();
DoFindPrev();
} else if(modifier_key == wxMOD_CONTROL && (ch == 'J' || ch == 'N')) {
DoFindNext();
} else if(modifier_key == wxMOD_CONTROL && (ch == 'K' || ch == 'P')) {
DoFindPrev();
} else {
event.Skip();
}
break;
}
}
}
void LSPOutlineViewDlg::DoFindNext()
{
m_dvTreeCtrll->ClearAllHighlights();
int sel_row = m_dvTreeCtrll->GetSelectedRow();
if((sel_row + 1) >= m_dvTreeCtrll->GetItemCount()) {
return;
}
wxDataViewItem next_item = m_dvTreeCtrll->RowToItem(sel_row + 1);
wxString find_what = m_textCtrlFilter->GetValue();
if(find_what.empty()) {
m_dvTreeCtrll->Select(next_item);
m_dvTreeCtrll->EnsureVisible(next_item);
} else {
wxDataViewItem item = m_dvTreeCtrll->FindNext(next_item, find_what, 0, wxTR_SEARCH_DEFAULT);
CHECK_ITEM_RET(item);
m_dvTreeCtrll->Select(item);
m_dvTreeCtrll->EnsureVisible(item);
}
}
void LSPOutlineViewDlg::DoFindPrev()
{
m_dvTreeCtrll->ClearAllHighlights();
int sel_row = m_dvTreeCtrll->GetSelectedRow();
if(sel_row < 1) {
return;
}
wxDataViewItem prev_item = m_dvTreeCtrll->RowToItem(sel_row - 1);
wxString find_what = m_textCtrlFilter->GetValue();
if(find_what.empty()) {
m_dvTreeCtrll->Select(prev_item);
m_dvTreeCtrll->EnsureVisible(prev_item);
} else {
wxDataViewItem item = m_dvTreeCtrll->FindPrev(prev_item, find_what, 0, wxTR_SEARCH_DEFAULT);
CHECK_ITEM_RET(item);
m_dvTreeCtrll->Select(item);
m_dvTreeCtrll->EnsureVisible(item);
}
}
void LSPOutlineViewDlg::OnListKeyDown(wxKeyEvent& event)
{
if(event.GetKeyCode() == WXK_ESCAPE) {
Hide();
} else {
event.Skip();
}
}
void LSPOutlineViewDlg::SetSymbols(const std::vector<SymbolInformation>& symbols)
{
m_symbols = symbols;
DoInitialise();
}
void LSPOutlineViewDlg::DoSelectionActivate()
{
auto selection = m_dvTreeCtrll->GetSelection();
if(!selection.IsOk()) {
return;
}
LSP::SymbolInformation* si = reinterpret_cast<LSP::SymbolInformation*>(m_dvTreeCtrll->GetItemData(selection));
CHECK_PTR_RET(si);
// open the editor and go to
LSP::Location loc = si->GetLocation();
IEditor* active_editor = clGetManager()->GetActiveEditor();
CHECK_PTR_RET(active_editor);
int sci_line = loc.GetRange().GetStart().GetLine();
if(loc.GetRange().GetStart().GetLine() != loc.GetRange().GetEnd().GetLine()) {
// different lines, don't select the entire function
// just place the caret at the beginning of the function
int position = active_editor->PosFromLine(sci_line); // start of line
position += loc.GetRange().GetStart().GetCharacter(); // add the column
active_editor->SetCaretAt(position);
active_editor->CenterLine(sci_line);
} else {
active_editor->SelectRange(loc.GetRange());
active_editor->CenterLinePreserveSelection(sci_line);
}
Hide();
}
|