src: Yearly copyright bump
[quassel.git] / src / client / coreaccountmodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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     {
37         AccountIdRole = Qt::UserRole,
38         UuidRole
39     };
40
41     CoreAccountModel(QObject* parent = nullptr);
42     CoreAccountModel(const CoreAccountModel* other, QObject* parent = nullptr);
43
44     inline int rowCount(const QModelIndex& parent = QModelIndex()) const override;
45     QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
46
47     CoreAccount account(const QModelIndex&) const;
48     CoreAccount account(AccountId) const;
49     QList<CoreAccount> accounts() const;
50     QList<AccountId> accountIds() const;
51     QModelIndex accountIndex(AccountId id) const;
52
53     inline AccountId internalAccount() const;
54
55     AccountId createOrUpdateAccount(const CoreAccount& newAccountData);
56     CoreAccount takeAccount(AccountId);
57     void removeAccount(AccountId);
58
59     void update(const CoreAccountModel* other);
60
61     bool operator==(const CoreAccountModel& other) const;
62     bool operator!=(const CoreAccountModel& other) const;
63
64 public slots:
65     void save();
66     void load();
67     void clear();
68
69 protected:
70     void insertAccount(const CoreAccount&);
71     int findAccountIdx(AccountId) const;
72
73 private:
74     int listIndex(AccountId);
75
76     QList<CoreAccount> _accounts;
77     QSet<AccountId> _removedAccounts;
78     AccountId _internalAccount;
79 };
80
81 // Inlines
82 int CoreAccountModel::rowCount(const QModelIndex&) const
83 {
84     return _accounts.count();
85 }
86
87 AccountId CoreAccountModel::internalAccount() const
88 {
89     return _internalAccount;
90 }