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

864 lines
26 KiB
C++
Raw Normal View History

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-09-11 21:44:34 +08:00
#include <QDebug>
#include <QScrollBar>
#include <QFileDialog>
#include <QMessageBox>
#include <QPushButton>
2014-09-26 00:03:25 +08:00
#include <QMimeData>
#include <QFileInfo>
#include <QDragEnterEvent>
#include <QBitmap>
2014-06-25 04:11:11 +08:00
#include "chatform.h"
#include "src/historykeeper.h"
#include "src/widget/form/loadhistorydialog.h"
2014-10-08 12:26:25 +08:00
#include "src/friend.h"
#include "src/widget/friendwidget.h"
#include "src/filetransferinstance.h"
#include "src/widget/tool/chatactions/filetransferaction.h"
#include "src/widget/netcamview.h"
#include "src/widget/chatareawidget.h"
#include "src/widget/tool/chattextedit.h"
#include "src/core.h"
#include "src/widget/widget.h"
#include "src/widget/maskablepixmapwidget.h"
#include "src/widget/croppinglabel.h"
#include "src/misc/style.h"
2014-10-18 12:53:29 +08:00
#include "src/misc/settings.h"
2014-11-09 20:32:19 +08:00
#include "src/misc/cstring.h"
2014-06-25 04:11:11 +08:00
ChatForm::ChatForm(Friend* chatFriend)
: f(chatFriend)
2014-10-10 03:20:06 +08:00
, audioInputFlag(false)
2014-10-28 20:50:30 +08:00
, audioOutputFlag(false)
2014-10-10 03:20:06 +08:00
, callId(0)
2014-06-25 04:11:11 +08:00
{
2014-11-06 23:26:22 +08:00
nameLabel->setText(f->getDisplayedName());
avatar->setPixmap(QPixmap(":/img/contact_dark.png"), Qt::transparent);
2014-06-27 07:49:48 +08:00
2014-09-10 00:28:07 +08:00
statusMessageLabel = new CroppingLabel();
2014-10-10 03:20:06 +08:00
statusMessageLabel->setObjectName("statusLabel");
statusMessageLabel->setFont(Style::getFont(Style::Medium));
statusMessageLabel->setMinimumHeight(Style::getFont(Style::Medium).pixelSize());
netcam = new NetCamView();
2014-11-04 01:01:02 +08:00
timer = nullptr;
headTextLayout->addWidget(statusMessageLabel);
2014-06-25 04:11:11 +08:00
headTextLayout->addStretch();
2014-11-03 09:51:56 +08:00
callDuration = new QLabel();
headTextLayout->addWidget(callDuration, 1, Qt::AlignCenter);
callDuration->hide();
2014-06-25 04:11:11 +08:00
menu.addAction(tr("Load History..."), this, SLOT(onLoadHistory()));
2014-09-11 21:44:34 +08:00
connect(Core::getInstance(), &Core::fileSendStarted, this, &ChatForm::startFileSend);
connect(sendButton, &QPushButton::clicked, this, &ChatForm::onSendTriggered);
connect(fileButton, &QPushButton::clicked, this, &ChatForm::onAttachClicked);
connect(callButton, &QPushButton::clicked, this, &ChatForm::onCallTriggered);
connect(videoButton, &QPushButton::clicked, this, &ChatForm::onVideoCallTriggered);
connect(msgEdit, &ChatTextEdit::enterPressed, this, &ChatForm::onSendTriggered);
2014-08-19 23:20:20 +08:00
connect(micButton, SIGNAL(clicked()), this, SLOT(onMicMuteToggle()));
2014-10-28 20:50:30 +08:00
connect(volButton, SIGNAL(clicked()), this, SLOT(onVolMuteToggle()));
2014-09-11 21:44:34 +08:00
connect(chatWidget, &ChatAreaWidget::onFileTranfertInterract, this, &ChatForm::onFileTansBtnClicked);
2014-09-24 00:52:06 +08:00
connect(Core::getInstance(), &Core::fileSendFailed, this, &ChatForm::onFileSendFailed);
2014-09-26 00:03:25 +08:00
setAcceptDrops(true);
if (Settings::getInstance().getEnableLogging())
loadHistory(QDateTime::currentDateTime().addDays(-7));
2014-06-25 04:11:11 +08:00
}
ChatForm::~ChatForm()
{
delete netcam;
2014-06-25 04:11:11 +08:00
}
void ChatForm::setStatusMessage(QString newMessage)
{
statusMessageLabel->setText(newMessage);
statusMessageLabel->setToolTip(newMessage); // for overlength messsages
2014-06-25 04:11:11 +08:00
}
void ChatForm::onSendTriggered()
{
QString msg = msgEdit->toPlainText();
if (msg.isEmpty())
return;
2014-11-09 20:32:19 +08:00
bool isAction = msg.startsWith("/me ");
if (isAction)
msg = msg = msg.right(msg.length() - 4);
QList<CString> splittedMsg = Core::splitMessage(msg);
2014-10-14 13:49:27 +08:00
QDateTime timestamp = QDateTime::currentDateTime();
2014-11-09 20:32:19 +08:00
for (CString& c_msg : splittedMsg)
{
2014-11-09 20:32:19 +08:00
QString qt_msg = CString::toString(c_msg.data(), c_msg.size());
QString qt_msg_hist = qt_msg;
if (isAction)
qt_msg_hist = "/me " + qt_msg;
int id = HistoryKeeper::getInstance()->addChatEntry(f->getToxID().publicKey, qt_msg_hist,
Core::getInstance()->getSelfId().publicKey, timestamp);
qDebug() << "db id:" << id;
MessageActionPtr ma = addSelfMessage(msg, isAction, timestamp, false);
2014-11-10 00:07:15 +08:00
2014-11-09 20:32:19 +08:00
int rec;
if (isAction)
rec = Core::getInstance()->sendAction(f->getFriendID(), msg);
else
rec = Core::getInstance()->sendMessage(f->getFriendID(), msg);
qDebug() << "receipt:" << rec;
registerReceipt(rec, id, ma);
}
2014-11-09 20:32:19 +08:00
2014-06-25 04:11:11 +08:00
msgEdit->clear();
}
2014-06-26 04:43:28 +08:00
void ChatForm::onAttachClicked()
{
2014-10-17 20:29:48 +08:00
QStringList paths = QFileDialog::getOpenFileNames(0,tr("Send a file"));
if (paths.isEmpty())
2014-06-26 04:43:28 +08:00
return;
2014-10-17 20:29:48 +08:00
for (QString path : paths)
{
2014-10-17 20:29:48 +08:00
QFile file(path);
if (!file.exists() || !file.open(QIODevice::ReadOnly))
continue;
if (file.isSequential())
{
2014-10-30 00:25:47 +08:00
QMessageBox::critical(0, tr("Bad Idea"), tr("You're trying to send a special (sequential) file, that's not going to work!"));
2014-10-17 20:29:48 +08:00
file.close();
continue;
}
long long filesize = file.size();
file.close();
2014-10-17 20:29:48 +08:00
QFileInfo fi(path);
2014-06-26 04:43:28 +08:00
2014-11-06 23:26:22 +08:00
emit sendFile(f->getFriendID(), fi.fileName(), path, filesize);
2014-10-17 20:29:48 +08:00
}
2014-06-26 04:43:28 +08:00
}
void ChatForm::startFileSend(ToxFile file)
2014-06-26 06:30:24 +08:00
{
2014-11-06 23:26:22 +08:00
if (file.friendId != f->getFriendID())
return;
2014-09-06 03:27:26 +08:00
FileTransferInstance* fileTrans = new FileTransferInstance(file);
ftransWidgets.insert(fileTrans->getId(), fileTrans);
2014-09-11 21:44:34 +08:00
connect(Core::getInstance(), &Core::fileTransferInfo, fileTrans, &FileTransferInstance::onFileTransferInfo);
connect(Core::getInstance(), &Core::fileTransferCancelled, fileTrans, &FileTransferInstance::onFileTransferCancelled);
connect(Core::getInstance(), &Core::fileTransferFinished, fileTrans, &FileTransferInstance::onFileTransferFinished);
connect(Core::getInstance(), SIGNAL(fileTransferAccepted(ToxFile)), fileTrans, SLOT(onFileTransferAccepted(ToxFile)));
connect(Core::getInstance(), SIGNAL(fileTransferPaused(int,int,ToxFile::FileDirection)), fileTrans, SLOT(onFileTransferPaused(int,int,ToxFile::FileDirection)));
connect(Core::getInstance(), SIGNAL(fileTransferRemotePausedUnpaused(ToxFile,bool)), fileTrans, SLOT(onFileTransferRemotePausedUnpaused(ToxFile,bool)));
connect(Core::getInstance(), SIGNAL(fileTransferBrokenUnbroken(ToxFile, bool)), fileTrans, SLOT(onFileTransferBrokenUnbroken(ToxFile, bool)));
2014-09-06 03:27:26 +08:00
QString name;
if (!previousId.isMine())
{
Core* core = Core::getInstance();
name = core->getUsername();
previousId = core->getSelfId();
}
2014-09-07 19:42:06 +08:00
chatWidget->insertMessage(ChatActionPtr(new FileTransferAction(fileTrans, getElidedName(name),
QTime::currentTime().toString("hh:mm"), true)));
}
void ChatForm::onFileRecvRequest(ToxFile file)
{
2014-11-06 23:26:22 +08:00
if (file.friendId != f->getFriendID())
return;
2014-09-06 03:27:26 +08:00
FileTransferInstance* fileTrans = new FileTransferInstance(file);
ftransWidgets.insert(fileTrans->getId(), fileTrans);
2014-09-11 21:44:34 +08:00
connect(Core::getInstance(), &Core::fileTransferInfo, fileTrans, &FileTransferInstance::onFileTransferInfo);
connect(Core::getInstance(), &Core::fileTransferCancelled, fileTrans, &FileTransferInstance::onFileTransferCancelled);
connect(Core::getInstance(), &Core::fileTransferFinished, fileTrans, &FileTransferInstance::onFileTransferFinished);
connect(Core::getInstance(), SIGNAL(fileTransferAccepted(ToxFile)), fileTrans, SLOT(onFileTransferAccepted(ToxFile)));
connect(Core::getInstance(), SIGNAL(fileTransferPaused(int,int,ToxFile::FileDirection)), fileTrans, SLOT(onFileTransferPaused(int,int,ToxFile::FileDirection)));
connect(Core::getInstance(), SIGNAL(fileTransferRemotePausedUnpaused(ToxFile,bool)), fileTrans, SLOT(onFileTransferRemotePausedUnpaused(ToxFile,bool)));
connect(Core::getInstance(), SIGNAL(fileTransferBrokenUnbroken(ToxFile, bool)), fileTrans, SLOT(onFileTransferBrokenUnbroken(ToxFile, bool)));
Widget* w = Widget::getInstance();
if (!w->isFriendWidgetCurActiveWidget(f)|| w->isMinimized() || !w->isActiveWindow())
{
w->newMessageAlert(f->getFriendWidget());
2014-11-06 23:26:22 +08:00
f->setEventFlag(true);
f->getFriendWidget()->updateStatusLight();
}
2014-09-06 03:27:26 +08:00
QString name;
ToxID friendId = f->getToxID();
if (friendId != previousId)
{
2014-11-06 23:26:22 +08:00
name = f->getDisplayedName();
previousId = friendId;
}
2014-09-07 19:42:06 +08:00
chatWidget->insertMessage(ChatActionPtr(new FileTransferAction(fileTrans, getElidedName(name),
QTime::currentTime().toString("hh:mm"), false)));
2014-10-18 12:53:29 +08:00
2014-11-06 23:26:22 +08:00
if (!Settings::getInstance().getAutoAcceptDir(Core::getInstance()->getFriendAddress(f->getFriendID())).isEmpty()
2014-11-06 05:59:29 +08:00
|| Settings::getInstance().getAutoSaveEnabled())
2014-10-18 12:53:29 +08:00
fileTrans->pressFromHtml("btnB");
2014-06-26 06:30:24 +08:00
}
void ChatForm::onAvInvite(int FriendId, int CallId, bool video)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvInvite";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
return;
callId = CallId;
callButton->disconnect();
videoButton->disconnect();
if (video)
{
callButton->setObjectName("grey");
callButton->style()->polish(callButton);
videoButton->setObjectName("yellow");
videoButton->style()->polish(videoButton);
connect(videoButton, SIGNAL(clicked()), this, SLOT(onAnswerCallTriggered()));
}
else
{
callButton->setObjectName("yellow");
callButton->style()->polish(callButton);
videoButton->setObjectName("grey");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onAnswerCallTriggered()));
}
2014-11-06 23:26:22 +08:00
addSystemInfoMessage(tr("%1 calling").arg(f->getDisplayedName()), "white", QDateTime::currentDateTime());
2014-07-01 03:14:51 +08:00
Widget* w = Widget::getInstance();
if (!w->isFriendWidgetCurActiveWidget(f)|| w->isMinimized() || !w->isActiveWindow())
2014-07-01 03:14:51 +08:00
{
w->newMessageAlert(f->getFriendWidget());
2014-11-06 23:26:22 +08:00
f->setEventFlag(true);
f->getFriendWidget()->updateStatusLight();
2014-07-01 03:14:51 +08:00
}
}
void ChatForm::onAvStart(int FriendId, int CallId, bool video)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvStart";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
return;
audioInputFlag = true;
2014-10-28 20:50:30 +08:00
audioOutputFlag = true;
callId = CallId;
callButton->disconnect();
videoButton->disconnect();
2014-11-03 09:51:56 +08:00
if (video)
{
callButton->setObjectName("grey");
callButton->style()->polish(callButton);
videoButton->setObjectName("red");
videoButton->style()->polish(videoButton);
connect(videoButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
2014-10-16 21:37:48 +08:00
2014-11-06 23:26:22 +08:00
netcam->show(Core::getInstance()->getVideoSourceFromCall(CallId), f->getDisplayedName());
}
else
{
callButton->setObjectName("red");
callButton->style()->polish(callButton);
videoButton->setObjectName("grey");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
}
2014-11-03 09:51:56 +08:00
startCounter();
}
void ChatForm::onAvCancel(int FriendId, int)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvCancel";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
callButton->setObjectName("green");
callButton->style()->polish(callButton);
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-10-16 21:37:48 +08:00
netcam->hide();
2014-11-06 23:26:22 +08:00
addSystemInfoMessage(tr("%1 stopped calling").arg(f->getDisplayedName()), "white", QDateTime::currentDateTime());
}
void ChatForm::onAvEnd(int FriendId, int)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvEnd";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
2014-06-28 13:14:38 +08:00
callButton->setObjectName("green");
callButton->style()->polish(callButton);
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-10-16 21:37:48 +08:00
netcam->hide();
2014-11-03 09:51:56 +08:00
stopCounter();
}
void ChatForm::onAvRinging(int FriendId, int CallId, bool video)
2014-11-03 09:51:56 +08:00
{
qDebug() << "onAvRinging";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-06-27 09:06:56 +08:00
return;
2014-06-27 09:06:56 +08:00
callId = CallId;
callButton->disconnect();
videoButton->disconnect();
if (video)
{
callButton->setObjectName("grey");
callButton->style()->polish(callButton);
videoButton->setObjectName("yellow");
videoButton->style()->polish(videoButton);
connect(videoButton, SIGNAL(clicked()), this, SLOT(onCancelCallTriggered()));
}
else
{
callButton->setObjectName("yellow");
callButton->style()->polish(callButton);
videoButton->setObjectName("grey");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onCancelCallTriggered()));
}
2014-11-06 23:26:22 +08:00
addSystemInfoMessage(tr("Calling to %1").arg(f->getDisplayedName()), "white", QDateTime::currentDateTime());
2014-06-27 09:06:56 +08:00
}
2014-10-16 21:37:48 +08:00
void ChatForm::onAvStarting(int FriendId, int CallId, bool video)
2014-06-27 09:06:56 +08:00
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvStarting";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-06-27 09:06:56 +08:00
return;
2014-06-27 09:06:56 +08:00
callButton->disconnect();
videoButton->disconnect();
if (video)
{
callButton->setObjectName("grey");
callButton->style()->polish(callButton);
videoButton->setObjectName("red");
videoButton->style()->polish(videoButton);
connect(videoButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
2014-10-16 21:37:48 +08:00
2014-11-06 23:26:22 +08:00
netcam->show(Core::getInstance()->getVideoSourceFromCall(CallId), f->getDisplayedName());
}
else
{
callButton->setObjectName("red");
callButton->style()->polish(callButton);
videoButton->setObjectName("grey");
videoButton->style()->polish(videoButton);
connect(callButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
}
2014-11-03 09:51:56 +08:00
startCounter();
2014-06-27 09:06:56 +08:00
}
void ChatForm::onAvEnding(int FriendId, int)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvEnding";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
2014-06-28 13:14:38 +08:00
callButton->setObjectName("green");
callButton->style()->polish(callButton);
callButton->disconnect();
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
videoButton->disconnect();
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-11-03 05:07:41 +08:00
netcam->hide();
2014-11-03 09:51:56 +08:00
stopCounter();
}
2014-06-27 09:06:56 +08:00
void ChatForm::onAvRequestTimeout(int FriendId, int)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvRequestTimeout";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-06-27 09:06:56 +08:00
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
2014-06-28 13:14:38 +08:00
callButton->setObjectName("green");
callButton->style()->polish(callButton);
2014-06-27 09:06:56 +08:00
callButton->disconnect();
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
videoButton->disconnect();
2014-06-27 09:06:56 +08:00
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-10-16 21:37:48 +08:00
netcam->hide();
2014-06-27 09:06:56 +08:00
}
2014-06-28 03:59:25 +08:00
void ChatForm::onAvPeerTimeout(int FriendId, int)
2014-11-02 19:47:42 +08:00
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvPeerTimeout";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-11-02 19:47:42 +08:00
return;
audioInputFlag = false;
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
callButton->setObjectName("green");
callButton->style()->polish(callButton);
callButton->disconnect();
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
videoButton->disconnect();
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
netcam->hide();
}
void ChatForm::onAvRejected(int FriendId, int)
2014-06-28 03:59:25 +08:00
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvRejected";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-06-28 03:59:25 +08:00
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
2014-06-28 13:14:38 +08:00
callButton->setObjectName("green");
callButton->style()->polish(callButton);
2014-06-28 03:59:25 +08:00
callButton->disconnect();
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
videoButton->disconnect();
2014-06-28 03:59:25 +08:00
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-11-03 05:07:41 +08:00
2014-11-05 20:14:39 +08:00
addSystemInfoMessage(tr("Call rejected"), "white", QDateTime::currentDateTime());
2014-10-16 21:37:48 +08:00
netcam->hide();
2014-06-28 03:59:25 +08:00
}
2014-10-16 21:37:48 +08:00
void ChatForm::onAvMediaChange(int FriendId, int CallId, bool video)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvMediaChange";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID() || CallId != callId)
return;
2014-10-16 21:37:48 +08:00
if (video)
{
2014-11-06 23:26:22 +08:00
netcam->show(Core::getInstance()->getVideoSourceFromCall(CallId), f->getDisplayedName());
}
else
{
netcam->hide();
}
}
void ChatForm::onAnswerCallTriggered()
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAnswerCallTriggered";
2014-08-30 00:16:16 +08:00
audioInputFlag = true;
2014-10-28 20:50:30 +08:00
audioOutputFlag = true;
emit answerCall(callId);
}
void ChatForm::onHangupCallTriggered()
2014-11-03 09:51:56 +08:00
{
qDebug() << "onHangupCallTriggered";
2014-08-30 00:16:16 +08:00
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
emit hangupCall(callId);
2014-08-20 01:15:56 +08:00
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
}
void ChatForm::onCallTriggered()
{
2014-11-03 09:51:56 +08:00
qDebug() << "onCallTriggered";
2014-10-28 20:50:30 +08:00
audioInputFlag = true;
audioOutputFlag = true;
callButton->disconnect();
videoButton->disconnect();
2014-11-06 23:26:22 +08:00
emit startCall(f->getFriendID());
2014-06-27 09:06:56 +08:00
}
void ChatForm::onVideoCallTriggered()
{
2014-11-03 09:51:56 +08:00
qDebug() << "onVideoCallTriggered";
2014-08-30 00:16:16 +08:00
audioInputFlag = true;
2014-10-28 20:50:30 +08:00
audioOutputFlag = true;
callButton->disconnect();
videoButton->disconnect();
2014-11-06 23:26:22 +08:00
emit startVideoCall(f->getFriendID(), true);
}
2014-10-25 17:29:25 +08:00
void ChatForm::onAvCallFailed(int FriendId)
{
2014-11-03 09:51:56 +08:00
qDebug() << "onAvCallFailed";
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-10-25 17:29:25 +08:00
return;
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
2014-10-25 17:29:25 +08:00
callButton->disconnect();
videoButton->disconnect();
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
}
2014-06-27 09:06:56 +08:00
void ChatForm::onCancelCallTriggered()
{
2014-11-03 09:51:56 +08:00
qDebug() << "onCancelCallTriggered";
2014-08-30 00:16:16 +08:00
audioInputFlag = false;
2014-10-28 20:50:30 +08:00
audioOutputFlag = false;
micButton->setObjectName("green");
micButton->style()->polish(micButton);
2014-10-28 20:50:30 +08:00
volButton->setObjectName("green");
volButton->style()->polish(volButton);
callButton->disconnect();
videoButton->disconnect();
2014-06-28 13:14:38 +08:00
callButton->setObjectName("green");
callButton->style()->polish(callButton);
2014-06-27 09:06:56 +08:00
callButton->disconnect();
videoButton->setObjectName("green");
videoButton->style()->polish(videoButton);
videoButton->disconnect();
2014-06-27 09:06:56 +08:00
connect(callButton, SIGNAL(clicked()), this, SLOT(onCallTriggered()));
connect(videoButton, SIGNAL(clicked()), this, SLOT(onVideoCallTriggered()));
2014-10-16 21:37:48 +08:00
netcam->hide();
2014-11-06 23:26:22 +08:00
emit cancelCall(callId, f->getFriendID());
}
2014-08-19 23:20:20 +08:00
void ChatForm::onMicMuteToggle()
{
2014-08-30 00:16:16 +08:00
if (audioInputFlag == true)
2014-08-19 23:20:20 +08:00
{
2014-08-30 00:16:16 +08:00
emit micMuteToggle(callId);
if (micButton->objectName() == "red")
micButton->setObjectName("green");
else
micButton->setObjectName("red");
2014-10-10 03:20:06 +08:00
Style::repolish(micButton);
2014-08-19 23:20:20 +08:00
}
}
2014-09-06 03:27:26 +08:00
2014-10-28 20:50:30 +08:00
void ChatForm::onVolMuteToggle()
{
if (audioOutputFlag == true)
{
emit volMuteToggle(callId);
if (volButton->objectName() == "red")
volButton->setObjectName("green");
else
volButton->setObjectName("red");
Style::repolish(volButton);
}
}
2014-09-06 03:27:26 +08:00
void ChatForm::onFileTansBtnClicked(QString widgetName, QString buttonName)
{
uint id = widgetName.toUInt();
auto it = ftransWidgets.find(id);
if (it != ftransWidgets.end())
it.value()->pressFromHtml(buttonName);
else
qDebug() << "no filetransferwidget: " << id;
}
2014-09-24 00:52:06 +08:00
void ChatForm::onFileSendFailed(int FriendId, const QString &fname)
{
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-09-24 00:52:06 +08:00
return;
2014-10-14 13:49:27 +08:00
addSystemInfoMessage("File: \"" + fname + "\" failed to send.", "red", QDateTime::currentDateTime());
2014-09-24 00:52:06 +08:00
}
2014-09-24 23:28:38 +08:00
void ChatForm::onAvatarChange(int FriendId, const QPixmap &pic)
{
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-09-24 23:28:38 +08:00
return;
avatar->setPixmap(pic);
2014-09-24 23:28:38 +08:00
}
2014-09-26 00:03:25 +08:00
void ChatForm::dragEnterEvent(QDragEnterEvent *ev)
{
if (ev->mimeData()->hasUrls())
ev->acceptProposedAction();
}
void ChatForm::dropEvent(QDropEvent *ev)
{
if (ev->mimeData()->hasUrls())
{
for (QUrl url : ev->mimeData()->urls())
{
QFileInfo info(url.path());
if (info.exists())
2014-11-06 23:26:22 +08:00
Core::getInstance()->sendFile(f->getFriendID(), info.fileName(), info.absoluteFilePath(), info.size());
2014-09-26 00:03:25 +08:00
}
}
}
2014-09-27 03:23:20 +08:00
void ChatForm::onAvatarRemoved(int FriendId)
{
2014-11-06 23:26:22 +08:00
if (FriendId != f->getFriendID())
2014-09-27 03:23:20 +08:00
return;
avatar->setPixmap(QPixmap(":/img/contact_dark.png"), Qt::transparent);
2014-09-27 03:23:20 +08:00
}
void ChatForm::loadHistory(QDateTime since)
{
QDateTime now = QDateTime::currentDateTime();
if (since > now)
return;
2014-10-11 01:32:10 +08:00
if (earliestMessage)
{
if (*earliestMessage < since)
2014-10-11 01:32:10 +08:00
return;
if (*earliestMessage < now)
2014-10-11 01:32:10 +08:00
{
now = *earliestMessage;
now = now.addMSecs(-1);
2014-10-11 01:32:10 +08:00
}
}
2014-10-11 01:32:10 +08:00
auto msgs = HistoryKeeper::getInstance()->getChatHistory(HistoryKeeper::ctSingle, f->getToxID().publicKey, since, now);
2014-10-11 01:32:10 +08:00
ToxID storedPrevId;
std::swap(storedPrevId, previousId);
QList<ChatActionPtr> historyMessages;
2014-10-11 01:32:10 +08:00
QDate lastDate(1,0,0);
for (const auto &it : msgs)
{
// Show the date every new day
QDateTime msgDateTime = it.timestamp.toLocalTime();
QDate msgDate = msgDateTime.date();
if (msgDate > lastDate)
{
lastDate = msgDate;
historyMessages.append(genSystemInfoAction(msgDate.toString(),"",QDateTime()));
}
// Show each messages
MessageActionPtr ca = genMessageActionAction(ToxID::fromString(it.sender), it.message, false, msgDateTime);
if (it.isSent)
ca->markAsSent();
historyMessages.append(ca);
}
std::swap(storedPrevId, previousId);
int savedSliderPos = chatWidget->verticalScrollBar()->maximum() - chatWidget->verticalScrollBar()->value();
2014-10-11 01:32:10 +08:00
if (earliestMessage != nullptr)
*earliestMessage = since;
2014-10-14 13:49:27 +08:00
chatWidget->insertMessagesTop(historyMessages);
2014-10-11 01:32:10 +08:00
savedSliderPos = chatWidget->verticalScrollBar()->maximum() - savedSliderPos;
chatWidget->verticalScrollBar()->setValue(savedSliderPos);
}
2014-10-11 01:32:10 +08:00
void ChatForm::onLoadHistory()
{
LoadHistoryDialog dlg;
if (dlg.exec())
{
QDateTime fromTime = dlg.getFromDate();
loadHistory(fromTime);
}
}
2014-11-03 09:51:56 +08:00
void ChatForm::startCounter()
{
2014-11-04 01:01:02 +08:00
if(!timer)
2014-11-03 09:51:56 +08:00
{
timer = new QTimer();
connect(timer, SIGNAL(timeout()), this, SLOT(updateTime()));
timer->start(1000);
timeElapsed.start();
callDuration->show();
}
}
void ChatForm::stopCounter()
{
if(timer)
{
2014-11-06 23:26:22 +08:00
addSystemInfoMessage(tr("Call with %1 ended. %2").arg(f->getDisplayedName(),
secondsToDHMS(timeElapsed.elapsed()/1000)),
2014-11-03 09:51:56 +08:00
"white", QDateTime::currentDateTime());
timer->stop();
callDuration->setText("");
2014-11-03 09:51:56 +08:00
callDuration->hide();
2014-11-04 01:01:02 +08:00
timer = nullptr;
2014-11-03 09:51:56 +08:00
delete timer;
}
}
void ChatForm::updateTime()
{
callDuration->setText(secondsToDHMS(timeElapsed.elapsed()/1000));
}
QString ChatForm::secondsToDHMS(quint32 duration)
{
QString res;
QString cD = tr("Call duration: ");
int seconds = (int) (duration % 60);
duration /= 60;
int minutes = (int) (duration % 60);
duration /= 60;
int hours = (int) (duration % 24);
int days = (int) (duration / 24);
if(minutes == 0)
return cD + res.sprintf("%02ds", seconds);
if(hours == 0 && days == 0)
return cD + res.sprintf("%02dm %02ds", minutes, seconds);
if (days == 0)
return cD + res.sprintf("%02dh %02dm %02ds", hours, minutes, seconds);
//I assume no one will ever have call longer than ~30days
return cD + res.sprintf("%dd%02dh %02dm %02ds", days, hours, minutes, seconds);
}
2014-11-09 20:32:19 +08:00
void ChatForm::registerReceipt(int receipt, int messageID, MessageActionPtr msg)
2014-11-09 20:32:19 +08:00
{
2014-11-10 18:23:02 +08:00
receipts[receipt] = messageID;
undeliveredMsgs[messageID] = msg;
2014-11-09 20:32:19 +08:00
qDebug() << "linking: rec" << receipt << "with" << messageID;
}
void ChatForm::dischargeReceipt(int receipt)
{
auto it = receipts.find(receipt);
if (it != receipts.end())
{
2014-11-10 18:23:02 +08:00
int mID = it.value();
auto msgIt = undeliveredMsgs.find(mID);
if (msgIt != undeliveredMsgs.end())
{
HistoryKeeper::getInstance()->markAsSent(mID);
2014-11-10 18:23:02 +08:00
msgIt.value()->markAsSent();
msgIt.value()->featureUpdate();
undeliveredMsgs.erase(msgIt);
}
2014-11-09 20:32:19 +08:00
receipts.erase(it);
qDebug() << "receipt" << receipt << "delivered";
}
}
void ChatForm::clearReciepts()
{
receipts.clear();
2014-11-10 18:23:02 +08:00
undeliveredMsgs.clear();
2014-11-09 20:32:19 +08:00
}