forked from blue/squawk
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef ELEMENT_H
|
|
#define ELEMENT_H
|
|
|
|
#include "item.h"
|
|
#include "messagefeed.h"
|
|
|
|
namespace Models {
|
|
|
|
class Element : public Item
|
|
{
|
|
Q_OBJECT
|
|
protected:
|
|
Element(Type p_type, const Account* acc, const QString& p_jid, const QMap<QString, QVariant> &data, Item *parentItem = 0);
|
|
~Element();
|
|
|
|
public:
|
|
QString getJid() const;
|
|
Shared::Avatar getAvatarState() const;
|
|
QString getAvatarPath() const;
|
|
|
|
virtual void update(const QString& field, const QVariant& value);
|
|
|
|
void addMessage(const Shared::Message& data);
|
|
void changeMessage(const QString& id, const QMap<QString, QVariant>& data);
|
|
unsigned int getMessagesCount() const;
|
|
void responseArchive(const std::list<Shared::Message> list, bool last);
|
|
bool isRoom() const;
|
|
|
|
signals:
|
|
void requestArchive(const QString& before);
|
|
|
|
protected:
|
|
void setJid(const QString& p_jid);
|
|
void setAvatarState(Shared::Avatar p_state);
|
|
void setAvatarState(unsigned int p_state);
|
|
void setAvatarPath(const QString& path);
|
|
bool columnInvolvedInDisplay(int col) override;
|
|
const Account* getParentAccount() const override;
|
|
|
|
protected:
|
|
QString jid;
|
|
QString avatarPath;
|
|
Shared::Avatar avatarState;
|
|
|
|
const Account* account;
|
|
|
|
public:
|
|
MessageFeed* feed;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // ELEMENT_H
|