forked from blue/squawk
86 lines
2.0 KiB
C++
86 lines
2.0 KiB
C++
#include "accounts.h"
|
|
#include "../../global.h"
|
|
|
|
#include <QIcon>
|
|
|
|
std::deque<QString> Models::Accounts::columns = {
|
|
"name",
|
|
"server",
|
|
"state"
|
|
};
|
|
|
|
Models::Accounts::Accounts(QObject* parent):
|
|
QAbstractTableModel(parent),
|
|
accs()
|
|
{
|
|
|
|
}
|
|
|
|
Models::Accounts::~Accounts()
|
|
{
|
|
|
|
}
|
|
|
|
QVariant Models::Accounts::data (const QModelIndex& index, int role) const
|
|
{
|
|
QVariant answer;
|
|
switch (role) {
|
|
case Qt::DisplayRole:
|
|
answer = accs[index.row()]->data(index.column());
|
|
break;
|
|
case Qt::DecorationRole:
|
|
if (index.column() == 2) {
|
|
answer = QIcon::fromTheme(Shared::connectionStateThemeIcons[accs[index.row()]->getState()]);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return answer;
|
|
}
|
|
|
|
int Models::Accounts::columnCount ( const QModelIndex& parent ) const
|
|
{
|
|
return columns.size();
|
|
}
|
|
|
|
int Models::Accounts::rowCount ( const QModelIndex& parent ) const
|
|
{
|
|
return accs.size();
|
|
}
|
|
|
|
QVariant Models::Accounts::headerData(int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
|
|
return columns[section];
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
|
|
void Models::Accounts::addAccount(Account* account)
|
|
{
|
|
beginInsertRows(QModelIndex(), accs.size(), accs.size());
|
|
accs.push_back(account);
|
|
connect(account, SIGNAL(childChanged(Models::Item*, int, int)), this, SLOT(onAccountChanged(Models::Item*, int, int)));
|
|
endInsertRows();
|
|
}
|
|
|
|
void Models::Accounts::onAccountChanged(Item* item, int row, int col)
|
|
{
|
|
Account* acc = getAccount(row);
|
|
if (item != acc) {
|
|
return; //it means the signal is emitted by one of accounts' children, not exactly him, this model has no interest in that
|
|
}
|
|
|
|
if (col < columnCount(QModelIndex())) {
|
|
emit dataChanged(createIndex(row, col, this), createIndex(row, col, this));
|
|
}
|
|
}
|
|
|
|
Models::Account * Models::Accounts::getAccount(int index)
|
|
{
|
|
return accs[index];
|
|
}
|