/* * Copyright (C) 2019-2020 by Savoir-faire Linux * Author: Andreas Traczyk * Author: Mingrui Zhang * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "accountlistmodel.h" #include #include "globalinstances.h" #include "lrcinstance.h" #include "pixbufmanipulator.h" #include "utils.h" AccountListModel::AccountListModel(QObject *parent) : QAbstractListModel(parent) {} AccountListModel::~AccountListModel() {} int AccountListModel::rowCount(const QModelIndex &parent) const { if (!parent.isValid()) { /* * Count. */ return LRCInstance::accountModel().getAccountList().size(); } /* * A valid QModelIndex returns 0 as no entry has sub-elements. */ return 0; } int AccountListModel::columnCount(const QModelIndex &parent) const { Q_UNUSED(parent); /* * Only need one column. */ return 1; } QVariant AccountListModel::data(const QModelIndex &index, int role) const { auto accountList = LRCInstance::accountModel().getAccountList(); if (!index.isValid() || accountList.size() <= index.row()) { return QVariant(); } auto &accountInfo = LRCInstance::accountModel().getAccountInfo(accountList.at(index.row())); switch (role) { case Role::Alias: return QVariant(Utils::bestNameForAccount(accountInfo)); case Role::Username: return QVariant(Utils::secondBestNameForAccount(accountInfo)); case Role::Type: return QVariant( Utils::toUnderlyingValue(accountInfo.profileInfo.type)); case Role::Status: return QVariant(Utils::toUnderlyingValue(accountInfo.status)); case Role::Picture: return QString::fromLatin1( Utils::QImageToByteArray(Utils::accountPhoto(accountInfo)).toBase64().data()); case Role::ID: return QVariant(accountInfo.id); } return QVariant(); } QHash AccountListModel::roleNames() const { QHash roles; roles[Alias] = "Alias"; roles[Username] = "Username"; roles[Picture] = "Picture"; roles[Type] = "Type"; roles[Status] = "Status"; roles[ID] = "ID"; return roles; } QModelIndex AccountListModel::index(int row, int column, const QModelIndex &parent) const { Q_UNUSED(parent); if (column != 0) { return QModelIndex(); } if (row >= 0 && row < rowCount()) { return createIndex(row, column); } return QModelIndex(); } QModelIndex AccountListModel::parent(const QModelIndex &child) const { Q_UNUSED(child); return QModelIndex(); } Qt::ItemFlags AccountListModel::flags(const QModelIndex &index) const { auto flags = QAbstractItemModel::flags(index) | Qt::ItemNeverHasChildren | Qt::ItemIsSelectable; if (!index.isValid()) { return QAbstractItemModel::flags(index); } return flags; } void AccountListModel::reset() { beginResetModel(); endResetModel(); }