2022-07-03 23:45:57 -04:00
|
|
|
#include "objectmodel.h"
|
|
|
|
|
2022-07-10 23:51:49 -04:00
|
|
|
#include <chunk.h>
|
|
|
|
|
|
|
|
#define super QAbstractItemModel
|
2022-07-03 23:45:57 -04:00
|
|
|
|
|
|
|
using namespace si;
|
|
|
|
|
|
|
|
ObjectModel::ObjectModel(QObject *parent) :
|
|
|
|
super{parent}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int ObjectModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return kColCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex ObjectModel::index(int row, int column, const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return createIndex(row, column, GetItem(row));
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex ObjectModel::parent(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
return QModelIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ObjectModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
if (parent.isValid()) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
Chunk *mxof = GetMxOf();
|
|
|
|
if (!mxof) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-07-11 00:09:39 -04:00
|
|
|
return int(mxof->data("Offsets").size() / sizeof(uint32_t));
|
2022-07-03 23:45:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ObjectModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2022-07-11 00:09:39 -04:00
|
|
|
uint32_t offset;
|
2022-07-03 23:45:57 -04:00
|
|
|
Chunk *c = GetItem(index.row(), &offset);
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
|
|
|
|
switch (index.column()) {
|
|
|
|
case kColIndex:
|
|
|
|
return index.row();
|
|
|
|
case kColOffset:
|
|
|
|
return QStringLiteral("0x%1").arg(QString::number(offset, 16).toUpper());
|
|
|
|
case kColName:
|
|
|
|
if (c) {
|
|
|
|
Chunk *mxob = c->FindChildWithType(Chunk::TYPE_MxOb);
|
|
|
|
if (mxob) {
|
|
|
|
return QString(mxob->data("Name"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ObjectModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
|
|
|
|
switch (section) {
|
|
|
|
case kColIndex:
|
|
|
|
return tr("Index");
|
|
|
|
case kColOffset:
|
|
|
|
return tr("Offset");
|
|
|
|
case kColName:
|
|
|
|
return tr("Name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return super::headerData(section, orientation, role);
|
|
|
|
}
|