mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-02 11:55:46 +00:00
Fetch & display tooltips for each entry along with autocomplete options
This commit is contained in:
@@ -186,10 +186,15 @@ private:
|
||||
|
||||
QTimer *m_SyntaxCheckTimer;
|
||||
|
||||
QCompleter *m_InteractiveCompleter;
|
||||
QCompleter *m_InteractiveCompleter = NULL;
|
||||
QStringListModel *m_InteractiveCompletionModel;
|
||||
int m_InteractiveCompletionPrefix = 0;
|
||||
|
||||
RDToolTip *m_CompletionTip;
|
||||
QList<QPair<QString, QString>> m_CompletionTipList;
|
||||
sptr_t m_CurrentCompletionTip = -1;
|
||||
QTimer *m_CompletionTipTimer;
|
||||
|
||||
static const int CURRENT_MARKER = 0;
|
||||
static const int STYLE_ERROR = 100;
|
||||
|
||||
@@ -245,6 +250,7 @@ private:
|
||||
void doFunccomplete(ScintillaEdit *editor);
|
||||
|
||||
void hideFunccompleteTooltip();
|
||||
void updateCompletionTip();
|
||||
|
||||
void selectedHelp(QString word);
|
||||
void refreshCurrentHelp();
|
||||
|
||||
Reference in New Issue
Block a user