forked from qt-creator/qt-creator
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:
25
src/plugins/qmljsinspector/qmljscontextcrumblepath.h
Normal file
25
src/plugins/qmljsinspector/qmljscontextcrumblepath.h
Normal 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
|
||||
Reference in New Issue
Block a user