modernize: Reformat ALL the source... again!
[quassel.git] / src / client / coreaccountmodel.cpp
index 04ee15f..86dc7df 100644 (file)
 #include "clientsettings.h"
 #include "quassel.h"
 
-CoreAccountModel::CoreAccountModel(QObject *parent)
-    : QAbstractListModel(parent),
-    _internalAccount(0)
-{
-}
-
+CoreAccountModel::CoreAccountModel(QObject* parent)
+    : QAbstractListModel(parent)
+    , _internalAccount(0)
+{}
 
-CoreAccountModel::CoreAccountModel(const CoreAccountModel *other, QObject *parent)
-    : QAbstractListModel(parent),
-    _internalAccount(0)
+CoreAccountModel::CoreAccountModel(const CoreAccountModel* other, QObject* parent)
+    : QAbstractListModel(parent)
+    _internalAccount(0)
 {
     update(other);
 }
 
-
-void CoreAccountModel::update(const CoreAccountModel *other)
+void CoreAccountModel::update(const CoreAccountModel* other)
 {
     clear();
     if (other->_accounts.count() > 0) {
-        beginInsertRows(QModelIndex(), 0, other->_accounts.count() -1);
+        beginInsertRows(QModelIndex(), 0, other->_accounts.count() - 1);
         _accounts = other->_accounts;
         endInsertRows();
     }
@@ -50,15 +47,14 @@ void CoreAccountModel::update(const CoreAccountModel *other)
     _removedAccounts = other->_removedAccounts;
 }
 
