5b224b4589dc7ba0fe66f82d677439df1b00181e
[quassel.git] / src / client / coreaccountmodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
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.                                           *
9  *                                                                         *
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.                          *
14  *                                                                         *
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  ***************************************************************************/
20
21 #pragma once
22
23 #include "client-export.h"
24
25 #include <QAbstractListModel>
26 #include <QUuid>
27
28 #include "coreaccount.h"
29
30 class CLIENT_EXPORT CoreAccountModel : public QAbstractListModel
31 {
32     Q_OBJECT
33
34 public:
35     enum {
36         AccountIdRole = Qt::UserRole,
37         UuidRole
38     };
39
40     CoreAccountModel(QObject *parent = 0);
41     CoreAccountModel(const CoreAccountModel *other, QObject *parent = 0);
42
43     inline int rowCount(const QModelIndex &parent = QModelIndex()) const;
44     virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
45
46     CoreAccount account(const QModelIndex &) const;
47     CoreAccount account(AccountId) const;
48     QList<CoreAccount> accounts() const;
49     QList<AccountId> accountIds() const;
50     QModelIndex accountIndex(AccountId id) const;
51
52     inline AccountId internalAccount() const;
53
54     AccountId createOrUpdateAccount(const CoreAccount &newAccountData);
55     CoreAccount takeAccount(AccountId);
56     void removeAccount(AccountId);
57
58     void update(const CoreAccountModel *other);
59
60     bool operator==(const CoreAccountModel &other) const;
61     bool operator!=(const CoreAccountModel &other) const;
62
63 public slots:
64     void save();
65     void load();
66     void clear();
67
68 protected:
69     void insertAccount(const CoreAccount &);
70     int findAccountIdx(AccountId) const;
71
72 private:
73     int listIndex(AccountId);
74
75     QList<CoreAccount> _accounts;
76     QSet<AccountId> _removedAccounts;
77     AccountId _internalAccount;
78 };
79
80
81 // Inlines
82 int CoreAccountModel::rowCount(const QModelIndex &) const
83 {
84     return _accounts.count();
85 }
86
87
88 AccountId CoreAccountModel::internalAccount() const
89 {
90     return _internalAccount;
91 }