summaryrefslogtreecommitdiffstats
path: root/src/declarative/debugger
Commit message (Collapse)AuthorAgeFilesLines
* Fix debugger crash on exitBea Lam2009-11-111-4/+5
|
* Change stateChanged(State) signatures to have (QmlDebugWatch::State)Bea Lam2009-11-111-2/+2
| | | | and (QmlDebugQuery::State) parameters.
* Change watch state to Dead instead of Active on removal.Bea Lam2009-11-111-5/+4
|
* Minor improvements, additional pointer checks.Bea Lam2009-11-101-9/+17
|
* Fix crash bug where socket is 0.Bea Lam2009-11-101-0/+2
|
* Fix crash when watch is deleted before calling removeWatch().Bea Lam2009-11-082-1/+13
|
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Bea Lam2009-11-0211-144/+236
|\ | | | | | | into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-3010-131/+223
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/debugger/qmldebug.cpp src/declarative/fx/qmlgraphicsimagebase_p.h src/declarative/util/qmlanimation.h src/declarative/util/qmlstate.h src/declarative/util/qmltimer.cpp
| | * fix headersWarwick Allison2009-10-305-80/+80
| | |
| | * fix macrosWarwick Allison2009-10-293-3/+15
| | |
| | * fix headersWarwick Allison2009-10-295-80/+80
| | |
| | * fix headersWarwick Allison2009-10-292-0/+80
| | |
| * | Make private headers _pAaron Kennedy2009-10-3011-13/+13
| |/
* | Make QmlBoundSignal children look like properties (instead of children)Bea Lam2009-11-021-16/+26
|/ | | | | | in the debugger to reflect how signal properties are written in QML. This also changes the FETCH_OBJECT reply stream to send children data before property data.
* Show contents of list properties within the debugger (like the CreatorBea Lam2009-10-281-2/+3
| | | | debugger). Also add Mode arg to ExpressionQueryWidget constructor.
* Check values when remove() is calledBea Lam2009-10-281-4/+8
|
* Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-10-211-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Fix more compiler warnings.Martin Jones2009-10-151-1/+1
| |
* | Give more info about whether a value is null and its value type.Bea Lam2009-10-212-3/+14
| |
* | Add EVAL_EXPRESSION so clients can evaluate an expression within theBea Lam2009-10-192-1/+87
|/ | | | current object's context.
* Use utf8 instead of latin1 where appropriateAaron Kennedy2009-10-122-2/+2
|
* Remove a bunch of unneeded semicolons.Martin Jones2009-10-081-1/+1
|
* Indicate which properties are watchable and use bold text instead ofBea Lam2009-09-242-4/+12
| | | | coloured text for watched properties.
* Change property view from table to tree like old debugger and move ↵Bea Lam2009-09-241-0/+1
| | | | WatchTableModel into a separate file.
* Allow watching of properties to be stopped from watch table. Also fixBea Lam2009-09-231-0/+2
| | | | bug where watch removal requests were not sent to the server side.
* Add some of the functionality from the old debugger (e.g. dynamic updating ↵Bea Lam2009-09-233-22/+244
| | | | of property values, watch table, colouring of tree widget items).
* Rename Behavior cpp class to match the QML name.Yann Bodson2009-08-271-1/+1
|
* Use Q_SLOTS and Q_SIGNALS.Yann Bodson2009-08-263-4/+4
|
* Fix crash on exit when using the qml debugging interfaceKai Koehne2009-08-131-10/+10
| | | | | QmlEngineDebugClient is defined as a member variable AND the object parent is set -> double deletion.
* Wait for connections to remote debugging interfaceKai Koehne2009-08-132-7/+19
| | | | | | | | | The tcp server was waiting for connections right when instantiated ... even before the different debugging services could register themselves. This is fixed by first letting the different services register, and only block for incoming connections when explicitly registered (QmlDebugService::waitForConnectons).
* Get qmldebugger running, and add basic object/property view.Michael Brasser2009-08-041-0/+1
|
* Rename QmlDebugServerPlugin -> QmlDebugServiceAaron Kennedy2009-07-133-38/+38
|
* Rename classesAaron Kennedy2009-07-134-56/+56
|
* Start moving debugger out of processAaron Kennedy2009-07-1315-1390/+947
|
* DocAaron Kennedy2009-07-071-2/+3
|
* Move QmlExpression into its own fileAaron Kennedy2009-07-031-0/+1
|
* Fix warningMichael Brasser2009-07-021-1/+1
|
* CleanupMichael Brasser2009-06-3013-12/+137
| | | | | Fix up license headers and private warnings, as well as other general cleanups.
* fix MSVC warningsThierry Bastian2009-06-022-2/+3
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-06-021-0/+1
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/util/qfxperf.cpp
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-06-011-1/+1
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Flush messages after sendingAaron Kennedy2009-06-011-0/+1
| | |
* | | Remove more unneeded semicolons.Martin Jones2009-06-021-2/+2
| |/ |/|
* | Remove extra semicolons.Martin Jones2009-05-281-1/+1
|/
* Remove more unneeded semicolons.Martin Jones2009-05-271-1/+1
|
* Move canvas scene snapshot out of in-process debuggerAaron Kennedy2009-05-269-344/+19
|
* Add basic client/server debugging supportAaron Kennedy2009-05-257-2/+1202
| | | | The canvas framerate monitor now uses this support.
* fix warningsWarwick Allison2009-05-214-15/+15
|
* Add canvas image captureAaron Kennedy2009-05-082-9/+90
|
* Add canvas debugger moduleAaron Kennedy2009-05-085-3/+268
|