squawk/ui/conversation.h

75 lines
1.9 KiB
C++

/*
* <one line to give the program's name and a brief idea of what it does.>
* 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 CONVERSATION_H
#define CONVERSATION_H
#include <QWidget>
#include <QScopedPointer>
#include "../global.h"
#include "models/contact.h"
namespace Ui
{
class Conversation;
}
class KeyEnterReceiver : public QObject
{
Q_OBJECT
public:
KeyEnterReceiver(QObject* parent = 0);
protected:
bool ownEvent;
bool eventFilter(QObject* obj, QEvent* event);
signals:
void enterPressed();
};
class Conversation : public QWidget
{
Q_OBJECT
public:
Conversation(Models::Contact* p_contact, QWidget* parent = 0);
~Conversation();
QString getJid() const;
QString getAccount() const;
void addMessage(const QMap<QString, QString>& data);
signals:
void sendMessage(const QString& message);
protected:
void setState(Shared::Availability state);
void setStatus(const QString& status);
void setName(const QString& name);
protected slots:
void onContactChanged(Models::Item* item, int row, int col);
void onEnterPressed();
private:
Models::Contact* contact;
QScopedPointer<Ui::Conversation> m_ui;
KeyEnterReceiver ker;
};
#endif // CONVERSATION_H