2016-03-05 11:35:32 +00:00
|
|
|
#include "profilesmodel.h"
|
|
|
|
|
|
|
|
CProfilesModel::CProfilesModel(QObject *parent):QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
m_profiles = CConfigFile::getInstance()->getProfiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
CProfilesModel::CProfilesModel(const CProfiles &profiles, QObject *parent):QAbstractListModel(parent), m_profiles(profiles)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CProfilesModel::~CProfilesModel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int CProfilesModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return m_profiles.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant CProfilesModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if (role != Qt::DisplayRole) return QVariant();
|
|
|
|
|
|
|
|
const CProfile &profile = m_profiles.at(index.row());
|
|
|
|
|
2016-03-12 20:56:23 +00:00
|
|
|
return QString("%1 (#%2)").arg(profile.name).arg(profile.id);
|
2016-03-05 11:35:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CProfilesModel::removeRows(int row, int count, const QModelIndex &parent)
|
|
|
|
{
|
|
|
|
if (row < 0) return false;
|
|
|
|
|
|
|
|
beginRemoveRows(parent, row, row + count - 1);
|
|
|
|
|
|
|
|
m_profiles.removeAt(row);
|
|
|
|
|
|
|
|
endRemoveRows();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CProfilesModel::save() const
|
|
|
|
{
|
|
|
|
CConfigFile::getInstance()->setProfiles(m_profiles);
|
2016-03-12 21:00:43 +00:00
|
|
|
CConfigFile::getInstance()->save();
|
2016-03-05 11:35:32 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-12 20:57:24 +00:00
|
|
|
|
|
|
|
int CProfilesModel::getIndexFromProfileID(int profileId) const
|
|
|
|
{
|
|
|
|
for(int i = 0; i < m_profiles.size(); ++i)
|
|
|
|
{
|
|
|
|
if (m_profiles[i].id == profileId) return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CProfilesModel::getProfileIDFromIndex(int index) const
|
|
|
|
{
|
|
|
|
if (index < 0 || index >= m_profiles.size()) return -1;
|
|
|
|
|
|
|
|
return m_profiles[index].id;
|
|
|
|
}
|