2018-12-20 14:37:29 +00:00
|
|
|
#ifndef QMLDEBUGGER_H
|
|
|
|
#define QMLDEBUGGER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQuickItem>
|
|
|
|
|
|
|
|
class QMLDebugger : public QObject
|
|
|
|
{
|
2018-12-22 19:32:30 +00:00
|
|
|
Q_OBJECT
|
2018-12-20 14:37:29 +00:00
|
|
|
public:
|
2018-12-22 19:32:30 +00:00
|
|
|
Q_INVOKABLE static QString properties(QQuickItem* item,
|
|
|
|
bool linebreak = true);
|
2018-12-20 14:37:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QMLDEBUGGER_H
|