2019-04-07 14:02:41 +00:00
|
|
|
/*
|
2019-09-01 19:46:12 +00:00
|
|
|
* Squawk messenger.
|
2019-04-07 14:02:41 +00:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MODELS_PRESENCE_H
|
|
|
|
#define MODELS_PRESENCE_H
|
|
|
|
|
2019-09-01 19:46:12 +00:00
|
|
|
#include "abstractparticipant.h"
|
2020-04-03 22:28:15 +00:00
|
|
|
#include "shared/enums.h"
|
|
|
|
#include "shared/message.h"
|
|
|
|
|
2019-04-07 14:02:41 +00:00
|
|
|
#include <QDateTime>
|
2019-04-09 22:01:25 +00:00
|
|
|
#include <QIcon>
|
2019-04-07 14:02:41 +00:00
|
|
|
|
|
|
|
namespace Models {
|
|
|
|
|
2019-09-01 19:46:12 +00:00
|
|
|
class Presence : public Models::AbstractParticipant
|
2019-04-07 14:02:41 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-04-11 14:58:59 +00:00
|
|
|
typedef std::deque<Shared::Message> Messages;
|
2019-04-07 14:02:41 +00:00
|
|
|
explicit Presence(const QMap<QString, QVariant> &data, Item *parentItem = 0);
|
2019-09-28 14:30:16 +00:00
|
|
|
Presence(const Presence& other);
|
2019-04-07 14:02:41 +00:00
|
|
|
~Presence();
|
2019-09-02 11:17:28 +00:00
|
|
|
|
|
|
|
int columnCount() const override;
|
2019-09-01 19:46:12 +00:00
|
|
|
QVariant data(int column) const override;
|
2019-04-07 14:02:41 +00:00
|
|
|
|
2019-09-01 19:46:12 +00:00
|
|
|
QIcon getStatusIcon(bool big = false) const override;
|
2019-04-07 14:02:41 +00:00
|
|
|
|
2019-04-09 22:01:25 +00:00
|
|
|
unsigned int getMessagesCount() const;
|
|
|
|
void dropMessages();
|
2019-04-11 14:58:59 +00:00
|
|
|
void addMessage(const Shared::Message& data);
|
2020-02-08 11:44:15 +00:00
|
|
|
bool changeMessage(const QString& id, const QMap<QString, QVariant>& data);
|
2019-04-10 20:53:42 +00:00
|
|
|
|
|
|
|
void getMessages(Messages& container) const;
|
2019-04-07 14:02:41 +00:00
|
|
|
|
|
|
|
private:
|
2019-04-09 22:01:25 +00:00
|
|
|
Messages messages;
|
2019-04-07 14:02:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MODELS_PRESENCE_H
|