Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How to add code-completion to QJSEngine scripts?
-
When using QJSEngine with QJSValue meta objects, is it possible to add code-completion capability to a simple QT based code editor? I mean something like presenting a list of member functions when a user writes a dot after a QJSValue meta object returned from the C++ side.
If so, do you know of any libraries or APIs that can be integrated to do that?
Thanks.
-
Hi
Im not 100% sure about in what context you want completion but if we say in
a user editor where user picks some value and can "complete" property names, then
i would look into QJSValueIterator + a stringlist model and QCompleter.
https://doc.qt.io/qt-5/qtwidgets-tools-customcompleter-example.html