mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
441 lines
14 KiB
C++
441 lines
14 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#include "chatform.h"
|
|
#include "friend.h"
|
|
#include "widget/friendwidget.h"
|
|
#include "filetransferinstance.h"
|
|
#include "widget/widget.h"
|
|
#include <QScrollBar>
|
|
#include <QFileDialog>
|
|
#include <QMessageBox>
|
|
|
|
ChatForm::ChatForm(Friend* chatFriend)
|
|
: f(chatFriend)
|
|
{
|
|
nameLabel->setText(f->getName());
|
|
avatarLabel->setPixmap(QPixmap(":/img/contact_dark.png"));
|
|
|
|
statusMessageLabel = new QLabel();
|
|
netcam = new NetCamView();
|
|
|
|
headTextLayout->addWidget(statusMessageLabel);
|
|
headTextLayout->addStretch();
|
|
|
|
connect(Widget::getInstance()->getCore(), &Core::fileSendStarted, this, &ChatForm::startFileSend);
|
|
connect(Widget::getInstance()->getCore(), &Core::videoFrameReceived, netcam, &NetCamView::updateDisplay);
|
|
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);
|
|
connect(micButton, SIGNAL(clicked()), this, SLOT(onMicMuteToggle()));
|
|
connect(newChatForm, SIGNAL(onFileTranfertInterract(QString,QString)), this, SLOT(onFileTansBtnClicked(QString,QString)));
|
|
}
|
|
|
|
ChatForm::~ChatForm()
|
|
{
|
|
delete netcam;
|
|
}
|
|
|
|
void ChatForm::setStatusMessage(QString newMessage)
|
|
{
|
|
statusMessageLabel->setText(newMessage);
|
|
statusMessageLabel->setToolTip(newMessage); // for overlength messsages
|
|
}
|
|
|
|
void ChatForm::onSendTriggered()
|
|
{
|
|
QString msg = msgEdit->toPlainText();
|
|
if (msg.isEmpty())
|
|
return;
|
|
QString name = Widget::getInstance()->getUsername();
|
|
msgEdit->clear();
|
|
addMessage(name, msg);
|
|
emit sendMessage(f->friendId, msg);
|
|
}
|
|
|
|
void ChatForm::onAttachClicked()
|
|
{
|
|
QString path = QFileDialog::getOpenFileName(0,tr("Send a file"));
|
|
if (path.isEmpty())
|
|
return;
|
|
|
|
QFile file(path);
|
|
if (!file.exists() || !file.open(QIODevice::ReadOnly))
|
|
return;
|
|
if (file.isSequential())
|
|
{
|
|
QMessageBox::critical(0, "Bad Idea", "You're trying to send a special (sequential) file, that's not going to work!");
|
|
return;
|
|
file.close();
|
|
}
|
|
long long filesize = file.size();
|
|
file.close();
|
|
QFileInfo fi(path);
|
|
|
|
emit sendFile(f->friendId, fi.fileName(), path, filesize);
|
|
}
|
|
|
|
void ChatForm::startFileSend(ToxFile file)
|
|
{
|
|
if (file.friendId != f->friendId)
|
|
return;
|
|
|
|
FileTransferInstance* fileTrans = new FileTransferInstance(file);
|
|
ftransWidgets.insert(fileTrans->getId(), fileTrans);
|
|
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferInfo, fileTrans, &FileTransferInstance::onFileTransferInfo);
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferCancelled, fileTrans, &FileTransferInstance::onFileTransferCancelled);
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferFinished, fileTrans, &FileTransferInstance::onFileTransferFinished);
|
|
connect(fileTrans, SIGNAL(stateUpdated()), this, SLOT(updateChatContent()));
|
|
|
|
messages.append(new FileTransferAction(fileTrans, Widget::getInstance()->getUsername(), QTime::currentTime().toString("hh:mm")));
|
|
updateChatContent();
|
|
}
|
|
|
|
void ChatForm::onFileRecvRequest(ToxFile file)
|
|
{
|
|
if (file.friendId != f->friendId)
|
|
return;
|
|
|
|
FileTransferInstance* fileTrans = new FileTransferInstance(file);
|
|
ftransWidgets.insert(fileTrans->getId(), fileTrans);
|
|
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferInfo, fileTrans, &FileTransferInstance::onFileTransferInfo);
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferCancelled, fileTrans, &FileTransferInstance::onFileTransferCancelled);
|
|
connect(Widget::getInstance()->getCore(), &Core::fileTransferFinished, fileTrans, &FileTransferInstance::onFileTransferFinished);
|
|
connect(fileTrans, SIGNAL(stateUpdated()), this, SLOT(updateChatContent()));
|
|
|
|
Widget* w = Widget::getInstance();
|
|
if (!w->isFriendWidgetCurActiveWidget(f)|| w->getIsWindowMinimized() || !w->isActiveWindow())
|
|
{
|
|
w->newMessageAlert();
|
|
f->hasNewEvents=true;
|
|
f->widget->updateStatusLight();
|
|
}
|
|
|
|
messages.append(new FileTransferAction(fileTrans, f->getName(), QTime::currentTime().toString("hh:mm")));
|
|
updateChatContent();
|
|
}
|
|
|
|
void ChatForm::onAvInvite(int FriendId, int CallId, bool video)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
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()));
|
|
}
|
|
|
|
Widget* w = Widget::getInstance();
|
|
if (!w->isFriendWidgetCurActiveWidget(f)|| w->getIsWindowMinimized() || !w->isActiveWindow())
|
|
{
|
|
w->newMessageAlert();
|
|
f->hasNewEvents=true;
|
|
f->widget->updateStatusLight();
|
|
}
|
|
}
|
|
|
|
void ChatForm::onAvStart(int FriendId, int CallId, bool video)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = true;
|
|
callId = CallId;
|
|
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()));
|
|
netcam->show();
|
|
}
|
|
else
|
|
{
|
|
callButton->setObjectName("red");
|
|
callButton->style()->polish(callButton);
|
|
videoButton->setObjectName("grey");
|
|
videoButton->style()->polish(videoButton);
|
|
connect(callButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
|
|
}
|
|
}
|
|
|
|
void ChatForm::onAvCancel(int FriendId, int)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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()));
|
|
netcam->hide();
|
|
}
|
|
|
|
void ChatForm::onAvEnd(int FriendId, int)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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()));
|
|
netcam->hide();
|
|
}
|
|
|
|
void ChatForm::onAvRinging(int FriendId, int CallId, bool video)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
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(onCancelCallTriggered()));
|
|
}
|
|
else
|
|
{
|
|
callButton->setObjectName("yellow");
|
|
callButton->style()->polish(callButton);
|
|
videoButton->setObjectName("grey");
|
|
videoButton->style()->polish(videoButton);
|
|
connect(callButton, SIGNAL(clicked()), this, SLOT(onCancelCallTriggered()));
|
|
}
|
|
}
|
|
|
|
void ChatForm::onAvStarting(int FriendId, int, bool video)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
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()));
|
|
netcam->show();
|
|
}
|
|
else
|
|
{
|
|
callButton->setObjectName("red");
|
|
callButton->style()->polish(callButton);
|
|
videoButton->setObjectName("grey");
|
|
videoButton->style()->polish(videoButton);
|
|
connect(callButton, SIGNAL(clicked()), this, SLOT(onHangupCallTriggered()));
|
|
}
|
|
}
|
|
|
|
void ChatForm::onAvEnding(int FriendId, int)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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::onAvRequestTimeout(int FriendId, int)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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::onAvPeerTimeout(int FriendId, int)
|
|
{
|
|
if (FriendId != f->friendId)
|
|
return;
|
|
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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::onAvMediaChange(int, int, bool video)
|
|
{
|
|
if (video)
|
|
{
|
|
netcam->show();
|
|
}
|
|
else
|
|
{
|
|
netcam->hide();
|
|
}
|
|
}
|
|
|
|
void ChatForm::onAnswerCallTriggered()
|
|
{
|
|
audioInputFlag = true;
|
|
emit answerCall(callId);
|
|
}
|
|
|
|
void ChatForm::onHangupCallTriggered()
|
|
{
|
|
audioInputFlag = false;
|
|
emit hangupCall(callId);
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
}
|
|
|
|
void ChatForm::onCallTriggered()
|
|
{
|
|
audioInputFlag = true;
|
|
callButton->disconnect();
|
|
videoButton->disconnect();
|
|
emit startCall(f->friendId);
|
|
}
|
|
|
|
void ChatForm::onVideoCallTriggered()
|
|
{
|
|
audioInputFlag = true;
|
|
callButton->disconnect();
|
|
videoButton->disconnect();
|
|
emit startVideoCall(f->friendId, true);
|
|
}
|
|
|
|
void ChatForm::onCancelCallTriggered()
|
|
{
|
|
audioInputFlag = false;
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
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();
|
|
emit cancelCall(callId, f->friendId);
|
|
}
|
|
|
|
void ChatForm::onMicMuteToggle()
|
|
{
|
|
if (audioInputFlag == true)
|
|
{
|
|
emit micMuteToggle(callId);
|
|
if (micButton->objectName() == "red")
|
|
{
|
|
micButton->setObjectName("green");
|
|
micButton->style()->polish(micButton);
|
|
}
|
|
else
|
|
{
|
|
micButton->setObjectName("red");
|
|
micButton->style()->polish(micButton);
|
|
}
|
|
}
|
|
}
|
|
|
|
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;
|
|
|
|
// QMessageBox::information(nullptr, message, message);
|
|
}
|