summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/standalone/objectpropertiesview.h
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-10-27 05:43:23 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-10-27 05:43:23 (GMT)
commitcc4bca61687f6441984ccc58ad177d24b6d3e92f (patch)
treec861eadc58164b58a92b6c4a2c67ef16ac7a412c /tools/qmldebugger/standalone/objectpropertiesview.h
parentb5b6861dd1a82ea9be9b2d2f89ba5cc9dea150ac (diff)
downloadQt-cc4bca61687f6441984ccc58ad177d24b6d3e92f.zip
Qt-cc4bca61687f6441984ccc58ad177d24b6d3e92f.tar.gz
Qt-cc4bca61687f6441984ccc58ad177d24b6d3e92f.tar.bz2
Move qmldebugger/ into qmldebugger/standalone dir.
Diffstat (limited to 'tools/qmldebugger/standalone/objectpropertiesview.h')
-rw-r--r--tools/qmldebugger/standalone/objectpropertiesview.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/tools/qmldebugger/standalone/objectpropertiesview.h b/tools/qmldebugger/standalone/objectpropertiesview.h
new file mode 100644
index 0000000..6a1fc03
--- /dev/null
+++ b/tools/qmldebugger/standalone/objectpropertiesview.h
@@ -0,0 +1,51 @@
+#ifndef PROPERTIESTABLEMODEL_H
+#define PROPERTIESTABLEMODEL_H
+
+#include <QtDeclarative/qmldebug.h>
+
+#include <QtGui/qwidget.h>
+
+QT_BEGIN_NAMESPACE
+
+class QTreeWidget;
+class QTreeWidgetItem;
+class QmlDebugConnection;
+
+class ObjectPropertiesView : public QWidget
+{
+ Q_OBJECT
+public:
+ ObjectPropertiesView(QmlEngineDebug *client = 0, QWidget *parent = 0);
+
+ void setEngineDebug(QmlEngineDebug *client);
+ void clear();
+
+signals:
+ void activated(const QmlDebugObjectReference &, const QmlDebugPropertyReference &);
+
+public slots:
+ void reload(const QmlDebugObjectReference &);
+ void watchCreated(QmlDebugWatch *);
+
+private slots:
+ void queryFinished();
+ void watchStateChanged();
+ void valueChanged(const QByteArray &name, const QVariant &value);
+ void itemActivated(QTreeWidgetItem *i);
+
+private:
+ void setObject(const QmlDebugObjectReference &object);
+ void setWatched(const QString &property, bool watched);
+
+ QmlEngineDebug *m_client;
+ QmlDebugObjectQuery *m_query;
+ QmlDebugWatch *m_watch;
+
+ QTreeWidget *m_tree;
+ QmlDebugObjectReference m_object;
+};
+
+
+QT_END_NAMESPACE
+
+#endif