現在、QScintilla を使用して独自のコード エディターを開発しています。QScintilla は、オートコンプリートとコールヒント機能を既に提供しています。私が望むのは、オートコンプリート ポップアップ ウィジェットを取り除き、取得したリストを取得し、独自のウィジェットで解析して表示することです。だからここに私が持っているものがあります:
//disable the autocompletion feature:
QsciScintilla::setAutoCompletionSource( QsciScintilla::AcsNone);
//use this function call to get the list from api class:
void updateAutoCompletionList (const QStringList &context, QStringList &list)
問題は、updateAutoCompletionList が QsciScintilla::AcsAPIs からの結果しか得られないことですQsciScintilla::AcsDocument
。
から結果を得る方法はありますQsciScintilla::AcsDocument
か?
事前に感謝します。