2014-07-07 00:19:45 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#ifndef CHATFORM_H
|
|
|
|
#define CHATFORM_H
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
#include "genericchatform.h"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/corestructs.h"
|
2014-11-03 09:51:56 +08:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QElapsedTimer>
|
2014-11-09 20:32:19 +08:00
|
|
|
#include <QSet>
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-07-01 04:52:03 +08:00
|
|
|
struct Friend;
|
2014-09-06 03:27:26 +08:00
|
|
|
class FileTransferInstance;
|
2014-09-11 21:44:34 +08:00
|
|
|
class NetCamView;
|
2014-09-24 23:28:38 +08:00
|
|
|
class QPixmap;
|
2015-01-25 11:57:20 +08:00
|
|
|
class CallConfirmWidget;
|
|
|
|
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:
|
|
|
|
ChatForm(Friend* chatFriend);
|
|
|
|
~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);
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2015-01-25 11:57:20 +08:00
|
|
|
virtual void show(Ui::MainWindow &ui);
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
signals:
|
2014-07-01 19:52:53 +08:00
|
|
|
void sendFile(int32_t friendId, QString, QString, long long);
|
2014-06-27 06:42:45 +08:00
|
|
|
void startCall(int friendId);
|
2014-06-30 10:39:43 +08:00
|
|
|
void startVideoCall(int friendId, bool video);
|
2014-06-27 08:08:33 +08:00
|
|
|
void answerCall(int callId);
|
|
|
|
void hangupCall(int callId);
|
2014-06-27 09:06:56 +08:00
|
|
|
void cancelCall(int callId, int friendId);
|
2015-01-25 11:57:20 +08:00
|
|
|
void rejectCall(int callId);
|
2014-08-19 23:20:20 +08:00
|
|
|
void micMuteToggle(int callId);
|
2014-10-28 20:50:30 +08:00
|
|
|
void volMuteToggle(int callId);
|
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-11-10 19:30:56 +08:00
|
|
|
void deliverOfflineMsgs();
|
2014-11-10 21:06:35 +08:00
|
|
|
void clearReciepts();
|
2014-06-27 01:45:47 +08:00
|
|
|
void startFileSend(ToxFile file);
|
|
|
|
void onFileRecvRequest(ToxFile file);
|
2014-06-30 10:39:43 +08:00
|
|
|
void onAvInvite(int FriendId, int CallId, bool video);
|
|
|
|
void onAvStart(int FriendId, int CallId, bool video);
|
2014-06-27 08:08:33 +08:00
|
|
|
void onAvCancel(int FriendId, int CallId);
|
|
|
|
void onAvEnd(int FriendId, int CallId);
|
2014-06-30 10:39:43 +08:00
|
|
|
void onAvRinging(int FriendId, int CallId, bool video);
|
|
|
|
void onAvStarting(int FriendId, int CallId, bool video);
|
2014-06-27 08:08:33 +08:00
|
|
|
void onAvEnding(int FriendId, int CallId);
|
2014-06-27 09:06:56 +08:00
|
|
|
void onAvRequestTimeout(int FriendId, int CallId);
|
2014-06-28 03:59:25 +08:00
|
|
|
void onAvPeerTimeout(int FriendId, int CallId);
|
2014-08-30 01:20:34 +08:00
|
|
|
void onAvMediaChange(int FriendId, int CallId, bool video);
|
2014-10-25 17:29:25 +08:00
|
|
|
void onAvCallFailed(int FriendId);
|
2014-11-02 19:47:42 +08:00
|
|
|
void onAvRejected(int FriendId, int CallId);
|
2014-08-19 23:20:20 +08:00
|
|
|
void onMicMuteToggle();
|
2014-10-28 20:50:30 +08:00
|
|
|
void onVolMuteToggle();
|
2014-09-24 23:28:38 +08:00
|
|
|
void onAvatarChange(int FriendId, const QPixmap& pic);
|
2014-09-27 03:23:20 +08:00
|
|
|
void onAvatarRemoved(int 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();
|
2014-09-06 03:27:26 +08:00
|
|
|
void onFileTansBtnClicked(QString widgetName, QString buttonName);
|
2014-09-24 00:52:06 +08:00
|
|
|
void onFileSendFailed(int FriendId, const QString &fname);
|
2014-10-11 00:22:57 +08:00
|
|
|
void onLoadHistory();
|
2014-11-03 09:51:56 +08:00
|
|
|
void updateTime();
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
protected:
|
|
|
|
// drag & drop
|
|
|
|
void dragEnterEvent(QDragEnterEvent* ev);
|
|
|
|
void dropEvent(QDropEvent* ev);
|
2015-01-25 11:57:20 +08:00
|
|
|
virtual void hideEvent(QHideEvent* event);
|
2014-11-10 19:30:56 +08:00
|
|
|
void registerReceipt(int receipt, int messageID, MessageActionPtr msg);
|
2014-09-26 00:03:25 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private:
|
|
|
|
Friend* f;
|
2014-09-10 00:28:07 +08:00
|
|
|
CroppingLabel *statusMessageLabel;
|
2014-06-30 10:39:43 +08:00
|
|
|
NetCamView* netcam;
|
2014-06-27 08:08:33 +08:00
|
|
|
int callId;
|
2014-11-03 09:51:56 +08:00
|
|
|
QLabel *callDuration;
|
|
|
|
QTimer *timer;
|
|
|
|
QElapsedTimer timeElapsed;
|
2015-01-04 19:20:36 +08:00
|
|
|
QLabel *isTypingLabel;
|
2015-01-20 15:27:48 +08:00
|
|
|
QTimer typingTimer;
|
2014-09-06 03:27:26 +08:00
|
|
|
|
|
|
|
QHash<uint, FileTransferInstance*> ftransWidgets;
|
2014-11-03 09:51:56 +08:00
|
|
|
void startCounter();
|
|
|
|
void stopCounter();
|
|
|
|
QString secondsToDHMS(quint32 duration);
|
2014-11-10 18:23:02 +08:00
|
|
|
QHash<int, int> receipts;
|
2014-11-10 19:30:56 +08:00
|
|
|
QMap<int, MessageActionPtr> undeliveredMsgs;
|
2015-01-25 11:57:20 +08:00
|
|
|
CallConfirmWidget *callConfirm;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHATFORM_H
|