mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.4 KiB
132 lines
4.4 KiB
/* |
|
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 "chatareawidget.h" |
|
#include "widget/tool/chataction.h" |
|
#include <QScrollBar> |
|
#include <QDesktopServices> |
|
#include <QTextTable> |
|
#include <QAbstractTextDocumentLayout> |
|
#include <QCoreApplication> |
|
|
|
ChatAreaWidget::ChatAreaWidget(QWidget *parent) : |
|
QTextBrowser(parent) |
|
{ |
|
setReadOnly(true); |
|
viewport()->setCursor(Qt::ArrowCursor); |
|
setContextMenuPolicy(Qt::CustomContextMenu); |
|
setUndoRedoEnabled(false); |
|
|
|
setOpenExternalLinks(false); |
|
setOpenLinks(false); |
|
setAcceptRichText(false); |
|
|
|
chatTextTable = textCursor().insertTable(1,3); |
|
|
|
QTextTableFormat tableFormat; |
|
tableFormat.setColumnWidthConstraints({QTextLength(QTextLength::VariableLength,0), |
|
QTextLength(QTextLength::PercentageLength,100), |
|
QTextLength(QTextLength::VariableLength,0)}); |
|
tableFormat.setBorderStyle(QTextFrameFormat::BorderStyle_None); |
|
chatTextTable->setFormat(tableFormat); |
|
chatTextTable->format().setCellSpacing(2); |
|
chatTextTable->format().setWidth(QTextLength(QTextLength::PercentageLength,100)); |
|
|
|
// nameFormat.setAlignment(Qt::AlignRight); |
|
// nameFormat.setNonBreakableLines(true); |
|
// dateFormat.setAlignment(Qt::AlignLeft); |
|
// dateFormat.setNonBreakableLines(true); |
|
|
|
connect(this, &ChatAreaWidget::anchorClicked, this, &ChatAreaWidget::onAnchorClicked); |
|
connect(verticalScrollBar(), SIGNAL(rangeChanged(int,int)), this, SLOT(onSliderRangeChanged())); |
|
} |
|
|
|
ChatAreaWidget::~ChatAreaWidget() |
|
{ |
|
for (ChatAction* action : messages) |
|
delete action; |
|
messages.clear(); |
|
} |
|
|
|
void ChatAreaWidget::mouseReleaseEvent(QMouseEvent * event) |
|
{ |
|
QTextEdit::mouseReleaseEvent(event); |
|
int pos = this->document()->documentLayout()->hitTest(event->pos(), Qt::ExactHit); |
|
if (pos > 0) |
|
{ |
|
QTextCursor cursor(document()); |
|
cursor.setPosition(pos); |
|
if( ! cursor.atEnd() ) |
|
{ |
|
cursor.setPosition(pos+1); |
|
|
|
QTextFormat format = cursor.charFormat(); |
|
if (format.isImageFormat()) |
|
{ |
|
QString imageName = format.toImageFormat().name(); |
|
if (QRegExp("^data:ftrans.*").exactMatch(imageName)) |
|
{ |
|
QString data = imageName.right(imageName.length() - 12); |
|
int endpos = data.indexOf("/png;base64"); |
|
data = data.left(endpos); |
|
int middlepos = data.indexOf("."); |
|
QString widgetID = data.left(middlepos); |
|
QString widgetBtn = data.right(data.length() - middlepos - 1); |
|
emit onFileTranfertInterract(widgetID, widgetBtn); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
void ChatAreaWidget::onAnchorClicked(const QUrl &url) |
|
{ |
|
QDesktopServices::openUrl(url); |
|
} |
|
|
|
void ChatAreaWidget::insertMessage(ChatAction *msgAction) |
|
{ |
|
if (msgAction == nullptr) |
|
return; |
|
|
|
checkSlider(); |
|
|
|
int row = chatTextTable->rows() - 1; |
|
QTextCursor cur = chatTextTable->cellAt(row,1).firstCursorPosition(); |
|
cur.clearSelection(); |
|
cur.setKeepPositionOnInsert(true); |
|
chatTextTable->appendRows(1); |
|
chatTextTable->cellAt(row,0).firstCursorPosition().insertHtml(msgAction->getName()); |
|
chatTextTable->cellAt(row,1).firstCursorPosition().insertHtml(msgAction->getMessage()); |
|
chatTextTable->cellAt(row,2).firstCursorPosition().insertText(msgAction->getDate()); |
|
|
|
msgAction->setTextCursor(cur); |
|
|
|
messages.append(msgAction); |
|
} |
|
|
|
void ChatAreaWidget::onSliderRangeChanged() |
|
{ |
|
QScrollBar* scroll = verticalScrollBar(); |
|
if (lockSliderToBottom) |
|
scroll->setValue(scroll->maximum()); |
|
} |
|
|
|
void ChatAreaWidget::checkSlider() |
|
{ |
|
QScrollBar* scroll = verticalScrollBar(); |
|
lockSliderToBottom = scroll && scroll->value() == scroll->maximum(); |
|
}
|
|
|