Have the libraries tab show tweaker mods instead of libraries
This commit is contained in:
parent
f9ea3dbfde
commit
176783c8ca
4 changed files with 23 additions and 43 deletions
|
@ -27,11 +27,15 @@ OneSixVersion::OneSixVersion(OneSixInstance *instance, QObject *parent)
|
|||
|
||||
bool OneSixVersion::reload(QWidget *widgetParent, const bool excludeCustom)
|
||||
{
|
||||
return OneSixVersionBuilder::build(this, m_instance, widgetParent, excludeCustom);
|
||||
beginResetModel();
|
||||
bool ret = OneSixVersionBuilder::build(this, m_instance, widgetParent, excludeCustom);
|
||||
endResetModel();
|
||||
return ret;
|
||||
}
|
||||
|
||||
void OneSixVersion::clear()
|
||||
{
|
||||
beginResetModel();
|
||||
id.clear();
|
||||
time.clear();
|
||||
releaseTime.clear();
|
||||
|
@ -43,6 +47,7 @@ void OneSixVersion::clear()
|
|||
mainClass.clear();
|
||||
libraries.clear();
|
||||
tweakers.clear();
|
||||
endResetModel();
|
||||
}
|
||||
|
||||
void OneSixVersion::dump() const
|
||||
|
@ -109,21 +114,14 @@ QVariant OneSixVersion::data(const QModelIndex &index, int role) const
|
|||
int row = index.row();
|
||||
int column = index.column();
|
||||
|
||||
if (row < 0 || row >= libraries.size())
|
||||
if (row < 0 || row >= tweakers.size())
|
||||
return QVariant();
|
||||
|
||||
if (role == Qt::DisplayRole)
|
||||
{
|
||||
switch (column)
|
||||
if (column == 0)
|
||||
{
|
||||
case 0:
|
||||
return libraries[row]->name();
|
||||
case 1:
|
||||
return libraries[row]->type();
|
||||
case 2:
|
||||
return libraries[row]->version();
|
||||
default:
|
||||
return QVariant();
|
||||
return tweakers.at(row);
|
||||
}
|
||||
}
|
||||
return QVariant();
|
||||
|
@ -133,43 +131,17 @@ Qt::ItemFlags OneSixVersion::flags(const QModelIndex &index) const
|
|||
{
|
||||
if (!index.isValid())
|
||||
return Qt::NoItemFlags;
|
||||
int row = index.row();
|
||||
if (libraries[row]->isActive())
|
||||
{
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemNeverHasChildren;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Qt::ItemNeverHasChildren;
|
||||
}
|
||||
// return QAbstractListModel::flags(index);
|
||||
}
|
||||
|
||||
QVariant OneSixVersion::headerData(int section, Qt::Orientation orientation, int role) const
|
||||
{
|
||||
if (role != Qt::DisplayRole || orientation != Qt::Horizontal)
|
||||
return QVariant();
|
||||
switch (section)
|
||||
{
|
||||
case 0:
|
||||
return QString("Name");
|
||||
case 1:
|
||||
return QString("Type");
|
||||
case 2:
|
||||
return QString("Version");
|
||||
default:
|
||||
return QString();
|
||||
}
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
||||
}
|
||||
|
||||
int OneSixVersion::rowCount(const QModelIndex &parent) const
|
||||
{
|
||||
return libraries.size();
|
||||
return tweakers.size();
|
||||
}
|
||||
|
||||
int OneSixVersion::columnCount(const QModelIndex &parent) const
|
||||
{
|
||||
return 3;
|
||||
return 1;
|
||||
}
|
||||
|
||||
QDebug operator<<(QDebug &dbg, const OneSixVersion *version)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue