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

143 lines
4.4 KiB
C
Raw Normal View History

2014-07-07 00:19:45 +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.
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 "genericchatform.h"
#include "src/core/corestructs.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
2014-06-25 04:11:11 +08:00
class 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;
class CallConfirmWidget;
class QHideEvent;
class QMoveEvent;
class OfflineMsgEngine;
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);
~ChatForm();
void setStatusMessage(QString newMessage);
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);
void setFriendTyping(bool isTyping);
OfflineMsgEngine* getOfflineMsgEngine();
2014-06-25 04:11:11 +08:00
virtual void show(Ui::MainWindow &ui) final override;
2014-06-25 04:11:11 +08:00
signals:
void sendFile(uint32_t friendId, QString, QString, long long);
void startCall(uint32_t FriendId, bool video);
void answerCall(int callId);
void hangupCall(int callId);
void cancelCall(int callId, uint32_t FriendId);
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);
void aliasChanged(const QString& alias);
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, int CallId, bool video);
void onAvStart(uint32_t FriendId, int CallId, bool video);
void onAvCancel(uint32_t FriendId, int CallId);
void onAvEnd(uint32_t FriendId, int CallId);
void onAvRinging(uint32_t FriendId, int CallId, bool video);
void onAvStarting(uint32_t FriendId, int CallId, bool video);
void onAvEnding(uint32_t FriendId, int CallId);
void onAvRequestTimeout(uint32_t FriendId, int CallId);
void onAvPeerTimeout(uint32_t FriendId, int CallId);
void onAvMediaChange(uint32_t FriendId, int CallId, bool video);
void onAvCallFailed(uint32_t FriendId);
void onAvRejected(uint32_t FriendId, int CallId);
2014-08-19 23:20:20 +08:00
void onMicMuteToggle();
2014-10-28 20:50:30 +08:00
void onVolMuteToggle();
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();
void onTextEditChanged();
2014-06-26 04:43:28 +08:00
void onAttachClicked();
void onCallTriggered();
void onVideoCallTriggered();
void onAnswerCallTriggered();
void onHangupCallTriggered();
2014-06-27 09:06:56 +08:00
void onCancelCallTriggered();
void onRejectCallTriggered();
void onFileSendFailed(uint32_t FriendId, const QString &fname);
void onLoadHistory();
2015-01-26 06:19:25 +08:00
void onUpdateTime();
void onEnableCallButtons();
void onScreenshotClicked();
void onScreenshotTaken(const QPixmap &pixmap);
void doScreenshot();
void onSplitterMoved(int pos, int index);
void onMessageInserted();
void onShowMessagesClicked();
2014-06-25 04:11:11 +08:00
private:
void retranslateUi();
2014-09-26 00:03:25 +08:00
protected:
2015-05-10 04:35:58 +08:00
void showNetcam();
void hideNetcam();
2014-09-26 00:03:25 +08:00
// drag & drop
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:
Friend* f;
2014-09-10 00:28:07 +08:00
CroppingLabel *statusMessageLabel;
NetCamView* netcam;
int callId;
2014-11-03 09:51:56 +08:00
QLabel *callDuration;
2015-01-26 06:19:25 +08:00
QTimer *callDurationTimer;
QTimer typingTimer;
2015-01-26 06:19:25 +08:00
QTimer *disableCallButtonsTimer;
2014-11-03 09:51:56 +08:00
QElapsedTimer timeElapsed;
OfflineMsgEngine *offlineEngine;
QAction* loadHistoryAction;
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);
CallConfirmWidget *callConfirm;
void enableCallButtons();
2015-02-11 12:43:25 +08:00
bool isTyping;
2015-04-13 02:24:33 +08:00
void SendMessageStr(QString msg);
2014-06-25 04:11:11 +08:00
};
#endif // CHATFORM_H