2019-04-08 21:40:49 +00:00
|
|
|
/*
|
2019-08-14 14:54:46 +00:00
|
|
|
* Squawk messenger.
|
2019-04-08 21:40:49 +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 CONVERSATION_H
|
|
|
|
#define CONVERSATION_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QScopedPointer>
|
2019-08-23 09:51:33 +00:00
|
|
|
#include "../../global.h"
|
2019-09-19 14:31:27 +00:00
|
|
|
#include "../../order.h"
|
|
|
|
#include "../utils/messageline.h"
|
2019-09-17 22:05:32 +00:00
|
|
|
#include "../utils/resizer.h"
|
2019-09-19 14:31:27 +00:00
|
|
|
#include "../utils/flowlayout.h"
|
|
|
|
#include "../utils/badge.h"
|
2019-04-08 21:40:49 +00:00
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class Conversation;
|
|
|
|
}
|
|
|
|
|
2019-04-09 22:01:25 +00:00
|
|
|
class KeyEnterReceiver : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-04-10 15:22:52 +00:00
|
|
|
public:
|
|
|
|
KeyEnterReceiver(QObject* parent = 0);
|
2019-04-09 22:01:25 +00:00
|
|
|
protected:
|
2019-04-10 15:22:52 +00:00
|
|
|
bool ownEvent;
|
2019-04-09 22:01:25 +00:00
|
|
|
bool eventFilter(QObject* obj, QEvent* event);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void enterPressed();
|
|
|
|
};
|
|
|
|
|
2019-09-10 14:33:39 +00:00
|
|
|
class VisibilityCatcher : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
VisibilityCatcher(QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject* obj, QEvent* event) override;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void hidden();
|
|
|
|
void shown();
|
|
|
|
};
|
|
|
|
|
2019-04-08 21:40:49 +00:00
|
|
|
class Conversation : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-04-09 15:04:08 +00:00
|
|
|
public:
|
2019-08-29 14:19:35 +00:00
|
|
|
Conversation(bool muc, const QString& mJid, const QString mRes, const QString pJid, const QString pRes, const QString& acc, QWidget* parent = 0);
|
2019-04-09 15:04:08 +00:00
|
|
|
~Conversation();
|
|
|
|
|
|
|
|
QString getJid() const;
|
|
|
|
QString getAccount() const;
|
2019-04-12 15:22:10 +00:00
|
|
|
QString getPalResource() const;
|
2019-08-28 11:40:55 +00:00
|
|
|
virtual void addMessage(const Shared::Message& data);
|
2019-04-09 15:04:08 +00:00
|
|
|
|
2019-04-12 15:22:10 +00:00
|
|
|
void setPalResource(const QString& res);
|
2019-05-15 17:36:37 +00:00
|
|
|
void responseArchive(const std::list<Shared::Message> list);
|
|
|
|
void showEvent(QShowEvent * event) override;
|
2019-09-12 20:54:44 +00:00
|
|
|
void responseLocalFile(const QString& messageId, const QString& path);
|
2019-09-18 13:27:47 +00:00
|
|
|
void downloadError(const QString& messageId, const QString& error);
|
2019-09-12 20:54:44 +00:00
|
|
|
void responseDownloadProgress(const QString& messageId, qreal progress);
|
2019-04-12 15:22:10 +00:00
|
|
|
|
2019-04-10 20:53:42 +00:00
|
|
|
signals:
|
2019-04-11 14:58:59 +00:00
|
|
|
void sendMessage(const Shared::Message& message);
|
2019-05-15 17:36:37 +00:00
|
|
|
void requestArchive(const QString& before);
|
2019-06-18 15:08:03 +00:00
|
|
|
void shown();
|
2019-09-12 20:54:44 +00:00
|
|
|
void requestLocalFile(const QString& messageId, const QString& url);
|
|
|
|
void downloadFile(const QString& messageId, const QString& url);
|
2019-04-10 20:53:42 +00:00
|
|
|
|
2019-04-09 15:04:08 +00:00
|
|
|
protected:
|
2019-08-28 11:40:55 +00:00
|
|
|
virtual void setName(const QString& name);
|
2019-06-19 14:15:20 +00:00
|
|
|
void applyVisualEffects();
|
2019-08-28 11:40:55 +00:00
|
|
|
virtual void handleSendMessage(const QString& text) = 0;
|
2019-09-03 20:28:58 +00:00
|
|
|
void setStatus(const QString& status);
|
2019-09-19 14:31:27 +00:00
|
|
|
void addAttachedFile(const QString& path);
|
|
|
|
void removeAttachedFile(Badge* badge);
|
|
|
|
void clearAttachedFiles();
|
2019-04-09 15:04:08 +00:00
|
|
|
|
|
|
|
protected slots:
|
2019-04-09 22:01:25 +00:00
|
|
|
void onEnterPressed();
|
2019-04-13 20:38:20 +00:00
|
|
|
void onMessagesResize(int amount);
|
2019-04-14 20:37:02 +00:00
|
|
|
void onSliderValueChanged(int value);
|
2019-06-21 19:33:38 +00:00
|
|
|
void onAttach();
|
|
|
|
void onFileSelected();
|
2019-09-10 14:33:39 +00:00
|
|
|
void onScrollResize();
|
2019-09-19 14:31:27 +00:00
|
|
|
void onBadgeClose();
|
2019-04-09 15:04:08 +00:00
|
|
|
|
2019-08-29 14:19:35 +00:00
|
|
|
public:
|
|
|
|
const bool isMuc;
|
|
|
|
|
2019-08-23 09:51:33 +00:00
|
|
|
protected:
|
2019-04-13 20:38:20 +00:00
|
|
|
enum Scroll {
|
|
|
|
nothing,
|
|
|
|
keep,
|
|
|
|
down
|
|
|
|
};
|
2019-08-23 09:51:33 +00:00
|
|
|
QString myJid;
|
|
|
|
QString myResource;
|
|
|
|
QString palJid;
|
|
|
|
QString activePalResource;
|
|
|
|
QString account;
|
2019-04-11 14:58:59 +00:00
|
|
|
MessageLine* line;
|
2019-04-08 21:40:49 +00:00
|
|
|
QScopedPointer<Ui::Conversation> m_ui;
|
2019-04-09 22:01:25 +00:00
|
|
|
KeyEnterReceiver ker;
|
2019-09-10 14:33:39 +00:00
|
|
|
Resizer res;
|
|
|
|
VisibilityCatcher vis;
|
2019-04-12 15:22:10 +00:00
|
|
|
QString thread;
|
2019-08-23 09:51:33 +00:00
|
|
|
QLabel* statusIcon;
|
|
|
|
QLabel* statusLabel;
|
2019-09-19 14:31:27 +00:00
|
|
|
FlowLayout* filesLayout;
|
|
|
|
W::Order<Badge*, Badge::Comparator> filesToAttach;
|
2019-04-13 20:38:20 +00:00
|
|
|
Scroll scroll;
|
2019-04-14 20:37:02 +00:00
|
|
|
bool manualSliderChange;
|
2019-05-15 17:36:37 +00:00
|
|
|
bool requestingHistory;
|
|
|
|
bool everShown;
|
2019-04-08 21:40:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONVERSATION_H
|