Qml JS Inspector: Added context crumble path as a dock widget

The crumble path shows the current context of the debugger/inspector.
This commit is contained in:
Lasse Holmstedt
2010-08-02 17:25:29 +02:00
parent ef57d20a67
commit 524d4453e5
16 changed files with 124 additions and 48 deletions

View File

@@ -104,6 +104,10 @@ void QmlJSDesignDebugClient::messageReceived(const QByteArray &message)
QColor col;
ds >> col;
emit selectedColorChanged(col);
} else if (type == "CONTEXT_PATH_UPDATED") {
QStringList contextPath;
ds >> contextPath;
emit contextPathUpdated(contextPath);
}
}