1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/form/chatform.h

176 lines
6.0 KiB
C
Raw Normal View History

2014-07-07 00:19:45 +08:00
/*
Copyright © 2014-2018 by The qTox Project Contributors
2014-07-07 00:19:45 +08:00
This file is part of qTox, a Qt-based graphical interface for Tox.
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.
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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2014-07-07 00:19:45 +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
#include <QElapsedTimer>
2014-11-03 09:51:56 +08:00
#include <QLabel>
#include <QSet>
2014-11-03 09:51:56 +08:00
#include <QTimer>
2015-01-26 06:19:25 +08:00
#include "genericchatform.h"
#include "src/core/core.h"
#include "src/persistence/history.h"
#include "src/widget/tool/screenshotgrabber.h"
class CallConfirmWidget;
2014-09-06 03:27:26 +08:00
class FileTransferInstance;
class Friend;
class History;
class OfflineMsgEngine;
2014-09-24 23:28:38 +08:00
class QPixmap;
class QHideEvent;
class QMoveEvent;
2014-06-25 04:11:11 +08:00
class ChatForm : public GenericChatForm
2014-06-25 04:11:11 +08:00
{
Q_OBJECT
public:
ChatForm(Friend* chatFriend, History* history);
2014-06-25 04:11:11 +08:00
~ChatForm();
void setStatusMessage(const QString& newMessage);
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);
void setFriendTyping(bool isTyping);
OfflineMsgEngine* getOfflineMsgEngine();
2014-06-25 04:11:11 +08:00
virtual void show(ContentLayout* contentLayout) final override;
static const QString ACTION_PREFIX;
2014-06-25 04:11:11 +08:00
signals:
void incomingNotification(uint32_t friendId);
void outgoingNotification();
void stopNotification();
void endCallNotification();
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:
void startFileSend(ToxFile file);
void onFileRecvRequest(ToxFile file);
void onAvInvite(uint32_t friendId, bool video);
void onAvStart(uint32_t friendId, bool video);
void onAvEnd(uint32_t friendId, bool error);
void onAvatarChanged(const ToxPk &friendPk, const QPixmap& pic);
void onFileNameChanged(const ToxPk& friendPk);
2014-06-26 06:30:24 +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;
2014-06-25 04:11:11 +08:00
private slots:
void clearChatArea(bool notInForm) override final;
void onSendTriggered() override;
void onAttachClicked() override;
void onScreenshotClicked() override;
void onTextEditChanged();
void onCallTriggered();
void onVideoCallTriggered();
void onAnswerCallTriggered(bool video);
void onRejectCallTriggered();
void onMicMuteToggle();
void onVolMuteToggle();
void onFileSendFailed(uint32_t friendId, const QString& fname);
void onFriendStatusChanged(quint32 friendId, Status status);
void onFriendTypingChanged(quint32 friendId, bool isTyping);
void onFriendNameChanged(const QString& name);
void onFriendMessageReceived(quint32 friendId, const QString& message, bool isAction);
void onStatusMessage(const QString& message);
void onReceiptReceived(quint32 friendId, int receipt);
void onLoadHistory();
2015-01-26 06:19:25 +08:00
void onUpdateTime();
void sendImage(const QPixmap& pixmap);
void doScreenshot();
void onCopyStatusMessage();
void onExportChat();
2014-06-25 04:11:11 +08:00
private:
2018-06-30 18:10:46 +08:00
struct MessageMetadata
{
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}
{}
};
void handleLoadedMessages(QList<History::HistMessage> newHistMsgs, bool processUndelivered);
2018-06-30 18:10:46 +08:00
QDate addDateLineIfNeeded(QList<ChatLine::Ptr> msgs, QDate const& lastDate,
History::HistMessage const& newMessage, MessageMetadata const& metadata);
MessageMetadata getMessageMetadata(History::HistMessage const& histMessage);
2018-06-30 18:10:46 +08:00
ChatMessage::Ptr chatMessageFromHistMessage(History::HistMessage const& histMessage,
MessageMetadata const& metadata);
void sendLoadedMessage(ChatMessage::Ptr chatMsg, MessageMetadata const& metadata);
void insertChatlines(QList<ChatLine::Ptr> chatLines);
void updateMuteMicButton();
void updateMuteVolButton();
void retranslateUi();
void showOutgoingCall(bool video);
2016-07-07 17:55:53 +08:00
void startCounter();
void stopCounter(bool error = false);
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);
2014-09-26 00:03:25 +08:00
protected:
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;
CroppingLabel* statusMessageLabel;
QMenu statusMessageMenu;
QLabel* callDuration;
QTimer* callDurationTimer;
QTimer typingTimer;
2014-11-03 09:51:56 +08:00
QElapsedTimer timeElapsed;
OfflineMsgEngine* offlineEngine;
QAction* loadHistoryAction;
QAction* copyStatusAction;
QAction* exportChatAction;
2014-09-06 03:27:26 +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;
bool lastCallIsVideo;
2014-06-25 04:11:11 +08:00
};
#endif // CHATFORM_H