2019-09-01 19:46:12 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-03-31 21:05:09 +00:00
|
|
|
#ifndef MODELS_ROSTER_H
|
|
|
|
#define MODELS_ROSTER_H
|
|
|
|
|
|
|
|
#include <qabstractitemmodel.h>
|
|
|
|
#include <deque>
|
|
|
|
#include <map>
|
2019-04-03 18:15:36 +00:00
|
|
|
#include <QVector>
|
2020-02-08 11:44:15 +00:00
|
|
|
|
2020-04-03 22:28:15 +00:00
|
|
|
#include "shared/message.h"
|
|
|
|
#include "shared/global.h"
|
2019-04-03 15:09:29 +00:00
|
|
|
#include "accounts.h"
|
|
|
|
#include "item.h"
|
|
|
|
#include "account.h"
|
2019-04-05 15:12:59 +00:00
|
|
|
#include "contact.h"
|
2019-06-22 20:37:22 +00:00
|
|
|
#include "group.h"
|
2019-07-11 08:51:52 +00:00
|
|
|
#include "room.h"
|
2020-04-17 23:17:47 +00:00
|
|
|
#include "reference.h"
|
2019-03-31 21:05:09 +00:00
|
|
|
|
|
|
|
namespace Models
|
|
|
|
{
|
|
|
|
|
|
|
|
class Roster : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-04-09 15:04:08 +00:00
|
|
|
class ElId;
|
2019-03-31 21:05:09 +00:00
|
|
|
Roster(QObject* parent = 0);
|
|
|
|
~Roster();
|
|
|
|
|
|
|
|
void addAccount(const QMap<QString, QVariant> &data);
|
2019-04-02 21:58:43 +00:00
|
|
|
void updateAccount(const QString& account, const QString& field, const QVariant& value);
|
2019-05-29 15:05:54 +00:00
|
|
|
void removeAccount(const QString& account);
|
2019-04-03 21:23:51 +00:00
|
|
|
void addGroup(const QString& account, const QString& name);
|
|
|
|
void removeGroup(const QString& account, const QString& name);
|
2019-04-07 20:14:15 +00:00
|
|
|
void addContact(const QString& account, const QString& jid, const QString& group, const QMap<QString, QVariant>& data);
|
2019-04-06 10:14:32 +00:00
|
|
|
void removeContact(const QString& account, const QString& jid, const QString& group);
|
|
|
|
void removeContact(const QString& account, const QString& jid);
|
2019-04-07 20:14:15 +00:00
|
|
|
void changeContact(const QString& account, const QString& jid, const QMap<QString, QVariant>& data);
|
2019-04-07 14:02:41 +00:00
|
|
|
void addPresence(const QString& account, const QString& jid, const QString& name, const QMap<QString, QVariant>& data);
|
|
|
|
void removePresence(const QString& account, const QString& jid, const QString& name);
|
2019-04-11 14:58:59 +00:00
|
|
|
void addMessage(const QString& account, const Shared::Message& data);
|
2020-02-08 11:44:15 +00:00
|
|
|
void changeMessage(const QString& account, const QString& jid, const QString& id, const QMap<QString, QVariant>& data);
|
2019-04-09 22:01:25 +00:00
|
|
|
void dropMessages(const QString& account, const QString& jid);
|
2019-07-11 08:51:52 +00:00
|
|
|
void addRoom(const QString& account, const QString jid, const QMap<QString, QVariant>& data);
|
|
|
|
void changeRoom(const QString& account, const QString jid, const QMap<QString, QVariant>& data);
|
|
|
|
void removeRoom(const QString& account, const QString jid);
|
2019-09-02 11:17:28 +00:00
|
|
|
void addRoomParticipant(const QString& account, const QString& jid, const QString& name, const QMap<QString, QVariant>& data);
|
|
|
|
void changeRoomParticipant(const QString& account, const QString& jid, const QString& name, const QMap<QString, QVariant>& data);
|
|
|
|
void removeRoomParticipant(const QString& account, const QString& jid, const QString& name);
|
2019-06-18 15:08:03 +00:00
|
|
|
QString getContactName(const QString& account, const QString& jid);
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-04-02 21:58:43 +00:00
|
|
|
QVariant data ( const QModelIndex& index, int role ) const override;
|
2019-03-31 21:05:09 +00:00
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
2019-04-02 21:58:43 +00:00
|
|
|
int columnCount ( const QModelIndex& parent ) const override;
|
|
|
|
int rowCount ( const QModelIndex& parent ) const override;
|
|
|
|
QModelIndex parent ( const QModelIndex& child ) const override;
|
|
|
|
QModelIndex index ( int row, int column, const QModelIndex& parent ) const override;
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-09-28 14:30:16 +00:00
|
|
|
std::deque<QString> groupList(const QString& account) const;
|
|
|
|
bool groupHasContact(const QString& account, const QString& group, const QString& contactJID) const;
|
2019-12-31 18:14:12 +00:00
|
|
|
QString getContactIconPath(const QString& account, const QString& jid, const QString& resource);
|
2019-12-20 15:41:20 +00:00
|
|
|
Account* getAccount(const QString& name);
|
2019-12-25 10:24:20 +00:00
|
|
|
QModelIndex getAccountIndex(const QString& name);
|
|
|
|
QModelIndex getGroupIndex(const QString& account, const QString& name);
|
2019-09-28 14:30:16 +00:00
|
|
|
|
2019-04-03 15:09:29 +00:00
|
|
|
Accounts* accountsModel;
|
|
|
|
|
2019-03-31 21:05:09 +00:00
|
|
|
private:
|
|
|
|
Item* root;
|
2019-04-02 21:58:43 +00:00
|
|
|
std::map<QString, Account*> accounts;
|
2019-06-22 20:37:22 +00:00
|
|
|
std::map<ElId, Group*> groups;
|
2020-04-17 23:17:47 +00:00
|
|
|
std::map<ElId, Contact*> contacts;
|
2019-07-11 08:51:52 +00:00
|
|
|
std::map<ElId, Room*> rooms;
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-04-03 18:15:36 +00:00
|
|
|
private slots:
|
|
|
|
void onAccountDataChanged(const QModelIndex& tl, const QModelIndex& br, const QVector<int>& roles);
|
2019-04-09 15:04:08 +00:00
|
|
|
void onChildChanged(Models::Item* item, int row, int col);
|
2019-04-07 14:02:41 +00:00
|
|
|
void onChildIsAboutToBeInserted(Item* parent, int first, int last);
|
|
|
|
void onChildInserted();
|
|
|
|
void onChildIsAboutToBeRemoved(Item* parent, int first, int last);
|
|
|
|
void onChildRemoved();
|
|
|
|
void onChildIsAboutToBeMoved(Item* source, int first, int last, Item* destination, int newIndex);
|
|
|
|
void onChildMoved();
|
2019-04-03 18:15:36 +00:00
|
|
|
|
2019-04-09 15:04:08 +00:00
|
|
|
public:
|
2019-03-31 21:05:09 +00:00
|
|
|
class ElId {
|
|
|
|
public:
|
2019-08-28 11:40:55 +00:00
|
|
|
ElId (const QString& p_account = "", const QString& p_name = "");
|
2019-03-31 21:05:09 +00:00
|
|
|
|
|
|
|
const QString account;
|
|
|
|
const QString name;
|
|
|
|
|
|
|
|
bool operator < (const ElId& other) const;
|
2020-04-11 20:00:15 +00:00
|
|
|
bool operator == (const ElId& other) const;
|
|
|
|
bool operator != (const ElId& other) const;
|
2019-03-31 21:05:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MODELS_ROSTER_H
|