mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 03:12:36 +01:00
42 lines
885 B
C++
42 lines
885 B
C++
#include "IMGArchiveModel.hpp"
|
|
|
|
QVariant IMGArchiveModel::data(const QModelIndex& index, int role) const
|
|
{
|
|
if(role == Qt::DisplayRole) {
|
|
if(index.row() >= 0 && (unsigned) index.row() < archive.getAssetCount()) {
|
|
auto& f = archive.getAssetInfoByIndex(index.row());
|
|
if(index.column() == 0) {
|
|
return QString(f.name);
|
|
}
|
|
if(index.column() == 1) {
|
|
return f.size;
|
|
}
|
|
}
|
|
}
|
|
return QVariant::Invalid;
|
|
}
|
|
|
|
QVariant IMGArchiveModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
if(role == Qt::DisplayRole && orientation == Qt::Horizontal) {
|
|
if(section == 0) {
|
|
return "Name";
|
|
}
|
|
if(section == 1) {
|
|
return "Size";
|
|
}
|
|
}
|
|
return QVariant::Invalid;
|
|
}
|
|
|
|
int IMGArchiveModel::rowCount(const QModelIndex& parent) const
|
|
{
|
|
return archive.getAssetCount();
|
|
}
|
|
|
|
int IMGArchiveModel::columnCount(const QModelIndex& parent) const
|
|
{
|
|
return 2;
|
|
}
|
|
|