squawk/ui/models/contact.h

109 lines
3.2 KiB
C
Raw Normal View History

/*
* 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-04-05 15:12:59 +00:00
#ifndef MODELS_CONTACT_H
#define MODELS_CONTACT_H
#include "item.h"
2019-04-07 14:02:41 +00:00
#include "presence.h"
#include "shared/enums.h"
#include "shared/message.h"
#include "shared/icons.h"
#include "shared/global.h"
2019-04-07 14:02:41 +00:00
#include <QMap>
#include <QIcon>
2019-04-09 22:01:25 +00:00
#include <deque>
2019-04-05 15:12:59 +00:00
namespace Models {
2020-04-17 23:17:47 +00:00
class Account;
2019-04-05 15:12:59 +00:00
class Contact : public Item
{
Q_OBJECT
public:
typedef std::deque<Shared::Message> Messages;
2020-04-17 23:17:47 +00:00
Contact(const Account* acc, const QString& p_jid, const QMap<QString, QVariant> &data, Item *parentItem = 0);
Contact(const Contact& other);
2019-04-05 15:12:59 +00:00
~Contact();
QString getJid() const;
Shared::Availability getAvailability() const;
Shared::SubscriptionState getState() const;
Shared::Avatar getAvatarState() const;
QString getAvatarPath() const;
QIcon getStatusIcon(bool big = false) const;
2019-04-05 15:12:59 +00:00
int columnCount() const override;
QVariant data(int column) const override;
void update(const QString& field, const QVariant& value);
2019-04-07 14:02:41 +00:00
void addPresence(const QString& name, const QMap<QString, QVariant>& data);
void removePresence(const QString& name);
QString getContactName() const;
QString getStatus() const;
2019-04-07 14:02:41 +00:00
void addMessage(const Shared::Message& data);
void changeMessage(const QString& id, const QMap<QString, QVariant>& data);
2019-04-09 22:01:25 +00:00
unsigned int getMessagesCount() const;
void dropMessages();
2019-04-10 20:53:42 +00:00
void getMessages(Messages& container) const;
2019-09-24 09:21:29 +00:00
QString getDisplayedName() const override;
2019-04-09 22:01:25 +00:00
Contact* copy() const;
2019-04-07 14:02:41 +00:00
protected:
void _removeChild(int index) override;
2020-04-18 12:02:01 +00:00
void _appendChild(Models::Item * child) override;
2019-09-24 09:21:29 +00:00
bool columnInvolvedInDisplay(int col) override;
2020-04-17 23:17:47 +00:00
const Account* getParentAccount() const override;
2019-04-07 14:02:41 +00:00
2019-04-09 15:04:08 +00:00
protected slots:
void refresh();
void toOfflineState() override;
2019-04-09 15:04:08 +00:00
2019-04-07 14:02:41 +00:00
protected:
void setAvailability(Shared::Availability p_state);
void setAvailability(unsigned int p_state);
void setState(Shared::SubscriptionState p_state);
void setState(unsigned int p_state);
void setAvatarState(Shared::Avatar p_state);
void setAvatarState(unsigned int p_state);
void setAvatarPath(const QString& path);
2019-04-07 14:02:41 +00:00
void setJid(const QString p_jid);
void setStatus(const QString& p_state);
2019-04-07 14:02:41 +00:00
2019-04-05 15:12:59 +00:00
private:
QString jid;
Shared::Availability availability;
Shared::SubscriptionState state;
Shared::Avatar avatarState;
2019-04-07 14:02:41 +00:00
QMap<QString, Presence*> presences;
2019-04-09 22:01:25 +00:00
Messages messages;
unsigned int childMessages;
QString status;
QString avatarPath;
2020-04-17 23:17:47 +00:00
const Account* account;
2019-04-05 15:12:59 +00:00
};
}
#endif // MODELS_CONTACT_H