1 /***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef COREACCOUNTMODEL_H_
22 #define COREACCOUNTMODEL_H_
24 #include <QAbstractListModel>
27 #include "coreaccount.h"
29 class CoreAccountModel : public QAbstractListModel
35 AccountIdRole = Qt::UserRole,
39 CoreAccountModel(QObject *parent = 0);
40 CoreAccountModel(const CoreAccountModel *other, QObject *parent = 0);
42 inline int rowCount(const QModelIndex &parent = QModelIndex()) const;
43 virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
45 CoreAccount account(const QModelIndex &) const;
46 CoreAccount account(AccountId) const;
47 QList<CoreAccount> accounts() const;
48 QList<AccountId> accountIds() const;
49 QModelIndex accountIndex(AccountId id) const;
51 inline AccountId internalAccount() const;
53 AccountId createOrUpdateAccount(const CoreAccount &newAccountData);
54 CoreAccount takeAccount(AccountId);
55 void removeAccount(AccountId);
57 void update(const CoreAccountModel *other);
59 bool operator==(const CoreAccountModel &other) const;
67 void insertAccount(const CoreAccount &);
68 int findAccountIdx(AccountId) const;
71 int listIndex(AccountId);
73 QList<CoreAccount> _accounts;
74 QSet<AccountId> _removedAccounts;
75 AccountId _internalAccount;
80 int CoreAccountModel::rowCount(const QModelIndex &) const
82 return _accounts.count();
86 AccountId CoreAccountModel::internalAccount() const
88 return _internalAccount;