summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/gdb/pythongdbengine.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Debugger: Move DebuggerEngine/QmlEngine/QmlCppEngine into Debugger{}Friedemann Kleint2010-09-131-1/+2
| | | | | | namespace (from Debugger::Internal) as they are exported classes. Introduce private classes to avoid exposing private JS debugger headers.
* debugger: only update variables that are operated onhjk2010-09-131-5/+8
|
* debugger: simplify code for inserting new watchitemshjk2010-07-231-4/+1
|
* debugger: overhaul "state machine"hjk2010-07-141-1/+1
| | | | | This mainly allows for more precise shutdown and tightens the set of allowed transitions.
* debugger: try to improve tooltip handlinghjk2010-07-071-2/+5
| | | | Still far from usable.
* debugger: don't try to compute tooltip if it's not shownhjk2010-06-291-2/+1
|
* debugger: The DebuggerEngine refactoring.hjk2010-06-221-8/+7
| | | | | | | | | | | | | | | | | This replaces the (de facto) singleton engines and data handlers by classes that are instantiated per run. The DebuggerRunControl will now create an object of (a class derived from) DebuggerEngine that contains all the relevant "dynamic" data. DebuggerManager is no more. The "singleton" bits are merged into DebuggerPlugin, whereas the data bits went to DebuggerEngine. There is no formal notion of a "current" DebuggerEngine. However, as there's only one DebuggerEngine at a time that has its data models connected to the view, there's still some "de facto" notion of a "current" engine. Calling SomeModel::setData(int role, QVariant data) with custom role is used as the primary dispatch mechanism from the views to the "current" data models (and the engine, as all data models know their engine).
* debugger: refactoring of output channelinghjk2010-06-141-2/+2
|
* Merge remote branch 'origin/2.0'hjk2010-05-271-0/+2
|\ | | | | | | | | | | | | | | | | | | Conflicts: src/plugins/projectexplorer/miniprojecttargetselector.cpp src/plugins/qmldesigner/designercore/model/modeltotextmerger.cpp src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp src/plugins/qt4projectmanager/qt-maemo/maemosshthread.cpp src/plugins/qt4projectmanager/qt-maemo/maemosshthread.h tests/manual/gdbdebugger/simple/app.cpp
| * Debugger: Introduce env QTC_DEBUGGER_PYTHON_VERBOSEFriedemann Kleint2010-05-261-0/+2
| | | | | | | | | | for verbose python error hunting. Rubber-stamped-by: hjk
* | debugger: show return value of last function call in Locals and Watchers viewhjk2010-05-191-1/+5
| | | | | | | | Works only with gdb/Python so far.
* | debugger: gather more information on threads when easily availablehjk2010-05-181-1/+1
| |
* | debugger: support for per-thread breakpointshjk2010-04-301-2/+2
|/
* debugger: add a cut-down version of the dumpers for pythonhjk2010-04-271-4/+3
|
* debugger: new files for WatchData; move potentially shared code to ↵hjk2010-04-271-2/+3
| | | | watchutils.cpp
* debugger: implement selected of string encoding per pointer type/individual ↵hjk2010-03-111-9/+3
| | | | pointer
* debugger: avoid a few watchmodel rebuilds, also reset location markers properlyhjk2010-03-101-3/+2
|
* debugger: empty list of fetched variables at the end of the full cyclehjk2010-03-091-1/+1
| | | | | The original logic was faulty but worked better in the presence of the original "extra layoutChanged()" hack which is replaced now.
* debugger: next attempt at fixing the "can't open items in locals view" issue.hjk2010-03-081-1/+1
|
* Long live the king!hjk2010-03-051-1/+1
|
* debugger: sanitize breakpoint setting sequenceshjk2010-03-031-0/+2
|
* debugger: rename some watch-update related variables to prepare a similarhjk2010-03-031-2/+2
| | | | mechanism for breakpoints.
* debugger: some basic support for 'catch catch' and 'catch throw'hjk2010-02-111-1/+1
| | | | Hidden in the Breakpoints context menu.
* debugger: use the direct access withing trkadapter to list threadshjk2010-02-081-1/+4
|
* debugger: handle symlinked source files a bit betterhjk2010-02-051-0/+5
|
* debugger: let python handle the listing of breakpointshjk2010-02-051-0/+30
| | | | TODO: only transfer deltas
* debugger: fix e539f5bdahjk2010-02-051-0/+1
|
* debugger: fix unneeded fetchMore() calls by removing a mis-placed beginCycle()hjk2010-02-041-1/+0
|
* Debugger: Fix some code scanning issues.Friedemann Kleint2010-02-031-1/+1
|
* Merge remote branch 'origin/1.3'Oswald Buddenhagen2010-01-291-2/+2
| | | | Trailing whitespace removal re-applied manually.
* debugger: fix recent regression (infinite loop on stack-list-locals)hjk2010-01-291-5/+1
|
* debugger: start splitting off python and non-python specific bitshjk2010-01-211-0/+177