2022-10-02 19:45:46 +00:00
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <dust3d/base/debug.h>
|
|
|
|
#include "component_list_model.h"
|
|
|
|
#include "document.h"
|
|
|
|
|
|
|
|
ComponentListModel::ComponentListModel(const Document *document, QObject *parent):
|
|
|
|
QAbstractListModel(parent),
|
|
|
|
m_document(document)
|
|
|
|
{
|
2022-10-02 22:04:46 +00:00
|
|
|
connect(m_document, &Document::componentPreviewImageChanged, [this](const dust3d::Uuid &componentId) {
|
2022-10-04 09:50:39 +00:00
|
|
|
// FIXME: dont refresh the whole layout
|
2022-10-02 22:04:46 +00:00
|
|
|
emit this->layoutChanged();
|
|
|
|
});
|
2022-10-02 19:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ComponentListModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
2022-10-02 22:04:46 +00:00
|
|
|
if (parent.isValid())
|
|
|
|
return 0;
|
2022-10-02 19:45:46 +00:00
|
|
|
const SkeletonComponent *listingComponent = m_document->findComponent(m_listingComponentId);
|
|
|
|
if (nullptr == listingComponent)
|
|
|
|
return 0;
|
|
|
|
return (int)listingComponent->childrenIds.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ComponentListModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
2022-10-02 22:04:46 +00:00
|
|
|
if (parent.isValid())
|
|
|
|
return 0;
|
2022-10-02 19:45:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SkeletonComponent *ComponentListModel::modelIndexToComponent(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
const SkeletonComponent *listingComponent = m_document->findComponent(m_listingComponentId);
|
|
|
|
if (nullptr == listingComponent)
|
|
|
|
return nullptr;
|
|
|
|
if (index.row() >= (int)listingComponent->childrenIds.size()) {
|
|
|
|
dust3dDebug << "Component list row is out of range, size:" << listingComponent->childrenIds.size() << "row:" << index.row();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
const auto &componentId = listingComponent->childrenIds[index.row()];
|
|
|
|
const SkeletonComponent *component = m_document->findComponent(componentId);
|
|
|
|
if (nullptr == component) {
|
|
|
|
dust3dDebug << "Component not found:" << componentId.toString();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ComponentListModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
switch (role) {
|
|
|
|
case Qt::ToolTipRole: {
|
|
|
|
const SkeletonComponent *component = modelIndexToComponent(index);
|
|
|
|
if (nullptr != component) {
|
|
|
|
return component->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Qt::DecorationRole: {
|
|
|
|
const SkeletonComponent *component = modelIndexToComponent(index);
|
|
|
|
if (nullptr != component) {
|
2022-10-02 22:04:46 +00:00
|
|
|
return component->previewPixmap;
|
2022-10-02 19:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComponentListModel::setListingComponentId(const dust3d::Uuid &componentId)
|
|
|
|
{
|
|
|
|
if (m_listingComponentId == componentId)
|
|
|
|
return;
|
|
|
|
m_listingComponentId = componentId;
|
2022-10-04 09:50:39 +00:00
|
|
|
emit listingComponentChanged(m_listingComponentId);
|
2022-10-02 19:45:46 +00:00
|
|
|
emit layoutChanged();
|
|
|
|
}
|
2022-10-04 09:50:39 +00:00
|
|
|
|
|
|
|
const dust3d::Uuid ComponentListModel::listingComponentId() const
|
|
|
|
{
|
|
|
|
return m_listingComponentId;
|
|
|
|
}
|