Is it possible to debug QML code that is designated as a "source" for a particular QQuickWidget (in Qt Widgets Application)?
-
Hi,
I am experimenting with Qt Creator and QML.
When I create "Qt Quick Application", I am able to debug QML code (if I want to).
I am able to set breakpoints not only to QML code, but also to C++ code and all these breakpoints work as expected.I would like to ask, whether it is possible to debug QML code, that defines the behavior of a QQuickWidget which is part of some "Qt QWidgets Application"?.
What do I need to do if I want to do that?
That is:- I want to define a breakpoint in some event handler in my QML code
- if I run my "Qt QWidget Application, and a given event occurs, I would like to see that the execution stops at the breakpoint I defined.
Is something like that possible?
What do I have to do?(Thank you in advance for any helpful hints.)