2014-07-07 00:19:45 +08:00
|
|
|
/*
|
2018-04-13 04:02:28 +08:00
|
|
|
Copyright © 2014-2018 by The qTox Project Contributors
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-07-07 00:19:45 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-07-07 00:19:45 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-07-07 00:19:45 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-07-07 00:19:45 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-07-07 00:19:45 +08:00
|
|
|
*/
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#ifndef CHATFORM_H
|
|
|
|
#define CHATFORM_H
|
|
|
|
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <QElapsedTimer>
|
2014-11-03 09:51:56 +08:00
|
|
|
#include <QLabel>
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <QSet>
|
2014-11-03 09:51:56 +08:00
|
|
|
#include <QTimer>
|
2015-01-26 06:19:25 +08:00
|
|
|
|
2016-06-23 06:47:44 +08:00
|
|
|
#include "genericchatform.h"
|
2017-10-27 20:02:43 +08:00
|
|
|
#include "src/core/core.h"
|
2018-04-24 07:51:26 +08:00
|
|
|
#include "src/persistence/history.h"
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/widget/tool/screenshotgrabber.h"
|
2016-06-23 06:47:44 +08:00
|
|
|
|
2017-11-16 22:22:04 +08:00
|
|
|
class CallConfirmWidget;
|
2014-09-06 03:27:26 +08:00
|
|
|
class FileTransferInstance;
|
2017-11-16 22:22:04 +08:00
|
|
|
class Friend;
|
|
|
|
class History;
|
|
|
|
class OfflineMsgEngine;
|
2014-09-24 23:28:38 +08:00
|
|
|
class QPixmap;
|
2015-01-25 11:57:20 +08:00
|
|
|
class QHideEvent;
|
|
|
|
class QMoveEvent;
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
class ChatForm : public GenericChatForm
|
2014-06-25 04:11:11 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-11-16 22:22:04 +08:00
|
|
|
ChatForm(Friend* chatFriend, History* history);
|
2014-06-25 04:11:11 +08:00
|
|
|
~ChatForm();
|
2016-08-24 08:13:26 +08:00
|
|
|
void setStatusMessage(const QString& newMessage);
|
2018-04-24 07:51:26 +08:00
|
|
|
void loadHistoryByDateRange(const QDateTime& since, bool processUndelivered = false);
|
|
|
|
void loadHistoryDefaultNum(bool processUndelivered = false);
|
2014-11-10 19:30:56 +08:00
|
|
|
|
2014-11-09 20:32:19 +08:00
|
|
|
void dischargeReceipt(int receipt);
|
2015-01-04 19:20:36 +08:00
|
|
|
void setFriendTyping(bool isTyping);
|
2015-02-08 00:18:25 +08:00
|
|
|
OfflineMsgEngine* getOfflineMsgEngine();
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2015-06-17 02:25:19 +08:00
|
|
|
virtual void show(ContentLayout* contentLayout) final override;
|
2015-01-25 11:57:20 +08:00
|
|
|
|
2016-07-31 22:17:11 +08:00
|
|
|
static const QString ACTION_PREFIX;
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
signals:
|
2018-01-09 01:04:35 +08:00
|
|
|
|
2017-05-05 02:17:54 +08:00
|
|
|
void incomingNotification(uint32_t friendId);
|
2017-06-13 12:27:29 +08:00
|
|
|
void outgoingNotification();
|
2018-01-09 01:04:35 +08:00
|
|
|
void stopNotification();
|
2018-04-05 16:23:39 +08:00
|
|
|
void endCallNotification();
|
2017-05-05 03:42:39 +08:00
|
|
|
void rejectCall(uint32_t friendId);
|
|
|
|
void acceptCall(uint32_t friendId);
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-06-26 06:30:24 +08:00
|
|
|
public slots:
|
2014-06-27 01:45:47 +08:00
|
|
|
void startFileSend(ToxFile file);
|
|
|
|
void onFileRecvRequest(ToxFile file);
|
2016-08-29 15:07:23 +08:00
|
|
|
void onAvInvite(uint32_t friendId, bool video);
|
|
|
|
void onAvStart(uint32_t friendId, bool video);
|
2017-07-01 21:17:43 +08:00
|
|
|
void onAvEnd(uint32_t friendId, bool error);
|
2017-10-27 09:55:49 +08:00
|
|
|
void onAvatarChanged(const ToxPk &friendPk, const QPixmap& pic);
|
2018-07-11 16:31:22 +08:00
|
|
|
void onFileNameChanged(const ToxPk& friendPk);
|
2014-06-26 06:30:24 +08:00
|
|
|
|
2018-02-12 05:09:13 +08:00
|
|
|
protected slots:
|
2018-06-25 02:11:20 +08:00
|
|
|
void searchInBegin(const QString& phrase, const ParameterSearch& parameter) override;
|
|
|
|
void onSearchUp(const QString& phrase, const ParameterSearch& parameter) override;
|
|
|
|
void onSearchDown(const QString& phrase, const ParameterSearch& parameter) override;
|
2018-02-12 05:09:13 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private slots:
|
2016-08-29 15:07:23 +08:00
|
|
|
void clearChatArea(bool notInForm) override final;
|
2017-11-17 05:14:51 +08:00
|
|
|
void onSendTriggered() override;
|
|
|
|
void onAttachClicked() override;
|
|
|
|
void onScreenshotClicked() override;
|
2016-08-29 15:07:23 +08:00
|
|
|
|
2015-01-04 19:20:36 +08:00
|
|
|
void onTextEditChanged();
|
2014-06-27 06:42:45 +08:00
|
|
|
void onCallTriggered();
|
2014-06-30 10:39:43 +08:00
|
|
|
void onVideoCallTriggered();
|
2017-09-13 04:29:02 +08:00
|
|
|
void onAnswerCallTriggered(bool video);
|
2015-01-25 11:57:20 +08:00
|
|
|
void onRejectCallTriggered();
|
2015-10-08 06:52:05 +08:00
|
|
|
void onMicMuteToggle();
|
|
|
|
void onVolMuteToggle();
|
2016-08-29 15:07:23 +08:00
|
|
|
|
2017-02-26 19:52:45 +08:00
|
|
|
void onFileSendFailed(uint32_t friendId, const QString& fname);
|
2016-08-29 15:07:23 +08:00
|
|
|
void onFriendStatusChanged(quint32 friendId, Status status);
|
|
|
|
void onFriendTypingChanged(quint32 friendId, bool isTyping);
|
|
|
|
void onFriendNameChanged(const QString& name);
|
2017-02-26 19:52:45 +08:00
|
|
|
void onFriendMessageReceived(quint32 friendId, const QString& message, bool isAction);
|
2016-08-29 15:07:23 +08:00
|
|
|
void onStatusMessage(const QString& message);
|
|
|
|
void onReceiptReceived(quint32 friendId, int receipt);
|
2014-10-11 00:22:57 +08:00
|
|
|
void onLoadHistory();
|
2015-01-26 06:19:25 +08:00
|
|
|
void onUpdateTime();
|
2017-09-16 06:27:45 +08:00
|
|
|
void sendImage(const QPixmap& pixmap);
|
2015-03-25 21:43:40 +08:00
|
|
|
void doScreenshot();
|
2016-04-24 12:15:54 +08:00
|
|
|
void onCopyStatusMessage();
|
2017-06-25 16:20:03 +08:00
|
|
|
void onExportChat();
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
private:
|
2018-06-30 18:10:46 +08:00
|
|
|
struct MessageMetadata
|
|
|
|
{
|
2018-04-24 07:51:26 +08:00
|
|
|
const bool isSelf;
|
|
|
|
const bool needSending;
|
|
|
|
const bool isAction;
|
|
|
|
const qint64 id;
|
|
|
|
const ToxPk authorPk;
|
|
|
|
const QDateTime msgDateTime;
|
2018-06-30 18:10:46 +08:00
|
|
|
MessageMetadata(bool isSelf, bool needSending, bool isAction, qint64 id, ToxPk authorPk,
|
|
|
|
QDateTime msgDateTime)
|
|
|
|
: isSelf{isSelf}
|
|
|
|
, needSending{needSending}
|
|
|
|
, isAction{isAction}
|
|
|
|
, id{id}
|
|
|
|
, authorPk{authorPk}
|
|
|
|
, msgDateTime{msgDateTime}
|
|
|
|
{}
|
2018-04-24 07:51:26 +08:00
|
|
|
};
|
|
|
|
void handleLoadedMessages(QList<History::HistMessage> newHistMsgs, bool processUndelivered);
|
2018-09-30 05:07:17 +08:00
|
|
|
QDate addDateLineIfNeeded(QList<ChatLine::Ptr>& msgs, QDate const& lastDate,
|
2018-06-30 18:10:46 +08:00
|
|
|
History::HistMessage const& newMessage, MessageMetadata const& metadata);
|
2018-04-24 07:51:26 +08:00
|
|
|
MessageMetadata getMessageMetadata(History::HistMessage const& histMessage);
|
2018-06-30 18:10:46 +08:00
|
|
|
ChatMessage::Ptr chatMessageFromHistMessage(History::HistMessage const& histMessage,
|
|
|
|
MessageMetadata const& metadata);
|
2018-04-24 07:51:26 +08:00
|
|
|
void sendLoadedMessage(ChatMessage::Ptr chatMsg, MessageMetadata const& metadata);
|
|
|
|
void insertChatlines(QList<ChatLine::Ptr> chatLines);
|
2016-08-29 15:07:23 +08:00
|
|
|
void updateMuteMicButton();
|
|
|
|
void updateMuteVolButton();
|
2015-06-06 03:37:01 +08:00
|
|
|
void retranslateUi();
|
2015-10-08 06:52:05 +08:00
|
|
|
void showOutgoingCall(bool video);
|
2016-07-07 17:55:53 +08:00
|
|
|
void startCounter();
|
2017-07-01 21:17:43 +08:00
|
|
|
void stopCounter(bool error = false);
|
2016-08-29 15:07:23 +08:00
|
|
|
void updateCallButtons();
|
2016-07-07 17:55:53 +08:00
|
|
|
void SendMessageStr(QString msg);
|
2018-06-25 02:11:20 +08:00
|
|
|
bool loadHistory(const QString& phrase, const ParameterSearch& parameter);
|
2015-06-06 03:37:01 +08:00
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
protected:
|
2016-08-29 15:07:23 +08:00
|
|
|
GenericNetCamView* createNetcam() final override;
|
|
|
|
void insertChatMessage(ChatMessage::Ptr msg) final override;
|
|
|
|
void dragEnterEvent(QDragEnterEvent* ev) final override;
|
|
|
|
void dropEvent(QDropEvent* ev) final override;
|
|
|
|
void hideEvent(QHideEvent* event) final override;
|
|
|
|
void showEvent(QShowEvent* event) final override;
|
2014-09-26 00:03:25 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private:
|
|
|
|
Friend* f;
|
2017-02-26 19:52:45 +08:00
|
|
|
CroppingLabel* statusMessageLabel;
|
2016-04-24 12:15:54 +08:00
|
|
|
QMenu statusMessageMenu;
|
2017-02-26 19:52:45 +08:00
|
|
|
QLabel* callDuration;
|
|
|
|
QTimer* callDurationTimer;
|
2015-03-10 01:32:30 +08:00
|
|
|
QTimer typingTimer;
|
2014-11-03 09:51:56 +08:00
|
|
|
QElapsedTimer timeElapsed;
|
2017-02-26 19:52:45 +08:00
|
|
|
OfflineMsgEngine* offlineEngine;
|
2015-06-06 03:37:01 +08:00
|
|
|
QAction* loadHistoryAction;
|
2016-04-24 12:15:54 +08:00
|
|
|
QAction* copyStatusAction;
|
2017-06-25 16:20:03 +08:00
|
|
|
QAction* exportChatAction;
|
2014-09-06 03:27:26 +08:00
|
|
|
|
2017-11-16 22:22:04 +08:00
|
|
|
History* history;
|
2014-09-06 03:27:26 +08:00
|
|
|
QHash<uint, FileTransferInstance*> ftransWidgets;
|
2015-02-11 12:43:25 +08:00
|
|
|
bool isTyping;
|
2017-11-18 07:06:46 +08:00
|
|
|
bool lastCallIsVideo;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHATFORM_H
|