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

@@ -0,0 +1,25 @@
#ifndef QMLJSCONTEXTCRUMBLEPATH_H
#define QMLJSCONTEXTCRUMBLEPATH_H
#include <utils/crumblepath.h>
#include <QStringList>
namespace QmlJSInspector {
namespace Internal {
class ContextCrumblePath : public Utils::CrumblePath
{
Q_OBJECT
public:
ContextCrumblePath(QWidget *parent = 0);
virtual ~ContextCrumblePath();
public slots:
void updateContextPath(const QStringList &path);
};
} // namespace Internal
} // namespace QmlJSInspector
#endif // QMLJSCONTEXTCRUMBLEPATH_H