mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'chatlog_merge_v3'
Conflicts: src/chatlog/chatlog.h
This commit is contained in:
commit
73e51865e7
|
@ -610,6 +610,11 @@ void ChatLog::selectAll()
|
|||
updateMultiSelectionRect();
|
||||
}
|
||||
|
||||
void ChatLog::forceRelayout()
|
||||
{
|
||||
startResizeWorker();
|
||||
}
|
||||
|
||||
void ChatLog::checkVisibility()
|
||||
{
|
||||
if(lines.empty())
|
||||
|
|
|
@ -49,6 +49,7 @@ public:
|
|||
void setTypingNotificationVisible(bool visible);
|
||||
void scrollToLine(ChatLine::Ptr line);
|
||||
void selectAll();
|
||||
void forceRelayout();
|
||||
|
||||
QString getSelectedText() const;
|
||||
|
||||
|
@ -138,7 +139,7 @@ private:
|
|||
ChatLine::Ptr workerAnchorLine;
|
||||
|
||||
// layout
|
||||
QMargins margins = QMargins(10.0,10.0,10.0,10.0);
|
||||
QMargins margins = QMargins(10,10,10,10);
|
||||
qreal lineSpacing = 5.0f;
|
||||
|
||||
};
|
||||
|
|
|
@ -35,11 +35,14 @@ ChatMessage::ChatMessage()
|
|||
|
||||
}
|
||||
|
||||
ChatMessage::Ptr ChatMessage::createChatMessage(const QString &sender, const QString &rawMessage, bool isAction, bool alert, bool isMe, const QDateTime &date)
|
||||
ChatMessage::Ptr ChatMessage::createChatMessage(const QString &sender, const QString &rawMessage, MessageType type, bool isMe, const QDateTime &date)
|
||||
{
|
||||
ChatMessage::Ptr msg = ChatMessage::Ptr(new ChatMessage);
|
||||
|
||||
QString text = toHtmlChars(rawMessage);
|
||||
QString senderText = sender;
|
||||
|
||||
const QColor actionColor = QColor("#1818FF"); // has to match the color in innerStyle.css (div.action)
|
||||
|
||||
//smileys
|
||||
if(Settings::getInstance().getUseEmoticons())
|
||||
|
@ -48,18 +51,23 @@ ChatMessage::Ptr ChatMessage::createChatMessage(const QString &sender, const QSt
|
|||
//quotes (green text)
|
||||
text = detectQuotes(detectAnchors(text));
|
||||
|
||||
if(isAction)
|
||||
switch(type)
|
||||
{
|
||||
text = QString("<div class=action>%1 %2</div>").arg(sender, text);
|
||||
case ACTION:
|
||||
senderText = "*";
|
||||
text = wrapDiv(QString("%1 %2").arg(sender, text), "action");
|
||||
msg->setAsAction();
|
||||
}
|
||||
else if(alert)
|
||||
{
|
||||
text = "<div class=alert>" + text + "</div>";
|
||||
break;
|
||||
case ALERT:
|
||||
text = wrapDiv(text, "alert");
|
||||
break;
|
||||
default:
|
||||
text = wrapDiv(text, "msg");
|
||||
}
|
||||
|
||||
msg->addColumn(new Text(isAction ? "<div class=action>*</div>" : sender, isMe ? Style::getFont(Style::BigBold) : Style::getFont(Style::Big), isAction ? false : true, sender), ColumnFormat(NAME_COL_WIDTH, ColumnFormat::FixedSize, ColumnFormat::Right));
|
||||
msg->addColumn(new Text(text, Style::getFont(Style::Big), false, isAction ? QString("*%1 %2*").arg(sender, rawMessage) : rawMessage), ColumnFormat(1.0, ColumnFormat::VariableSize));
|
||||
// Note: Eliding cannot be enabled for RichText items. (QTBUG-17207)
|
||||
msg->addColumn(new Text(senderText, isMe ? Style::getFont(Style::BigBold) : Style::getFont(Style::Big), true, sender, type == ACTION ? actionColor : Qt::black), ColumnFormat(NAME_COL_WIDTH, ColumnFormat::FixedSize, ColumnFormat::Right));
|
||||
msg->addColumn(new Text(text, Style::getFont(Style::Big), false, type == ACTION ? QString("*%1 %2*").arg(sender, rawMessage) : rawMessage), ColumnFormat(1.0, ColumnFormat::VariableSize));
|
||||
msg->addColumn(new Spinner(":/ui/chatArea/spinner.svg", QSize(16, 16), 360.0/1.6), ColumnFormat(TIME_COL_WIDTH, ColumnFormat::FixedSize, ColumnFormat::Right));
|
||||
|
||||
if(!date.isNull())
|
||||
|
@ -219,3 +227,8 @@ QString ChatMessage::toHtmlChars(const QString &str)
|
|||
|
||||
return res;
|
||||
}
|
||||
|
||||
QString ChatMessage::wrapDiv(const QString &str, const QString &div)
|
||||
{
|
||||
return QString("<div class=%1>%2</div>").arg(div, str);
|
||||
}
|
||||
|
|
|
@ -35,9 +35,16 @@ public:
|
|||
TYPING,
|
||||
};
|
||||
|
||||
enum MessageType
|
||||
{
|
||||
NORMAL,
|
||||
ACTION,
|
||||
ALERT,
|
||||
};
|
||||
|
||||
ChatMessage();
|
||||
|
||||
static ChatMessage::Ptr createChatMessage(const QString& sender, const QString& rawMessage, bool isAction, bool alert, bool isMe, const QDateTime& date = QDateTime());
|
||||
static ChatMessage::Ptr createChatMessage(const QString& sender, const QString& rawMessage, MessageType type, bool isMe, const QDateTime& date = QDateTime());
|
||||
static ChatMessage::Ptr createChatInfoMessage(const QString& rawMessage, SystemMessageType type, const QDateTime& date);
|
||||
static ChatMessage::Ptr createFileTransferMessage(const QString& sender, ToxFile file, bool isMe, const QDateTime& date);
|
||||
static ChatMessage::Ptr createTypingNotification();
|
||||
|
@ -54,6 +61,7 @@ protected:
|
|||
static QString detectAnchors(const QString& str);
|
||||
static QString detectQuotes(const QString& str);
|
||||
static QString toHtmlChars(const QString& str);
|
||||
static QString wrapDiv(const QString& str, const QString& div);
|
||||
|
||||
private:
|
||||
bool action = false;
|
||||
|
|
|
@ -306,6 +306,8 @@ void FileTransferWidget::onFileTransferPaused(ToxFile file)
|
|||
|
||||
void FileTransferWidget::onFileTransferFinished(ToxFile file)
|
||||
{
|
||||
static const QStringList openExtensions = { "png", "jpeg", "jpg", "gif", "zip", "rar" };
|
||||
|
||||
if(fileInfo != file)
|
||||
return;
|
||||
|
||||
|
@ -316,14 +318,10 @@ void FileTransferWidget::onFileTransferFinished(ToxFile file)
|
|||
setupButtons();
|
||||
hideWidgets();
|
||||
|
||||
static const QStringList openExtensions = { "png", "jpeg", "jpg", "gif", "zip", "rar" };
|
||||
|
||||
if(openExtensions.contains(QFileInfo(file.fileName).suffix()))
|
||||
{
|
||||
ui->topButton->setIcon(QIcon(":/ui/fileTransferInstance/yes.svg"));
|
||||
ui->topButton->setObjectName("ok");
|
||||
ui->topButton->show();
|
||||
}
|
||||
ui->topButton->setIcon(QIcon(":/ui/fileTransferInstance/yes.svg"));
|
||||
ui->topButton->setObjectName("ok");
|
||||
ui->topButton->setEnabled(openExtensions.contains(QFileInfo(file.fileName).suffix()));
|
||||
ui->topButton->show();
|
||||
|
||||
// preview
|
||||
if(fileInfo.direction == ToxFile::RECEIVING)
|
||||
|
|
|
@ -28,10 +28,11 @@
|
|||
#include <QDesktopServices>
|
||||
#include <QTextFragment>
|
||||
|
||||
Text::Text(const QString& txt, QFont font, bool enableElide, const QString &rwText)
|
||||
Text::Text(const QString& txt, QFont font, bool enableElide, const QString &rwText, const QColor c)
|
||||
: rawText(rwText)
|
||||
, elide(enableElide)
|
||||
, defFont(font)
|
||||
, color(c)
|
||||
{
|
||||
setText(txt);
|
||||
setAcceptedMouseButtons(Qt::LeftButton);
|
||||
|
@ -52,9 +53,6 @@ void Text::setText(const QString& txt)
|
|||
|
||||
void Text::setWidth(qreal w)
|
||||
{
|
||||
if(w == width)
|
||||
return;
|
||||
|
||||
width = w;
|
||||
dirty = true;
|
||||
|
||||
|
@ -171,6 +169,7 @@ void Text::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWid
|
|||
sel.format.setBackground(selectionColor.lighter(selectionHasFocus ? 100 : 160));
|
||||
sel.format.setForeground(selectionHasFocus ? Qt::white : Qt::black);
|
||||
ctx.selections.append(sel);
|
||||
ctx.palette.setColor(QPalette::Text, color);
|
||||
|
||||
// draw text
|
||||
doc->documentLayout()->draw(painter, ctx);
|
||||
|
|
|
@ -28,7 +28,7 @@ class Text : public ChatLineContent
|
|||
public:
|
||||
// txt: may contain html code
|
||||
// rawText: does not contain html code
|
||||
Text(const QString& txt = "", QFont font = QFont(), bool enableElide = false, const QString& rawText = QString());
|
||||
Text(const QString& txt = "", QFont font = QFont(), bool enableElide = false, const QString& rawText = QString(), const QColor c = Qt::black);
|
||||
virtual ~Text();
|
||||
|
||||
void setText(const QString& txt);
|
||||
|
@ -83,6 +83,7 @@ private:
|
|||
qreal ascent = 0.0;
|
||||
qreal width = 0.0;
|
||||
QFont defFont;
|
||||
QColor color;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -785,7 +785,7 @@ void ChatForm::loadHistory(QDateTime since, bool processUndelivered)
|
|||
if (msgDate > lastDate)
|
||||
{
|
||||
lastDate = msgDate;
|
||||
historyMessages.append(ChatMessage::createChatInfoMessage(msgDate.toString(), ChatMessage::INFO, QDateTime::currentDateTime()));
|
||||
historyMessages.append(ChatMessage::createChatInfoMessage(msgDate.toString(), ChatMessage::INFO, QDateTime()));
|
||||
}
|
||||
|
||||
// Show each messages
|
||||
|
@ -795,7 +795,7 @@ void ChatForm::loadHistory(QDateTime since, bool processUndelivered)
|
|||
|
||||
ChatMessage::Ptr msg = ChatMessage::createChatMessage(authorStr,
|
||||
isAction ? it.message.right(it.message.length() - 4) : it.message,
|
||||
isAction, false,
|
||||
isAction ? ChatMessage::ACTION : ChatMessage::NORMAL,
|
||||
authorId.isMine(),
|
||||
QDateTime());
|
||||
|
||||
|
|
|
@ -65,6 +65,8 @@ GenericChatForm::GenericChatForm(QWidget *parent)
|
|||
chatWidget = new ChatLog(this);
|
||||
chatWidget->setBusyNotification(ChatMessage::createBusyNotification());
|
||||
|
||||
connect(&Settings::getInstance(), &Settings::emojiFontChanged, this, [this]() { chatWidget->forceRelayout(); });
|
||||
|
||||
msgEdit = new ChatTextEdit();
|
||||
|
||||
sendButton = new QPushButton();
|
||||
|
@ -211,12 +213,12 @@ ChatMessage::Ptr GenericChatForm::addMessage(const ToxID& author, const QString
|
|||
ChatMessage::Ptr msg;
|
||||
if(isAction)
|
||||
{
|
||||
msg = ChatMessage::createChatMessage(authorStr, message, true, false, false);
|
||||
msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::ACTION, false);
|
||||
previousId.clear();
|
||||
}
|
||||
else
|
||||
{
|
||||
msg = ChatMessage::createChatMessage(authorStr, message, false, false, author.isMine());
|
||||
msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::NORMAL, author.isMine());
|
||||
if(author == previousId)
|
||||
msg->hideSender();
|
||||
|
||||
|
@ -239,7 +241,7 @@ ChatMessage::Ptr GenericChatForm::addSelfMessage(const QString &message, bool is
|
|||
void GenericChatForm::addAlertMessage(const ToxID &author, QString message, QDateTime datetime)
|
||||
{
|
||||
QString authorStr = resolveToxID(author);
|
||||
ChatMessage::Ptr msg = ChatMessage::createChatMessage(authorStr, message, false, true, author.isMine(), datetime);
|
||||
ChatMessage::Ptr msg = ChatMessage::createChatMessage(authorStr, message, ChatMessage::ALERT, author.isMine(), datetime);
|
||||
insertChatMessage(msg);
|
||||
|
||||
if(author == previousId)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
div.message {
|
||||
div.msg {
|
||||
color: @black;
|
||||
font: @big;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user