diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 93dccf931bc938120587eb19623744118e76b908..43041b4ce78345fef7677b40f31d0b5ab90b2625 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -1377,6 +1377,13 @@ def qdump__QRectF(d, item): d.putItem(Item(h, None, None, "h")) +def qdump__QRegion(d, item): + d.putValue(" ") + d.putNumChild(1) + if d.isExpanded(item): + with Children(d): + d.putCallItem("rects", item, "rects()") + def qdump__QSet(d, item): def hashDataFirstNode(value): diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index db880e4b2a32a52c5add9d848b25df3b24aa28f9..b71114418eca50f7a6967ac7b289771bc43efc27 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -60,6 +60,7 @@ #include <QtGui/QLabel> #include <QtGui/QPainter> #include <QtGui/QPainterPath> +#include <QtGui/QRegion> #include <QtGui/QStandardItemModel> #include <QtNetwork/QHostAddress> @@ -803,6 +804,15 @@ void testQPixmap() Q_UNUSED(i); } +void testQRegion() +{ + QRegion region; + region += QRect(100, 100, 200, 200); + region += QRect(300, 300, 400, 500); + region += QRect(500, 500, 600, 600); +} + + void testPlugin() { QString dir = QDir::currentPath(); @@ -1793,6 +1803,7 @@ int main(int argc, char *argv[]) //testWCout0(); //testWCout(); testColor(); + testQRegion(); testStuff(); testPeekAndPoke3(); testFunctionPointer();