logic: lazy load code annotations

* code annotations are loaded after showing the code file
* added traces
* refactored highlighter
* fixed error tooltip style in codeview

fortune cookie message = It's not the time that counts, but what you do with it.
This commit is contained in:
Eberhard Graether
2018-03-24 13:19:49 +01:00
parent 0d79639c96
commit aed783f5ca
24 changed files with 405 additions and 361 deletions
+13
View File
@@ -154,6 +154,19 @@ void QtCodeView::showCodeSnippets(const std::vector<CodeSnippetParams>& snippets
});
}
void QtCodeView::updateCodeSnippets(const std::vector<CodeSnippetParams>& snippets)
{
m_onQtThread([=]()
{
TRACE("update code snippets");
for (const CodeSnippetParams& snippet : snippets)
{
m_widget->updateCodeSnippet(snippet);
}
});
}
void QtCodeView::scrollTo(const ScrollParams params)
{
m_scrollParams = params;