diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-12-08 06:59:00 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-12-08 06:59:00 (GMT) |
commit | 6883b651998983d44e0eb0e6930e903a760f0107 (patch) | |
tree | 59e3ea85e707a3f677c70695d2a43fad4bef9cda /doc | |
parent | 8669c43cf65743efff36a005d433f5965ffe22f2 (diff) | |
download | Qt-6883b651998983d44e0eb0e6930e903a760f0107.zip Qt-6883b651998983d44e0eb0e6930e903a760f0107.tar.gz Qt-6883b651998983d44e0eb0e6930e903a760f0107.tar.bz2 |
Add info about qmldebugger and its creator plugin, with screenshot.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/declarative/pics/qmldebugger-creator.png | bin | 0 -> 170972 bytes | |||
-rw-r--r-- | doc/src/declarative/qmldebugging.qdoc | 53 |
2 files changed, 51 insertions, 2 deletions
diff --git a/doc/src/declarative/pics/qmldebugger-creator.png b/doc/src/declarative/pics/qmldebugger-creator.png Binary files differnew file mode 100644 index 0000000..da1e22d --- /dev/null +++ b/doc/src/declarative/pics/qmldebugger-creator.png diff --git a/doc/src/declarative/qmldebugging.qdoc b/doc/src/declarative/qmldebugging.qdoc index b5b58a6..13ad5f7 100644 --- a/doc/src/declarative/qmldebugging.qdoc +++ b/doc/src/declarative/qmldebugging.qdoc @@ -59,8 +59,57 @@ Rectangle { \section1 The QML Inspector -qmldebugger provides an experimental inspector to aid with debugging. It can -be run as a Qt Creator plugin or as a standalone application. +The \c qmldebugger tool provides an experimental inspector to aid with debugging. +It can be run as a Qt Creator plugin or as a standalone application. + +\section2 Qt Creator plugin + +The Qt Creator plugin currently builds against Qt Creator 1.3. + +To build the Qt Creator plugin: + +\list +\o Set an environment variable \c CREATOR_SRC_DIR that points to the Qt Creator + source directory +\o Set an environment variable \c CREATOR_BUILD_DIR that points to the Qt Creator + build directory +\o Run \c qmake on \c $QTDIR/tools/qmldebugger/qmldebugger.pro +\endlist + +This builds the plugin into your Qt Creator installation. + +The plugin adds a "QML Inspect" mode into Qt Creator that provides: + +\list +\o An object tree showing all objects and their children +\o The current property values for the object selected in the object tree + (this table is dynamically updated for all properties that have property changed + notifications) +\o An expression evaluator for querying and setting values dynamically +\o A table of watched properties (double-click on a property in the property + table to add it to the watch table) +\o A graph that shows the frame rate of your application +\endlist + + +To start the debugger, open a QML project and click the "QML Inspect" mode, then click the green +"play" button in the toolbar of the bottom-right debugger window. + +\image qmldebugger-creator.png + + +\section2 Standalone qmldebugger tool + +To run the standalone \c qmldebugger tool, set an environment variable \c QML_DEBUG_SERVER_PORT +to an available port number and run the \c qmlviewer. For example: + +\code + QML_DEBUG_SERVER_PORT=3768 qmlviewer myqmlfile.qml +\endcode + +Then in another process, start the \c qmldebugger tool, enter the port number into the corresponding spinbox +in the top right hand corner, and press the "Connect" button. + \section1 Debugging Transitions |