Newer
Older
WickedDocs / Framework / ObjectInspector.cpp
#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));
}