libclang ide #94

- Assist/Autocomplete refactored to use libclang

Other minor changes:

- Removed CoWork Pipe
- .dli runtime loading of dynamic libraries now supports path to library in access function
- EditField::SetBackground
- RichTextView::GotoLabel variant with Gate for matching
- RichEdit::GotoLabel variant with Gate for matching
This commit is contained in:
mirek-fidler 2022-09-16 10:31:14 +02:00 committed by GitHub
parent b1617ed3d3
commit e8035690b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
147 changed files with 8943 additions and 11172 deletions

View file

@ -75,6 +75,7 @@ public:
Zoom GetZoom() const;
Rect GetPage() const;
bool GotoLabel(Gate<const WString&> match, bool dohighlight = false);
bool GotoLabel(const String& lbl, bool highlight = false);
void ClearHighlight() { highlight = Null; Refresh(); }
@ -318,6 +319,8 @@ public:
virtual Topic AcquireTopic(const String& topic);
virtual void FinishText(RichText& text);
virtual void BarEx(Bar& bar);
Gate<const WString&, const WString&> WhenMatchLabel;
bool GoTo(const String& link);