diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-04-08 16:18:47 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-04-08 16:22:56 +0200 |
commit | f3cc061dbe36df106f9d6e2db881de69cb16a5c2 (patch) | |
tree | 05cf6b0992765aee050ea669ff9fed1126946bf8 /src/plugins/debugger/debugger.pro | |
parent | 275e1434dacfc3f93331f20f13c0b41d95b751c3 (diff) | |
download | qt-creator-f3cc061dbe36df106f9d6e2db881de69cb16a5c2.tar.gz |
Debugger: Add memory views.
Add a separate memory view tool window available
from the context menus of:
Locals view:
If the debugger provides size information, colors the
areas of member variables for inspecting class layouts.
Registers view:
Tracks the area pointed to by a register.
The view has a context menu allowing to open subviews
referenced by the pointer at the location using
the toolchain abi's word with/endianness.
Rubber-stamped-by: hjk
Diffstat (limited to 'src/plugins/debugger/debugger.pro')
-rw-r--r-- | src/plugins/debugger/debugger.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/debugger/debugger.pro b/src/plugins/debugger/debugger.pro index 7667804352..e77b89d19a 100644 --- a/src/plugins/debugger/debugger.pro +++ b/src/plugins/debugger/debugger.pro @@ -63,7 +63,8 @@ HEADERS += breakhandler.h \ debuggerruncontrolfactory.h \ debuggertooltipmanager.h \ debuggertoolchaincombobox.h \ - debuggersourcepathmappingwidget.h + debuggersourcepathmappingwidget.h \ + memoryviewwidget.h SOURCES += breakhandler.cpp \ breakpoint.cpp \ @@ -106,7 +107,8 @@ SOURCES += breakhandler.cpp \ watchdelegatewidgets.cpp \ debuggertooltipmanager.cpp \ debuggertoolchaincombobox.cpp \ - debuggersourcepathmappingwidget.cpp + debuggersourcepathmappingwidget.cpp \ + memoryviewwidget.cpp FORMS += attachexternaldialog.ui \ attachcoredialog.ui \ |