2014-09-05 02:09:55 +08:00
|
|
|
/*
|
|
|
|
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 "genericchatform.h"
|
|
|
|
#include "ui_mainwindow.h"
|
2015-01-25 21:34:36 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
#include <QFileDialog>
|
2014-11-02 17:41:58 +08:00
|
|
|
#include <QHBoxLayout>
|
2015-01-25 21:34:36 +08:00
|
|
|
#include <QDebug>
|
2015-02-28 01:56:47 +08:00
|
|
|
#include <QShortcut>
|
2015-01-25 21:34:36 +08:00
|
|
|
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/misc/smileypack.h"
|
|
|
|
#include "src/widget/emoticonswidget.h"
|
|
|
|
#include "src/misc/style.h"
|
|
|
|
#include "src/widget/widget.h"
|
|
|
|
#include "src/misc/settings.h"
|
|
|
|
#include "src/widget/tool/chattextedit.h"
|
|
|
|
#include "src/widget/maskablepixmapwidget.h"
|
2015-04-24 08:32:09 +08:00
|
|
|
#include "src/core/core.h"
|
2014-11-23 23:55:49 +08:00
|
|
|
#include "src/grouplist.h"
|
|
|
|
#include "src/group.h"
|
2014-11-07 22:55:32 +08:00
|
|
|
#include "src/friendlist.h"
|
|
|
|
#include "src/friend.h"
|
2015-01-05 01:21:35 +08:00
|
|
|
#include "src/chatlog/chatlog.h"
|
2015-01-25 21:34:36 +08:00
|
|
|
#include "src/chatlog/content/timestamp.h"
|
2015-03-25 09:48:26 +08:00
|
|
|
#include "src/widget/tool/flyoutoverlaywidget.h"
|
2015-06-06 03:37:01 +08:00
|
|
|
#include "src/translator.h"
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-01-05 02:29:06 +08:00
|
|
|
GenericChatForm::GenericChatForm(QWidget *parent)
|
|
|
|
: QWidget(parent)
|
2014-11-13 20:11:23 +08:00
|
|
|
, audioInputFlag(false)
|
|
|
|
, audioOutputFlag(false)
|
2014-09-05 02:09:55 +08:00
|
|
|
{
|
|
|
|
curRow = 0;
|
2014-09-26 00:03:25 +08:00
|
|
|
headWidget = new QWidget();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-09-10 00:28:07 +08:00
|
|
|
nameLabel = new CroppingLabel();
|
2014-10-10 03:20:06 +08:00
|
|
|
nameLabel->setObjectName("nameLabel");
|
2014-10-24 03:53:45 +08:00
|
|
|
nameLabel->setMinimumHeight(Style::getFont(Style::Medium).pixelSize());
|
2014-11-18 10:15:44 +08:00
|
|
|
nameLabel->setEditable(true);
|
2015-03-10 01:32:30 +08:00
|
|
|
nameLabel->setTextFormat(Qt::PlainText);
|
2014-10-01 02:10:42 +08:00
|
|
|
|
2015-02-12 20:18:04 +08:00
|
|
|
avatar = new MaskablePixmapWidget(this, QSize(40,40), ":/img/avatar_mask.svg");
|
2015-02-25 02:39:44 +08:00
|
|
|
QHBoxLayout *mainFootLayout = new QHBoxLayout(),
|
|
|
|
*headLayout = new QHBoxLayout();
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2014-12-17 19:36:34 +08:00
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(),
|
|
|
|
*footButtonsSmall = new QVBoxLayout(),
|
2015-01-06 22:36:03 +08:00
|
|
|
*micButtonsLayout = new QVBoxLayout();
|
2015-03-10 01:32:30 +08:00
|
|
|
headTextLayout = new QVBoxLayout();
|
|
|
|
|
2015-01-06 22:36:03 +08:00
|
|
|
QGridLayout *buttonsLayout = new QGridLayout();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
chatWidget = new ChatLog(this);
|
2015-01-25 21:06:06 +08:00
|
|
|
chatWidget->setBusyNotification(ChatMessage::createBusyNotification());
|
2014-09-06 03:27:26 +08:00
|
|
|
|
2015-02-15 18:43:01 +08:00
|
|
|
connect(&Settings::getInstance(), &Settings::emojiFontChanged, this, [this]() { chatWidget->forceRelayout(); });
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
msgEdit = new ChatTextEdit();
|
|
|
|
|
|
|
|
sendButton = new QPushButton();
|
|
|
|
emoteButton = new QPushButton();
|
|
|
|
|
2014-10-24 03:53:45 +08:00
|
|
|
// Setting the sizes in the CSS doesn't work (glitch with high DPIs)
|
2014-09-05 02:09:55 +08:00
|
|
|
fileButton = new QPushButton();
|
2015-03-25 09:48:26 +08:00
|
|
|
screenshotButton = new QPushButton;
|
2014-09-05 02:09:55 +08:00
|
|
|
callButton = new QPushButton();
|
2014-10-24 03:53:45 +08:00
|
|
|
callButton->setFixedSize(50,40);
|
2014-09-05 02:09:55 +08:00
|
|
|
videoButton = new QPushButton();
|
2014-10-24 03:53:45 +08:00
|
|
|
videoButton->setFixedSize(50,40);
|
2014-09-05 02:09:55 +08:00
|
|
|
volButton = new QPushButton();
|
2014-12-17 19:36:34 +08:00
|
|
|
//volButton->setFixedSize(25,20);
|
2015-02-23 03:37:00 +08:00
|
|
|
volButton->setToolTip("");
|
2014-09-05 02:09:55 +08:00
|
|
|
micButton = new QPushButton();
|
2015-01-04 21:21:05 +08:00
|
|
|
// micButton->setFixedSize(25,20);
|
2015-02-23 03:37:00 +08:00
|
|
|
micButton->setToolTip("");
|
2015-03-25 09:48:26 +08:00
|
|
|
|
|
|
|
fileFlyout = new FlyoutOverlayWidget;
|
|
|
|
QHBoxLayout *fileLayout = new QHBoxLayout(fileFlyout);
|
|
|
|
fileLayout->addWidget(screenshotButton);
|
|
|
|
fileLayout->setContentsMargins(0, 0, 0, 0);
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
footButtonsSmall->setSpacing(2);
|
2015-03-25 09:48:26 +08:00
|
|
|
fileLayout->setSpacing(0);
|
|
|
|
fileLayout->setMargin(0);
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-10-01 02:10:42 +08:00
|
|
|
msgEdit->setStyleSheet(Style::getStylesheet(":/ui/msgEdit/msgEdit.css"));
|
2014-09-05 02:09:55 +08:00
|
|
|
msgEdit->setFixedHeight(50);
|
|
|
|
msgEdit->setFrameStyle(QFrame::NoFrame);
|
|
|
|
|
2014-10-01 02:10:42 +08:00
|
|
|
sendButton->setStyleSheet(Style::getStylesheet(":/ui/sendButton/sendButton.css"));
|
|
|
|
fileButton->setStyleSheet(Style::getStylesheet(":/ui/fileButton/fileButton.css"));
|
2015-03-25 09:48:26 +08:00
|
|
|
screenshotButton->setStyleSheet(Style::getStylesheet(":/ui/screenshotButton/screenshotButton.css"));
|
2014-10-01 02:10:42 +08:00
|
|
|
emoteButton->setStyleSheet(Style::getStylesheet(":/ui/emoteButton/emoteButton.css"));
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
callButton->setObjectName("green");
|
2014-10-01 02:10:42 +08:00
|
|
|
callButton->setStyleSheet(Style::getStylesheet(":/ui/callButton/callButton.css"));
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
videoButton->setObjectName("green");
|
2014-10-01 02:10:42 +08:00
|
|
|
videoButton->setStyleSheet(Style::getStylesheet(":/ui/videoButton/videoButton.css"));
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-10-01 02:10:42 +08:00
|
|
|
QString volButtonStylesheet = Style::getStylesheet(":/ui/volButton/volButton.css");
|
2015-02-23 03:37:00 +08:00
|
|
|
volButton->setObjectName("grey");
|
2014-09-05 02:09:55 +08:00
|
|
|
volButton->setStyleSheet(volButtonStylesheet);
|
|
|
|
|
2014-10-01 02:10:42 +08:00
|
|
|
QString micButtonStylesheet = Style::getStylesheet(":/ui/micButton/micButton.css");
|
2015-02-23 03:37:00 +08:00
|
|
|
micButton->setObjectName("grey");
|
2014-09-05 02:09:55 +08:00
|
|
|
micButton->setStyleSheet(micButtonStylesheet);
|
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
setLayout(mainLayout);
|
2014-09-07 19:42:06 +08:00
|
|
|
mainLayout->addWidget(chatWidget);
|
2014-09-05 02:09:55 +08:00
|
|
|
mainLayout->addLayout(mainFootLayout);
|
|
|
|
mainLayout->setMargin(0);
|
|
|
|
|
|
|
|
footButtonsSmall->addWidget(emoteButton);
|
|
|
|
footButtonsSmall->addWidget(fileButton);
|
|
|
|
|
|
|
|
mainFootLayout->addWidget(msgEdit);
|
|
|
|
mainFootLayout->addLayout(footButtonsSmall);
|
|
|
|
mainFootLayout->addSpacing(5);
|
|
|
|
mainFootLayout->addWidget(sendButton);
|
|
|
|
mainFootLayout->setSpacing(0);
|
2015-03-10 01:32:30 +08:00
|
|
|
|
|
|
|
headTextLayout->addStretch();
|
2014-12-17 19:36:34 +08:00
|
|
|
headTextLayout->addWidget(nameLabel);
|
2015-01-06 22:36:03 +08:00
|
|
|
headTextLayout->addStretch();
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2015-01-26 00:18:20 +08:00
|
|
|
micButtonsLayout->setSpacing(0);
|
2015-01-06 22:36:03 +08:00
|
|
|
micButtonsLayout->addWidget(micButton, Qt::AlignTop | Qt::AlignRight);
|
2015-01-26 00:18:20 +08:00
|
|
|
micButtonsLayout->addSpacing(4);
|
2015-01-06 22:36:03 +08:00
|
|
|
micButtonsLayout->addWidget(volButton, Qt::AlignTop | Qt::AlignRight);
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2015-01-26 00:18:20 +08:00
|
|
|
buttonsLayout->addLayout(micButtonsLayout, 0, 0, 2, 1, Qt::AlignTop | Qt::AlignRight);
|
2015-01-06 22:36:03 +08:00
|
|
|
buttonsLayout->addWidget(callButton, 0, 1, 2, 1, Qt::AlignTop);
|
|
|
|
buttonsLayout->addWidget(videoButton, 0, 2, 2, 1, Qt::AlignTop);
|
2015-01-26 00:18:20 +08:00
|
|
|
buttonsLayout->setVerticalSpacing(0);
|
|
|
|
buttonsLayout->setHorizontalSpacing(4);
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2015-02-25 02:39:44 +08:00
|
|
|
headLayout->addWidget(avatar);
|
2014-11-02 17:41:58 +08:00
|
|
|
headLayout->addSpacing(5);
|
2015-02-25 02:39:44 +08:00
|
|
|
headLayout->addLayout(headTextLayout);
|
|
|
|
headLayout->addLayout(buttonsLayout);
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-01-06 22:36:03 +08:00
|
|
|
headWidget->setLayout(headLayout);
|
2015-03-10 01:32:30 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
//Fix for incorrect layouts on OS X as per
|
|
|
|
//https://bugreports.qt-project.org/browse/QTBUG-14591
|
|
|
|
sendButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
|
|
|
fileButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
2015-03-25 09:48:26 +08:00
|
|
|
screenshotButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
2014-09-05 02:09:55 +08:00
|
|
|
emoteButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
2015-01-15 15:45:42 +08:00
|
|
|
micButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
|
|
|
volButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
|
|
|
callButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
|
|
|
videoButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-01-27 02:32:33 +08:00
|
|
|
menu.addActions(chatWidget->actions());
|
2015-01-04 21:21:05 +08:00
|
|
|
menu.addSeparator();
|
2015-06-06 03:37:01 +08:00
|
|
|
saveChatAction = menu.addAction(QIcon::fromTheme("document-save"), QString(), this, SLOT(onSaveLogClicked()));
|
|
|
|
clearAction = menu.addAction(QIcon::fromTheme("edit-clear"), QString(), this, SLOT(clearChatArea(bool)));
|
2015-01-04 21:21:05 +08:00
|
|
|
menu.addSeparator();
|
|
|
|
|
|
|
|
connect(emoteButton, &QPushButton::clicked, this, &GenericChatForm::onEmoteButtonClicked);
|
|
|
|
connect(chatWidget, &ChatLog::customContextMenuRequested, this, &GenericChatForm::onChatContextMenuRequested);
|
2014-10-10 03:20:06 +08:00
|
|
|
|
2015-02-28 02:25:27 +08:00
|
|
|
new QShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_L, this, SLOT(clearChatArea()));
|
|
|
|
|
2015-01-02 20:04:59 +08:00
|
|
|
chatWidget->setStyleSheet(Style::getStylesheet(":/ui/chatArea/chatArea.css"));
|
2014-10-10 03:20:06 +08:00
|
|
|
headWidget->setStyleSheet(Style::getStylesheet(":/ui/chatArea/chatHead.css"));
|
2015-03-25 09:48:26 +08:00
|
|
|
|
|
|
|
fileFlyout->setFixedSize(24, 24);
|
|
|
|
fileFlyout->setParent(this);
|
|
|
|
fileButton->installEventFilter(this);
|
2015-03-25 21:51:14 +08:00
|
|
|
fileFlyout->installEventFilter(this);
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
retranslateUi();
|
|
|
|
Translator::registerHandler(std::bind(&GenericChatForm::retranslateUi, this), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
GenericChatForm::~GenericChatForm()
|
|
|
|
{
|
|
|
|
Translator::unregister(this);
|
2015-03-25 09:48:26 +08:00
|
|
|
}
|
|
|
|
|
2015-04-05 05:22:03 +08:00
|
|
|
void GenericChatForm::adjustFileMenuPosition()
|
|
|
|
{
|
|
|
|
QPoint pos = fileButton->pos();
|
|
|
|
QSize size = fileFlyout->size();
|
|
|
|
fileFlyout->move(pos.x() - size.width(), pos.y());
|
|
|
|
}
|
|
|
|
|
2015-03-25 09:48:26 +08:00
|
|
|
void GenericChatForm::showFileMenu()
|
|
|
|
{
|
2015-04-02 22:56:16 +08:00
|
|
|
if (!fileFlyout->isShown() && !fileFlyout->isBeingShown()) {
|
2015-04-05 05:22:03 +08:00
|
|
|
adjustFileMenuPosition();
|
2015-03-25 09:48:26 +08:00
|
|
|
}
|
|
|
|
|
2015-04-02 22:56:16 +08:00
|
|
|
fileFlyout->animateShow();
|
2015-03-25 09:48:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GenericChatForm::hideFileMenu()
|
|
|
|
{
|
2015-04-02 22:56:16 +08:00
|
|
|
if(fileFlyout->isShown() || fileFlyout->isBeingShown())
|
2015-03-25 09:48:26 +08:00
|
|
|
fileFlyout->animateHide();
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
}
|
|
|
|
|
2014-11-08 21:46:26 +08:00
|
|
|
bool GenericChatForm::isEmpty()
|
2014-10-11 18:48:45 +08:00
|
|
|
{
|
2014-12-14 04:11:03 +08:00
|
|
|
return chatWidget->isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
ChatLog *GenericChatForm::getChatLog() const
|
|
|
|
{
|
|
|
|
return chatWidget;
|
2014-10-11 18:48:45 +08:00
|
|
|
}
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
void GenericChatForm::setName(const QString &newName)
|
|
|
|
{
|
|
|
|
nameLabel->setText(newName);
|
|
|
|
nameLabel->setToolTip(newName); // for overlength names
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericChatForm::show(Ui::MainWindow &ui)
|
|
|
|
{
|
2014-09-26 00:03:25 +08:00
|
|
|
ui.mainContent->layout()->addWidget(this);
|
2014-09-05 02:09:55 +08:00
|
|
|
ui.mainHead->layout()->addWidget(headWidget);
|
|
|
|
headWidget->show();
|
2014-09-26 00:03:25 +08:00
|
|
|
QWidget::show();
|
2014-09-05 02:09:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GenericChatForm::onChatContextMenuRequested(QPoint pos)
|
|
|
|
{
|
|
|
|
QWidget* sender = (QWidget*)QObject::sender();
|
|
|
|
pos = sender->mapToGlobal(pos);
|
2015-01-04 21:21:05 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
menu.exec(pos);
|
|
|
|
}
|
|
|
|
|
2015-05-18 04:55:50 +08:00
|
|
|
ChatMessage::Ptr GenericChatForm::addMessage(const ToxId& author, const QString &message, bool isAction,
|
2014-11-12 23:45:24 +08:00
|
|
|
const QDateTime &datetime, bool isSent)
|
|
|
|
{
|
2015-05-24 02:58:41 +08:00
|
|
|
QString authorStr = author.isActiveProfile() ? Core::getInstance()->getUsername() : resolveToxId(author);
|
2014-12-14 04:11:03 +08:00
|
|
|
|
2015-01-04 20:29:14 +08:00
|
|
|
ChatMessage::Ptr msg;
|
2015-03-21 02:38:10 +08:00
|
|
|
if (isAction)
|
2015-01-05 01:21:35 +08:00
|
|
|
{
|
2015-02-15 17:51:54 +08:00
|
|
|
msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::ACTION, false);
|
2015-02-08 05:55:42 +08:00
|
|
|
previousId.clear();
|
2015-01-05 01:21:35 +08:00
|
|
|
}
|
2014-12-14 04:11:03 +08:00
|
|
|
else
|
2015-01-05 01:21:35 +08:00
|
|
|
{
|
2015-05-18 04:26:56 +08:00
|
|
|
msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::NORMAL, author.isActiveProfile());
|
2015-03-26 05:31:39 +08:00
|
|
|
if ( (author == previousId) && (prevMsgDateTime.secsTo(QDateTime::currentDateTime()) < getChatLog()->repNameAfter) )
|
2015-01-05 01:21:35 +08:00
|
|
|
msg->hideSender();
|
2015-02-08 05:55:42 +08:00
|
|
|
|
|
|
|
previousId = author;
|
2015-03-26 05:31:39 +08:00
|
|
|
prevMsgDateTime = QDateTime::currentDateTime();
|
2015-01-05 01:21:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
insertChatMessage(msg);
|
2014-11-16 19:40:44 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (isSent)
|
2014-11-14 01:27:32 +08:00
|
|
|
msg->markAsSent(datetime);
|
|
|
|
|
|
|
|
return msg;
|
2014-11-12 23:45:24 +08:00
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-04 20:29:14 +08:00
|
|
|
ChatMessage::Ptr GenericChatForm::addSelfMessage(const QString &message, bool isAction, const QDateTime &datetime, bool isSent)
|
2014-11-12 23:45:24 +08:00
|
|
|
{
|
2014-12-14 04:11:03 +08:00
|
|
|
return addMessage(Core::getInstance()->getSelfId(), message, isAction, datetime, isSent);
|
2014-11-12 23:45:24 +08:00
|
|
|
}
|
2014-11-03 01:36:27 +08:00
|
|
|
|
2015-05-18 04:55:50 +08:00
|
|
|
void GenericChatForm::addAlertMessage(const ToxId &author, QString message, QDateTime datetime)
|
2014-11-16 19:40:44 +08:00
|
|
|
{
|
2015-05-24 02:58:41 +08:00
|
|
|
QString authorStr = resolveToxId(author);
|
2015-05-18 04:26:56 +08:00
|
|
|
ChatMessage::Ptr msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::ALERT, author.isActiveProfile(), datetime);
|
2015-01-05 01:21:35 +08:00
|
|
|
insertChatMessage(msg);
|
|
|
|
|
2015-05-08 04:00:40 +08:00
|
|
|
if ((author == previousId) && (prevMsgDateTime.secsTo(QDateTime::currentDateTime()) < getChatLog()->repNameAfter))
|
2015-01-05 01:21:35 +08:00
|
|
|
msg->hideSender();
|
2015-01-03 17:17:53 +08:00
|
|
|
|
2014-12-31 20:42:06 +08:00
|
|
|
previousId = author;
|
2015-03-26 05:31:39 +08:00
|
|
|
prevMsgDateTime = QDateTime::currentDateTime();
|
2014-11-16 19:40:44 +08:00
|
|
|
}
|
2014-10-20 19:05:45 +08:00
|
|
|
|
2014-09-05 23:05:57 +08:00
|
|
|
void GenericChatForm::onEmoteButtonClicked()
|
|
|
|
{
|
|
|
|
// don't show the smiley selection widget if there are no smileys available
|
|
|
|
if (SmileyPack::getInstance().getEmoticons().empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
EmoticonsWidget widget;
|
|
|
|
connect(&widget, SIGNAL(insertEmoticon(QString)), this, SLOT(onEmoteInsertRequested(QString)));
|
|
|
|
|
|
|
|
QWidget* sender = qobject_cast<QWidget*>(QObject::sender());
|
|
|
|
if (sender)
|
|
|
|
{
|
|
|
|
QPoint pos = -QPoint(widget.sizeHint().width() / 2, widget.sizeHint().height()) - QPoint(0, 10);
|
|
|
|
widget.exec(sender->mapToGlobal(pos));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericChatForm::onEmoteInsertRequested(QString str)
|
|
|
|
{
|
|
|
|
// insert the emoticon
|
|
|
|
QWidget* sender = qobject_cast<QWidget*>(QObject::sender());
|
|
|
|
if (sender)
|
|
|
|
msgEdit->insertPlainText(str);
|
|
|
|
|
|
|
|
msgEdit->setFocus(); // refocus so that we can continue typing
|
|
|
|
}
|
2014-09-11 05:00:45 +08:00
|
|
|
|
2015-01-04 21:21:05 +08:00
|
|
|
void GenericChatForm::onSaveLogClicked()
|
|
|
|
{
|
|
|
|
QString path = QFileDialog::getSaveFileName(0, tr("Save chat log"));
|
|
|
|
if (path.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QFile file(path);
|
|
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
|
|
|
|
return;
|
|
|
|
|
2015-01-25 21:34:36 +08:00
|
|
|
QString plainText;
|
|
|
|
auto lines = chatWidget->getLines();
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr l : lines)
|
2015-01-25 21:34:36 +08:00
|
|
|
{
|
|
|
|
Timestamp* rightCol = dynamic_cast<Timestamp*>(l->getContent(2));
|
|
|
|
ChatLineContent* middleCol = l->getContent(1);
|
|
|
|
ChatLineContent* leftCol = l->getContent(0);
|
|
|
|
|
|
|
|
QString timestamp = (!rightCol || rightCol->getTime().isNull()) ? tr("Not sent") : rightCol->getText();
|
|
|
|
QString nick = leftCol->getText();
|
|
|
|
QString msg = middleCol->getText();
|
|
|
|
|
|
|
|
plainText += QString("[%2] %1\n%3\n\n").arg(nick, timestamp, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
file.write(plainText.toUtf8());
|
2015-01-04 21:21:05 +08:00
|
|
|
file.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericChatForm::onCopyLogClicked()
|
|
|
|
{
|
|
|
|
chatWidget->copySelectedText();
|
|
|
|
}
|
|
|
|
|
2014-09-11 05:00:45 +08:00
|
|
|
void GenericChatForm::focusInput()
|
|
|
|
{
|
|
|
|
msgEdit->setFocus();
|
|
|
|
}
|
2014-09-24 00:35:06 +08:00
|
|
|
|
2015-01-05 01:21:35 +08:00
|
|
|
void GenericChatForm::addSystemInfoMessage(const QString &message, ChatMessage::SystemMessageType type, const QDateTime &datetime)
|
2014-11-16 19:40:44 +08:00
|
|
|
{
|
|
|
|
previousId.clear();
|
2015-01-05 01:21:35 +08:00
|
|
|
insertChatMessage(ChatMessage::createChatInfoMessage(message, type, datetime));
|
2014-11-16 19:40:44 +08:00
|
|
|
}
|
2014-09-29 00:39:26 +08:00
|
|
|
|
2015-02-28 02:25:27 +08:00
|
|
|
void GenericChatForm::clearChatArea()
|
|
|
|
{
|
|
|
|
clearChatArea(true);
|
|
|
|
}
|
|
|
|
|
2014-10-11 01:32:10 +08:00
|
|
|
void GenericChatForm::clearChatArea(bool notinform)
|
2014-10-11 00:54:21 +08:00
|
|
|
{
|
2014-11-16 19:40:44 +08:00
|
|
|
chatWidget->clear();
|
2015-05-18 04:55:50 +08:00
|
|
|
previousId = ToxId();
|
2014-10-11 01:32:10 +08:00
|
|
|
|
2014-11-16 19:40:44 +08:00
|
|
|
if (!notinform)
|
2015-01-05 01:21:35 +08:00
|
|
|
addSystemInfoMessage(tr("Cleared"), ChatMessage::INFO, QDateTime::currentDateTime());
|
2014-10-11 01:32:10 +08:00
|
|
|
|
2015-01-05 02:29:06 +08:00
|
|
|
earliestMessage = QDateTime(); //null
|
2015-02-16 23:48:22 +08:00
|
|
|
historyBaselineDate = QDateTime::currentDateTime();
|
2014-11-10 21:06:35 +08:00
|
|
|
|
2014-11-16 19:40:44 +08:00
|
|
|
emit chatAreaCleared();
|
2014-10-11 01:32:10 +08:00
|
|
|
}
|
|
|
|
|
2015-01-27 02:32:33 +08:00
|
|
|
void GenericChatForm::onSelectAllClicked()
|
|
|
|
{
|
|
|
|
chatWidget->selectAll();
|
|
|
|
}
|
|
|
|
|
2015-05-24 02:58:41 +08:00
|
|
|
QString GenericChatForm::resolveToxId(const ToxId &id)
|
2014-11-23 23:55:49 +08:00
|
|
|
{
|
|
|
|
Friend *f = FriendList::findFriend(id);
|
|
|
|
if (f)
|
|
|
|
{
|
|
|
|
return f->getDisplayedName();
|
2015-04-24 19:01:50 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-23 23:55:49 +08:00
|
|
|
for (auto it : GroupList::getAllGroups())
|
|
|
|
{
|
2015-05-24 02:58:41 +08:00
|
|
|
QString res = it->resolveToxId(id);
|
2014-11-23 23:55:49 +08:00
|
|
|
if (res.size())
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
2015-01-05 01:21:35 +08:00
|
|
|
|
|
|
|
void GenericChatForm::insertChatMessage(ChatMessage::Ptr msg)
|
|
|
|
{
|
2015-01-05 02:29:06 +08:00
|
|
|
chatWidget->insertChatlineAtBottom(std::dynamic_pointer_cast<ChatLine>(msg));
|
2015-01-05 01:21:35 +08:00
|
|
|
}
|
2015-03-26 05:31:39 +08:00
|
|
|
|
2015-04-05 05:06:06 +08:00
|
|
|
void GenericChatForm::hideEvent(QHideEvent* event)
|
|
|
|
{
|
|
|
|
hideFileMenu();
|
|
|
|
QWidget::hideEvent(event);
|
|
|
|
}
|
|
|
|
|
2015-04-05 05:22:03 +08:00
|
|
|
void GenericChatForm::resizeEvent(QResizeEvent* event)
|
|
|
|
{
|
|
|
|
adjustFileMenuPosition();
|
|
|
|
QWidget::resizeEvent(event);
|
|
|
|
}
|
|
|
|
|
2015-03-25 09:48:26 +08:00
|
|
|
bool GenericChatForm::eventFilter(QObject* object, QEvent* event)
|
|
|
|
{
|
2015-03-25 21:51:14 +08:00
|
|
|
if (object != this->fileButton && object != this->fileFlyout)
|
2015-03-25 09:48:26 +08:00
|
|
|
return false;
|
|
|
|
|
2015-04-02 22:29:27 +08:00
|
|
|
if (!qobject_cast<QWidget*>(object)->isEnabled())
|
|
|
|
return false;
|
|
|
|
|
2015-03-25 09:48:26 +08:00
|
|
|
switch(event->type())
|
|
|
|
{
|
|
|
|
case QEvent::Enter:
|
|
|
|
showFileMenu();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QEvent::Leave: {
|
|
|
|
QPoint pos = mapFromGlobal(QCursor::pos());
|
2015-03-25 21:51:14 +08:00
|
|
|
QRect fileRect(fileFlyout->pos(), fileFlyout->size());
|
|
|
|
fileRect = fileRect.united(QRect(fileButton->pos(), fileButton->size()));
|
2015-03-25 09:48:26 +08:00
|
|
|
|
2015-03-25 21:51:14 +08:00
|
|
|
if (!fileRect.contains(pos))
|
2015-03-25 09:48:26 +08:00
|
|
|
hideFileMenu();
|
2015-04-02 22:56:16 +08:00
|
|
|
|
2015-03-25 09:48:26 +08:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
hideFileMenu();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
void GenericChatForm::retranslateUi()
|
|
|
|
{
|
|
|
|
sendButton->setToolTip(tr("Send message"));
|
|
|
|
emoteButton->setToolTip(tr("Smileys"));
|
|
|
|
fileButton->setToolTip(tr("Send file(s)"));
|
|
|
|
screenshotButton->setToolTip(tr("Send a screenshot"));
|
|
|
|
callButton->setToolTip(tr("Start an audio call"));
|
|
|
|
videoButton->setToolTip(tr("Start a video call"));
|
|
|
|
saveChatAction->setText(tr("Save chat log"));
|
|
|
|
clearAction->setText(tr("Clear displayed messages"));
|
|
|
|
}
|