forked from robertknight/Qt-Inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ObjectInspector.cpp
90 lines (71 loc) · 2.21 KB
/
ObjectInspector.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include "ObjectInspector.h"
#include "ObjectPropertyModel.h"
#include "lib/ObjectProxy.h"
#include <QHeaderView>
#include <QLabel>
#include <QLineEdit>
#include <QSortFilterProxyModel>
#include <QTableView>
#include <QVBoxLayout>
ObjectInspector::ObjectInspector(QWidget* parent)
: QWidget(parent)
{
QVBoxLayout* layout = new QVBoxLayout(this);
layout->setMargin(0);
m_nameLabel = new QLabel(this);
layout->addWidget(m_nameLabel);
m_propertyView = new QTableView(this);
m_propertyView->verticalHeader()->setVisible(false);
m_propertyView->horizontalHeader()->setStretchLastSection(true);
QHBoxLayout* filterLayout = new QHBoxLayout;
QLabel* filterLabel = new QLabel(tr("Filter:"),this);
m_propertyFilterEdit = new QLineEdit(this);
m_propertyFilterEdit->setToolTip(tr("String or regular expression to filter property list with"));
connect(m_propertyFilterEdit,SIGNAL(textChanged(QString)),
this,SLOT(changeFilter(QString)));
filterLayout->addWidget(filterLabel);
filterLayout->addWidget(m_propertyFilterEdit);
m_model = new ObjectPropertyModel(this);
m_propertySortModel = new QSortFilterProxyModel(this);
m_propertySortModel->setSourceModel(m_model);
m_propertyView->setModel(m_propertySortModel);
layout->addWidget(m_propertyView);
layout->addLayout(filterLayout);
setObject(ObjectProxy::Pointer());
}
QString ObjectInspector::formatAddress(void* ptr)
{
quintptr intPtr = reinterpret_cast<quintptr>(ptr);
return QString("0x%1").arg(QString(QByteArray::number(intPtr,16)));
}
void ObjectInspector::refresh()
{
setObject(m_currentObject);
}
void ObjectInspector::setObject(ObjectProxy::Pointer object)
{
QString labelText;
if (object)
{
labelText = QString("%1 [%2] (%3)")
.arg(object->className())
.arg(object->objectName())
.arg(formatAddress(reinterpret_cast<void*>(object->address())));
}
else
{
labelText = tr("[No Object Selected]");
}
m_nameLabel->setText(labelText);
m_currentObject = object;
m_model->setObject(object);
m_propertySortModel->sort(0,Qt::AscendingOrder);
}
ObjectProxy::Pointer ObjectInspector::object() const
{
return m_currentObject;
}
void ObjectInspector::changeFilter(const QString& pattern)
{
m_propertySortModel->setFilterRegExp(QRegExp(pattern));
}