-
 void CoreAccountModel::load()
 {
     clear();
     CoreAccountSettings s;
-    foreach(AccountId accId, s.knownAccounts()) {
+    foreach (AccountId accId, s.knownAccounts()) {
         QVariantMap map = s.retrieveAccountData(accId);
         CoreAccount acc;
-        acc.fromVariantMap(map); // TODO Hook into kwallet/password saving stuff
+        acc.fromVariantMap(map);  // TODO Hook into kwallet/password saving stuff
         insertAccount(acc);
     }
     if (Quassel::runMode() == Quassel::Monolithic && !internalAccount().isValid()) {
@@ -70,21 +66,19 @@ void CoreAccountModel::load()
     }
 }
 
-
 void CoreAccountModel::save()
 {
     CoreAccountSettings s;
-    foreach(AccountId id, _removedAccounts) {
+    foreach (AccountId id, _removedAccounts) {
         s.removeAccount(id);
     }
     _removedAccounts.clear();
-    foreach(const CoreAccount &acc, accounts()) {
-        QVariantMap map = acc.toVariantMap(false); // TODO Hook into kwallet/password saving stuff
+    foreach (const CoreAccount& acc, accounts()) {
+        QVariantMap map = acc.toVariantMap(false);  // TODO Hook into kwallet/password saving stuff
         s.storeAccountData(acc.accountId(), map);
     }
 }
 
-
 void CoreAccountModel::clear()
 {
     beginResetModel();
@@ -93,13 +87,12 @@ void CoreAccountModel::clear()
     endResetModel();
 }
 
-
-QVariant CoreAccountModel::data(const QModelIndex &index, int role) const
+QVariant CoreAccountModel::data(const QModelIndex& index, int role) const
 {
     if (!index.isValid() || index.row() >= rowCount() || index.column() >= 1)
         return QVariant();
 
-    const CoreAccount &acc = accounts().at(index.row());
+    const CoreAccountacc = accounts().at(index.row());
 
     switch (role) {
     case Qt::DisplayRole:
@@ -114,7 +107,6 @@ QVariant CoreAccountModel::data(const QModelIndex &index, int role) const
     }
 }
 
-
 CoreAccount CoreAccountModel::account(AccountId id) const
 {
     int idx = findAccountIdx(id);
@@ -123,44 +115,38 @@ CoreAccount CoreAccountModel::account(AccountId id) const
     return CoreAccount();
 }
 
-
-CoreAccount CoreAccountModel::account(const QModelIndex &idx) const
+CoreAccount CoreAccountModel::account(const QModelIndex& idx) const
 {
     if (idx.isValid() && idx.row() < _accounts.count())
         return _accounts.value(idx.row());
     return CoreAccount();
 }
 
-
 QList<CoreAccount> CoreAccountModel::accounts() const
 {
     return _accounts;
 }
 
-
 QList<AccountId> CoreAccountModel::accountIds() const
 {
     QList<AccountId> list;
-    foreach(const CoreAccount &acc, accounts())
-    list << acc.accountId();
+    foreach (const CoreAccount& acc, accounts())
+        list << acc.accountId();
     return list;
 }
 
-
-bool CoreAccountModel::operator==(const CoreAccountModel &other) const
+bool CoreAccountModel::operator==(const CoreAccountModel& other) const
 {
     return _accounts == other._accounts;
 }
 
-
-bool CoreAccountModel::operator!=(const CoreAccountModel &other) const
+bool CoreAccountModel::operator!=(const CoreAccountModel& other) const
 {
     return !(*this == other);
 }
 
-
 // TODO with Qt 4.6, use QAbstractItemModel move semantics to properly do this
-AccountId CoreAccountModel::createOrUpdateAccount(const CoreAccount &newAcc)
+AccountId CoreAccountModel::createOrUpdateAccount(const CoreAccountnewAcc)
 {
     CoreAccount acc = newAcc;
 
@@ -170,7 +156,7 @@ AccountId CoreAccountModel::createOrUpdateAccount(const CoreAccount &newAcc)
     if (!acc.accountId().isValid()) {
         // find free Id
         AccountId newId = 0;
-        const QList<AccountId> &ids = accountIds();
+        const QList<AccountId>ids = accountIds();
         for (int i = 1;; i++) {
             if (!_removedAccounts.contains(i) && !ids.contains(i)) {
                 newId = i;
@@ -198,8 +184,7 @@ AccountId CoreAccountModel::createOrUpdateAccount(const CoreAccount &newAcc)
     return acc.accountId();
 }
 
-
-void CoreAccountModel::insertAccount(const CoreAccount &acc)
+void CoreAccountModel::insertAccount(const CoreAccount& acc)
 {
     if (acc.isInternal()) {
         if (internalAccount().isValid()) {
@@ -211,7 +196,7 @@ void CoreAccountModel::insertAccount(const CoreAccount &acc)
 
     // check for Quuid
     int idx = 0;
-    while (idx<_accounts.count() && acc.accountName()> _accounts.at(idx).accountName() && !acc.isInternal())
+    while (idx < _accounts.count() && acc.accountName() > _accounts.at(idx).accountName() && !acc.isInternal())
         ++idx;
 
     beginInsertRows(QModelIndex(), idx, idx);
@@ -219,7 +204,6 @@ void CoreAccountModel::insertAccount(const CoreAccount &acc)
     endInsertRows();
 }
 
-
 CoreAccount CoreAccountModel::takeAccount(AccountId accId)
 {
     int idx = findAccountIdx(accId);
@@ -236,14 +220,12 @@ CoreAccount CoreAccountModel::takeAccount(AccountId accId)
     return acc;
 }
 
-
 void CoreAccountModel::removeAccount(AccountId accId)
 {
     takeAccount(accId);
     _removedAccounts.insert(accId);
 }
 
-
 QModelIndex CoreAccountModel::accountIndex(AccountId accId) const
 {
     for (int i = 0; i < _accounts.count(); i++) {
@@ -253,7 +235,6 @@ QModelIndex CoreAccountModel::accountIndex(AccountId accId) const
     return {};
 }
 
-
 int CoreAccountModel::findAccountIdx(AccountId id) const
 {
     QModelIndex idx = accountIndex(id);