2014-07-07 00:19:45 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
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
|
|
|
|
|
2015-01-26 06:19:25 +08:00
|
|
|
#include <QSet>
|
2014-11-03 09:51:56 +08:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QElapsedTimer>
|
2015-01-26 06:19:25 +08:00
|
|
|
|
2016-06-23 06:47:44 +08:00
|
|
|
#include "genericchatform.h"
|
|
|
|
#include "src/core/corestructs.h"
|
|
|
|
#include "src/widget/tool/screenshotgrabber.h"
|
|
|
|
|
2015-04-20 05:12:44 +08:00
|
|
|
class Friend;
|
2014-09-06 03:27:26 +08:00
|
|
|
class FileTransferInstance;
|
2014-09-24 23:28:38 +08:00
|
|
|
class QPixmap;
|
2015-01-25 11:57:20 +08:00
|
|
|
class CallConfirmWidget;
|
|
|
|
class QHideEvent;
|
|
|
|
class QMoveEvent;
|
2015-02-08 00:18:25 +08:00
|
|
|
class OfflineMsgEngine;
|
2015-10-08 06:52:05 +08:00
|
|
|
class CoreAV;
|
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:
|
2016-04-19 17:56:21 +08:00
|
|
|
explicit ChatForm(Friend* chatFriend);
|
2014-06-25 04:11:11 +08:00
|
|
|
~ChatForm();
|
|
|
|
void setStatusMessage(QString newMessage);
|
2014-11-16 22:48:18 +08:00
|
|
|
void loadHistory(QDateTime since, 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
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
signals:
|
2015-04-20 05:12:44 +08:00
|
|
|
void sendFile(uint32_t friendId, QString, QString, long long);
|
2014-11-18 10:15:44 +08:00
|
|
|
void aliasChanged(const QString& alias);
|
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);
|
2015-09-28 01:59:26 +08:00
|
|
|
void onAvInvite(uint32_t FriendId, bool video);
|
|
|
|
void onAvStart(uint32_t FriendId, bool video);
|
|
|
|
void onAvEnd(uint32_t FriendId);
|
2015-04-20 05:12:44 +08:00
|
|
|
void onAvatarChange(uint32_t FriendId, const QPixmap& pic);
|
|
|
|
void onAvatarRemoved(uint32_t FriendId);
|
2014-06-26 06:30:24 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private slots:
|
|
|
|
void onSendTriggered();
|
2015-01-04 19:20:36 +08:00
|
|
|
void onTextEditChanged();
|
2014-06-26 04:43:28 +08:00
|
|
|
void onAttachClicked();
|
2014-06-27 06:42:45 +08:00
|
|
|
void onCallTriggered();
|
2014-06-30 10:39:43 +08:00
|
|
|
void onVideoCallTriggered();
|
2014-06-27 08:08:33 +08:00
|
|
|
void onAnswerCallTriggered();
|
|
|
|
void onHangupCallTriggered();
|
2014-06-27 09:06:56 +08:00
|
|
|
void onCancelCallTriggered();
|
2015-01-25 11:57:20 +08:00
|
|
|
void onRejectCallTriggered();
|
2015-10-08 06:52:05 +08:00
|
|
|
void onMicMuteToggle();
|
|
|
|
void onVolMuteToggle();
|
2015-04-20 05:12:44 +08:00
|
|
|
void onFileSendFailed(uint32_t FriendId, const QString &fname);
|
2016-07-03 16:15:17 +08:00
|
|
|
void onFriendStatusChanged(uint32_t friendId, Status status);
|
2014-10-11 00:22:57 +08:00
|
|
|
void onLoadHistory();
|
2015-01-26 06:19:25 +08:00
|
|
|
void onUpdateTime();
|
|
|
|
void onEnableCallButtons();
|
2015-03-25 09:48:26 +08:00
|
|
|
void onScreenshotClicked();
|
2015-03-10 01:32:30 +08:00
|
|
|
void onScreenshotTaken(const QPixmap &pixmap);
|
2015-03-25 21:43:40 +08:00
|
|
|
void doScreenshot();
|
2015-07-23 02:50:39 +08:00
|
|
|
void onMessageInserted();
|
2016-04-24 12:15:54 +08:00
|
|
|
void onCopyStatusMessage();
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
private:
|
|
|
|
void retranslateUi();
|
2015-10-08 06:52:05 +08:00
|
|
|
void showOutgoingCall(bool video);
|
2016-07-07 17:55:53 +08:00
|
|
|
void startCounter();
|
|
|
|
void stopCounter();
|
|
|
|
QString secondsToDHMS(quint32 duration);
|
|
|
|
void enableCallButtons();
|
|
|
|
void disableCallButtons();
|
|
|
|
void SendMessageStr(QString msg);
|
2015-06-06 03:37:01 +08:00
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
protected:
|
2015-08-19 01:40:11 +08:00
|
|
|
virtual GenericNetCamView* createNetcam() final override;
|
2014-09-26 00:03:25 +08:00
|
|
|
// drag & drop
|
2015-06-09 02:08:24 +08:00
|
|
|
virtual void dragEnterEvent(QDragEnterEvent* ev) final override;
|
|
|
|
virtual void dropEvent(QDropEvent* ev) final override;
|
|
|
|
virtual void hideEvent(QHideEvent* event) final override;
|
|
|
|
virtual void showEvent(QShowEvent* event) final override;
|
2014-09-26 00:03:25 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private:
|
2015-10-08 06:52:05 +08:00
|
|
|
CoreAV* coreav;
|
2014-06-25 04:11:11 +08:00
|
|
|
Friend* f;
|
2014-09-10 00:28:07 +08:00
|
|
|
CroppingLabel *statusMessageLabel;
|
2016-04-24 12:15:54 +08:00
|
|
|
QMenu statusMessageMenu;
|
2014-11-03 09:51:56 +08:00
|
|
|
QLabel *callDuration;
|
2015-01-26 06:19:25 +08:00
|
|
|
QTimer *callDurationTimer;
|
2015-03-10 01:32:30 +08:00
|
|
|
QTimer typingTimer;
|
2015-01-26 06:19:25 +08:00
|
|
|
QTimer *disableCallButtonsTimer;
|
2014-11-03 09:51:56 +08:00
|
|
|
QElapsedTimer timeElapsed;
|
2015-02-08 00:18:25 +08:00
|
|
|
OfflineMsgEngine *offlineEngine;
|
2015-06-06 03:37:01 +08:00
|
|
|
QAction* loadHistoryAction;
|
2016-04-24 12:15:54 +08:00
|
|
|
QAction* copyStatusAction;
|
2014-09-06 03:27:26 +08:00
|
|
|
|
|
|
|
QHash<uint, FileTransferInstance*> ftransWidgets;
|
2016-07-18 21:11:17 +08:00
|
|
|
QMap<uint32_t, Status> oldStatus;
|
2015-01-25 11:57:20 +08:00
|
|
|
CallConfirmWidget *callConfirm;
|
2015-02-11 12:43:25 +08:00
|
|
|
bool isTyping;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHATFORM_H
|