squawk/ui/widgets/conversation.h

157 lines
4.5 KiB
C
Raw Normal View History

2019-04-08 21:40:49 +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>
#include <QMap>
#include <QMimeData>
#include <QFileInfo>
#include "shared/message.h"
#include "order.h"
#include "ui/models/account.h"
2020-04-11 20:00:15 +00:00
#include "ui/models/roster.h"
#include "ui/utils/messageline.h"
#include "ui/utils/resizer.h"
#include "ui/utils/flowlayout.h"
#include "ui/utils/badge.h"
#include "shared/icons.h"
#include "shared/utils.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();
};
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:
Conversation(bool muc, Models::Account* acc, const QString pJid, const QString pRes, 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;
2020-04-11 20:00:15 +00:00
Models::Roster::ElId getId() 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);
void responseArchive(const std::list<Shared::Message> list);
void showEvent(QShowEvent * event) override;
void responseLocalFile(const QString& messageId, const QString& path);
2019-11-12 13:38:01 +00:00
void fileError(const QString& messageId, const QString& error);
void responseFileProgress(const QString& messageId, qreal progress);
2019-12-23 06:28:23 +00:00
virtual void setAvatar(const QString& path);
void changeMessage(const QString& id, const QMap<QString, QVariant>& data);
2020-04-11 20:00:15 +00:00
void setFeedFrames(bool top, bool right, bool bottom, bool left);
virtual void appendMessageWithUpload(const Shared::Message& data, const QString& path);
2019-04-12 15:22:10 +00:00
2019-04-10 20:53:42 +00:00
signals:
void sendMessage(const Shared::Message& message);
2019-09-23 12:09:15 +00:00
void sendMessage(const Shared::Message& message, const QString& path);
void requestArchive(const QString& before);
void shown();
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();
2020-04-15 13:48:49 +00:00
virtual Shared::Message createMessage() const;
void setStatus(const QString& status);
void addAttachedFile(const QString& path);
void removeAttachedFile(Badge* badge);
void clearAttachedFiles();
void dragEnterEvent(QDragEnterEvent* event) override;
void dragLeaveEvent(QDragLeaveEvent* event) override;
void dropEvent(QDropEvent* event) override;
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);
void onSliderValueChanged(int value);
void onAttach();
void onFileSelected();
void onScrollResize();
void onBadgeClose();
void onClearButton();
void onTextEditDocSizeChanged(const QSizeF& size);
2020-08-07 23:33:03 +00:00
void onAccountChanged(Models::Item* item, int row, int col);
2019-04-09 15:04:08 +00:00
public:
const bool isMuc;
protected:
2019-04-13 20:38:20 +00:00
enum Scroll {
nothing,
keep,
down
};
Models::Account* account;
QString palJid;
QString activePalResource;
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;
Resizer scrollResizeCatcher;
VisibilityCatcher vis;
2019-04-12 15:22:10 +00:00
QString thread;
QLabel* statusIcon;
QLabel* statusLabel;
FlowLayout* filesLayout;
QWidget* overlay;
W::Order<Badge*, Badge::Comparator> filesToAttach;
2019-04-13 20:38:20 +00:00
Scroll scroll;
bool manualSliderChange;
bool requestingHistory;
bool everShown;
bool tsb; //transient scroll bars
2019-04-08 21:40:49 +00:00
};
#endif // CONVERSATION_H