2014-11-16 19:58:43 +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.
|
|
|
|
*/
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
#include "chatlog.h"
|
2014-11-12 23:45:24 +08:00
|
|
|
#include "chatmessage.h"
|
2014-11-12 21:11:25 +08:00
|
|
|
#include "chatlinecontent.h"
|
2014-11-16 19:40:44 +08:00
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
2015-01-04 21:21:05 +08:00
|
|
|
#include <QAction>
|
2015-01-04 22:18:23 +08:00
|
|
|
#include <QTimer>
|
2015-01-20 17:44:05 +08:00
|
|
|
#include <QMouseEvent>
|
2015-02-08 00:37:04 +08:00
|
|
|
#include <QShortcut>
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
T clamp(T x, T min, T max)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (x > max)
|
2014-11-12 21:11:25 +08:00
|
|
|
return max;
|
2015-03-21 02:38:10 +08:00
|
|
|
if (x < min)
|
2014-11-12 21:11:25 +08:00
|
|
|
return min;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChatLog::ChatLog(QWidget* parent)
|
|
|
|
: QGraphicsView(parent)
|
|
|
|
{
|
2015-01-15 01:22:42 +08:00
|
|
|
// Create the scene
|
2015-01-25 21:06:06 +08:00
|
|
|
busyScene = new QGraphicsScene(this);
|
2014-11-12 21:11:25 +08:00
|
|
|
scene = new QGraphicsScene(this);
|
2015-02-01 00:39:25 +08:00
|
|
|
scene->setItemIndexMethod(QGraphicsScene::BspTreeIndex);
|
2014-11-12 21:11:25 +08:00
|
|
|
setScene(scene);
|
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// Cfg.
|
2014-11-12 21:11:25 +08:00
|
|
|
setInteractive(true);
|
2015-02-02 18:01:01 +08:00
|
|
|
setAcceptDrops(false);
|
2014-11-12 21:11:25 +08:00
|
|
|
setAlignment(Qt::AlignTop | Qt::AlignLeft);
|
|
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
setDragMode(QGraphicsView::NoDrag);
|
2015-02-02 18:01:01 +08:00
|
|
|
setViewportUpdateMode(MinimalViewportUpdate);
|
2015-01-04 21:21:05 +08:00
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
2015-01-27 00:12:22 +08:00
|
|
|
setBackgroundBrush(QBrush(Qt::white, Qt::SolidPattern));
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// The selection rect for multi-line selection
|
2015-02-03 01:11:29 +08:00
|
|
|
selGraphItem = scene->addRect(0,0,0,0,selectionRectColor.darker(120),selectionRectColor);
|
2015-02-02 18:01:01 +08:00
|
|
|
selGraphItem->setZValue(-1.0); // behind all other items
|
2014-12-09 20:17:08 +08:00
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// copy action (ie. Ctrl+C)
|
2015-02-03 01:11:29 +08:00
|
|
|
copyAction = new QAction(this);
|
2015-01-27 02:32:33 +08:00
|
|
|
copyAction->setIcon(QIcon::fromTheme("edit-copy"));
|
|
|
|
copyAction->setText(tr("Copy"));
|
2014-11-12 21:11:25 +08:00
|
|
|
copyAction->setShortcut(QKeySequence::Copy);
|
2015-02-03 01:11:29 +08:00
|
|
|
copyAction->setEnabled(false);
|
2015-02-08 00:37:04 +08:00
|
|
|
connect(copyAction, &QAction::triggered, this, [this]() { copySelectedText(); });
|
2014-11-12 21:11:25 +08:00
|
|
|
addAction(copyAction);
|
2015-01-27 02:32:33 +08:00
|
|
|
|
2015-02-08 00:37:04 +08:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
// Ctrl+Insert shortcut
|
|
|
|
QShortcut* copyCtrlInsShortcut = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Insert), this);
|
|
|
|
connect(copyCtrlInsShortcut, &QShortcut::activated, this, [this]() { copySelectedText(); });
|
|
|
|
#endif
|
|
|
|
|
2015-01-27 02:32:33 +08:00
|
|
|
// select all action (ie. Ctrl+A)
|
|
|
|
QAction* selectAllAction = new QAction(this);
|
|
|
|
selectAllAction->setIcon(QIcon::fromTheme("edit-select-all"));
|
|
|
|
selectAllAction->setText(tr("Select all"));
|
|
|
|
selectAllAction->setShortcut(QKeySequence::SelectAll);
|
2015-02-08 00:37:04 +08:00
|
|
|
connect(selectAllAction, &QAction::triggered, this, [this]() { selectAll(); });
|
2015-01-27 02:32:33 +08:00
|
|
|
addAction(selectAllAction);
|
2015-01-04 22:18:23 +08:00
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// This timer is used to scroll the view while the user is
|
|
|
|
// moving the mouse past the top/bottom edge of the widget while selecting.
|
2015-01-04 22:18:23 +08:00
|
|
|
selectionTimer = new QTimer(this);
|
2015-02-02 18:01:01 +08:00
|
|
|
selectionTimer->setInterval(1000/30);
|
2015-01-04 22:18:23 +08:00
|
|
|
selectionTimer->setSingleShot(false);
|
|
|
|
selectionTimer->start();
|
|
|
|
connect(selectionTimer, &QTimer::timeout, this, &ChatLog::onSelectionTimerTimeout);
|
2015-01-07 20:05:28 +08:00
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// Background worker
|
|
|
|
// Updates the layout of all chat-lines after a resize
|
2015-01-07 22:03:02 +08:00
|
|
|
workerTimer = new QTimer(this);
|
|
|
|
workerTimer->setSingleShot(false);
|
2015-02-01 01:37:20 +08:00
|
|
|
workerTimer->setInterval(5);
|
2015-01-25 21:06:06 +08:00
|
|
|
connect(workerTimer, &QTimer::timeout, this, &ChatLog::onWorkerTimeout);
|
2015-02-11 23:32:42 +08:00
|
|
|
|
|
|
|
// selection
|
|
|
|
connect(this, &ChatLog::selectionChanged, this, [this]() {
|
|
|
|
copyAction->setEnabled(hasTextToBeCopied());
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
copySelectedText(true);
|
|
|
|
#endif
|
|
|
|
});
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-02-08 17:11:55 +08:00
|
|
|
ChatLog::~ChatLog()
|
|
|
|
{
|
2015-02-10 00:48:54 +08:00
|
|
|
// Remove chatlines from scene
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr l : lines)
|
2015-02-10 00:48:54 +08:00
|
|
|
l->removeFromScene();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (busyNotification)
|
2015-02-10 00:48:54 +08:00
|
|
|
busyNotification->removeFromScene();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (typingNotification)
|
2015-02-10 00:48:54 +08:00
|
|
|
typingNotification->removeFromScene();
|
2015-02-08 17:11:55 +08:00
|
|
|
}
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
void ChatLog::clearSelection()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode == None)
|
2015-01-15 02:43:52 +08:00
|
|
|
return;
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i=selFirstRow; i<=selLastRow; ++i)
|
2014-12-09 20:17:08 +08:00
|
|
|
lines[i]->selectionCleared();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2014-12-09 20:17:08 +08:00
|
|
|
selFirstRow = -1;
|
2014-11-12 21:11:25 +08:00
|
|
|
selLastRow = -1;
|
2014-12-09 20:17:08 +08:00
|
|
|
selClickedCol = -1;
|
|
|
|
selClickedRow = -1;
|
|
|
|
|
|
|
|
selectionMode = None;
|
2015-02-11 23:32:42 +08:00
|
|
|
emit selectionChanged();
|
2014-12-10 04:47:25 +08:00
|
|
|
|
|
|
|
updateMultiSelectionRect();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QRect ChatLog::getVisibleRect() const
|
|
|
|
{
|
2015-01-15 18:48:41 +08:00
|
|
|
return mapToScene(viewport()->rect()).boundingRect().toRect();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::updateSceneRect()
|
|
|
|
{
|
2015-01-14 18:27:52 +08:00
|
|
|
setSceneRect(calculateSceneRect());
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
void ChatLog::layout(int start, int end, qreal width)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.empty())
|
2015-01-25 21:06:06 +08:00
|
|
|
return;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-06 17:27:03 +08:00
|
|
|
qreal h = 0.0;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-15 01:22:42 +08:00
|
|
|
// Line at start-1 is considered to have the correct position. All following lines are
|
|
|
|
// positioned in respect to this line.
|
2015-03-21 02:38:10 +08:00
|
|
|
if (start - 1 >= 0)
|
2015-02-01 00:49:19 +08:00
|
|
|
h = lines[start - 1]->sceneBoundingRect().bottom() + lineSpacing;
|
2015-01-06 17:27:03 +08:00
|
|
|
|
|
|
|
start = clamp<int>(start, 0, lines.size());
|
|
|
|
end = clamp<int>(end + 1, 0, lines.size());
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i = start; i < end; ++i)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-01-04 20:29:14 +08:00
|
|
|
ChatLine* l = lines[i].get();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2014-12-10 04:47:25 +08:00
|
|
|
l->layout(width, QPointF(0.0, h));
|
2015-02-01 00:49:19 +08:00
|
|
|
h += l->sceneBoundingRect().height() + lineSpacing;
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::mousePressEvent(QMouseEvent* ev)
|
|
|
|
{
|
|
|
|
QGraphicsView::mousePressEvent(ev);
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (ev->button() == Qt::LeftButton)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
|
|
|
clickPos = ev->pos();
|
|
|
|
clearSelection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::mouseReleaseEvent(QMouseEvent* ev)
|
|
|
|
{
|
|
|
|
QGraphicsView::mouseReleaseEvent(ev);
|
2015-01-04 21:21:05 +08:00
|
|
|
|
2015-01-04 22:18:23 +08:00
|
|
|
selectionScrollDir = NoDirection;
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::mouseMoveEvent(QMouseEvent* ev)
|
|
|
|
{
|
|
|
|
QGraphicsView::mouseMoveEvent(ev);
|
|
|
|
|
|
|
|
QPointF scenePos = mapToScene(ev->pos());
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (ev->buttons() & Qt::LeftButton)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-01-04 22:18:23 +08:00
|
|
|
//autoscroll
|
2015-03-21 02:38:10 +08:00
|
|
|
if (ev->pos().y() < 0)
|
2015-01-04 22:18:23 +08:00
|
|
|
selectionScrollDir = Up;
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (ev->pos().y() > height())
|
2015-01-04 22:18:23 +08:00
|
|
|
selectionScrollDir = Down;
|
|
|
|
else
|
|
|
|
selectionScrollDir = NoDirection;
|
|
|
|
|
|
|
|
//select
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode == None && (clickPos - ev->pos()).manhattanLength() > QApplication::startDragDistance())
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
|
|
|
QPointF sceneClickPos = mapToScene(clickPos.toPoint());
|
2015-01-15 18:48:41 +08:00
|
|
|
ChatLine::Ptr line = findLineByPosY(scenePos.y());
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
ChatLineContent* content = getContentFromPos(sceneClickPos);
|
2015-03-21 02:38:10 +08:00
|
|
|
if (content)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2014-12-09 20:17:08 +08:00
|
|
|
selClickedRow = content->getRow();
|
|
|
|
selClickedCol = content->getColumn();
|
|
|
|
selFirstRow = content->getRow();
|
|
|
|
selLastRow = content->getRow();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
content->selectionStarted(sceneClickPos);
|
|
|
|
|
2014-12-09 20:17:08 +08:00
|
|
|
selectionMode = Precise;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
// ungrab mouse grabber
|
2015-03-21 02:38:10 +08:00
|
|
|
if (scene->mouseGrabberItem())
|
2014-11-12 21:11:25 +08:00
|
|
|
scene->mouseGrabberItem()->ungrabMouse();
|
|
|
|
}
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (line.get())
|
2015-01-15 02:43:52 +08:00
|
|
|
{
|
2015-01-20 17:31:50 +08:00
|
|
|
selClickedRow = line->getRow();
|
2015-01-15 02:43:52 +08:00
|
|
|
selFirstRow = selClickedRow;
|
|
|
|
selLastRow = selClickedRow;
|
|
|
|
|
|
|
|
selectionMode = Multi;
|
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode != None)
|
2015-01-02 18:25:07 +08:00
|
|
|
{
|
|
|
|
ChatLineContent* content = getContentFromPos(scenePos);
|
2015-01-15 18:48:41 +08:00
|
|
|
ChatLine::Ptr line = findLineByPosY(scenePos.y());
|
2015-01-15 02:43:52 +08:00
|
|
|
|
|
|
|
int row;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (content)
|
2015-01-02 18:25:07 +08:00
|
|
|
{
|
2015-01-15 02:43:52 +08:00
|
|
|
row = content->getRow();
|
2015-01-02 18:25:07 +08:00
|
|
|
int col = content->getColumn();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (row == selClickedRow && col == selClickedCol)
|
2015-01-02 18:25:07 +08:00
|
|
|
{
|
|
|
|
selectionMode = Precise;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-02 18:25:07 +08:00
|
|
|
content->selectionMouseMove(scenePos);
|
|
|
|
selGraphItem->hide();
|
|
|
|
}
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (col != selClickedCol)
|
2015-01-02 18:25:07 +08:00
|
|
|
{
|
|
|
|
selectionMode = Multi;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-02 18:25:07 +08:00
|
|
|
lines[selClickedRow]->selectionCleared();
|
2015-01-15 02:43:52 +08:00
|
|
|
}
|
|
|
|
}
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (line.get())
|
2015-01-15 02:43:52 +08:00
|
|
|
{
|
2015-01-20 17:31:50 +08:00
|
|
|
row = line->getRow();
|
2015-01-15 02:43:52 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (row != selClickedRow)
|
2015-01-15 02:43:52 +08:00
|
|
|
{
|
|
|
|
selectionMode = Multi;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-15 02:43:52 +08:00
|
|
|
lines[selClickedRow]->selectionCleared();
|
2015-01-02 18:25:07 +08:00
|
|
|
}
|
2015-01-15 02:43:52 +08:00
|
|
|
|
2014-12-09 20:17:08 +08:00
|
|
|
}
|
2015-02-15 19:15:46 +08:00
|
|
|
else
|
|
|
|
return;
|
2015-01-15 02:43:52 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (row >= selClickedRow)
|
2015-01-15 02:43:52 +08:00
|
|
|
selLastRow = row;
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (row <= selClickedRow)
|
2015-01-15 02:43:52 +08:00
|
|
|
selFirstRow = row;
|
|
|
|
|
|
|
|
updateMultiSelectionRect();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
2015-02-10 21:36:53 +08:00
|
|
|
|
2015-02-11 23:32:42 +08:00
|
|
|
emit selectionChanged();
|
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-15 02:43:52 +08:00
|
|
|
//Much faster than QGraphicsScene::itemAt()!
|
2014-11-12 21:11:25 +08:00
|
|
|
ChatLineContent* ChatLog::getContentFromPos(QPointF scenePos) const
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.empty())
|
2015-01-07 00:47:57 +08:00
|
|
|
return nullptr;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-15 18:48:41 +08:00
|
|
|
auto itr = std::lower_bound(lines.cbegin(), lines.cend(), scenePos.y(), ChatLine::lessThanBSRectBottom);
|
2015-01-07 00:47:57 +08:00
|
|
|
|
2015-01-14 17:34:52 +08:00
|
|
|
//find content
|
2015-03-21 02:38:10 +08:00
|
|
|
if (itr != lines.cend() && (*itr)->sceneBoundingRect().contains(scenePos))
|
2015-01-15 18:48:41 +08:00
|
|
|
return (*itr)->getContent(scenePos);
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-01-14 06:59:38 +08:00
|
|
|
bool ChatLog::isOverSelection(QPointF scenePos) const
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode == Precise)
|
2014-12-09 20:17:08 +08:00
|
|
|
{
|
|
|
|
ChatLineContent* content = getContentFromPos(scenePos);
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (content)
|
2014-12-09 20:17:08 +08:00
|
|
|
return content->isOverSelection(scenePos);
|
|
|
|
}
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (selectionMode == Multi)
|
2014-12-09 20:17:08 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selGraphItem->rect().contains(scenePos))
|
2014-12-09 20:17:08 +08:00
|
|
|
return true;
|
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-14 06:59:38 +08:00
|
|
|
qreal ChatLog::useableWidth() const
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2014-12-10 04:47:25 +08:00
|
|
|
return width() - verticalScrollBar()->sizeHint().width() - margins.right() - margins.left();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-05 21:06:14 +08:00
|
|
|
void ChatLog::reposition(int start, int end, qreal deltaY)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.isEmpty())
|
2014-11-12 21:11:25 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
start = clamp<int>(start, 0, lines.size() - 1);
|
|
|
|
end = clamp<int>(end + 1, 0, lines.size());
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i = start; i < end; ++i)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-01-04 20:29:14 +08:00
|
|
|
ChatLine* l = lines[i].get();
|
2015-01-05 21:06:14 +08:00
|
|
|
l->moveBy(deltaY);
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 02:28:27 +08:00
|
|
|
void ChatLog::insertChatlineAtBottom(ChatLine::Ptr l)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!l.get())
|
2015-01-05 01:21:35 +08:00
|
|
|
return;
|
|
|
|
|
2015-01-14 06:59:38 +08:00
|
|
|
bool stickToBtm = stickToBottom();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-14 06:59:38 +08:00
|
|
|
//insert
|
2015-01-20 17:31:50 +08:00
|
|
|
l->setRow(lines.size());
|
2015-01-14 06:59:38 +08:00
|
|
|
l->addToScene(scene);
|
2014-11-12 21:11:25 +08:00
|
|
|
lines.append(l);
|
|
|
|
|
2015-01-05 02:28:27 +08:00
|
|
|
//partial refresh
|
2015-01-20 17:31:50 +08:00
|
|
|
layout(lines.last()->getRow(), lines.size(), useableWidth());
|
2014-11-12 21:11:25 +08:00
|
|
|
updateSceneRect();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (stickToBtm)
|
2014-11-12 21:11:25 +08:00
|
|
|
scrollToBottom();
|
|
|
|
|
|
|
|
checkVisibility();
|
2015-01-17 18:35:09 +08:00
|
|
|
updateTypingNotification();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-05 02:28:27 +08:00
|
|
|
void ChatLog::insertChatlineOnTop(ChatLine::Ptr l)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!l.get())
|
2015-01-05 02:28:27 +08:00
|
|
|
return;
|
|
|
|
|
2015-01-17 18:31:57 +08:00
|
|
|
insertChatlineOnTop(QList<ChatLine::Ptr>() << l);
|
2015-01-05 02:28:27 +08:00
|
|
|
}
|
|
|
|
|
2015-01-05 17:51:01 +08:00
|
|
|
void ChatLog::insertChatlineOnTop(const QList<ChatLine::Ptr>& newLines)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (newLines.isEmpty())
|
2015-01-05 17:51:01 +08:00
|
|
|
return;
|
|
|
|
|
2015-02-10 21:30:49 +08:00
|
|
|
QGraphicsScene::ItemIndexMethod oldIndexMeth = scene->itemIndexMethod();
|
|
|
|
scene->setItemIndexMethod(QGraphicsScene::NoIndex);
|
|
|
|
|
|
|
|
// alloc space for old and new lines
|
|
|
|
QVector<ChatLine::Ptr> combLines;
|
|
|
|
combLines.reserve(newLines.size() + lines.size());
|
2015-01-05 17:51:01 +08:00
|
|
|
|
2015-02-10 21:30:49 +08:00
|
|
|
// add the new lines
|
|
|
|
int i = 0;
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr l : newLines)
|
2015-01-05 17:51:01 +08:00
|
|
|
{
|
|
|
|
l->addToScene(scene);
|
2015-02-01 00:39:25 +08:00
|
|
|
l->visibilityChanged(false);
|
2015-02-10 21:30:49 +08:00
|
|
|
l->setRow(i++);
|
|
|
|
combLines.push_back(l);
|
|
|
|
}
|
|
|
|
|
|
|
|
// add the old lines
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr l : lines)
|
2015-02-10 21:30:49 +08:00
|
|
|
{
|
|
|
|
l->setRow(i++);
|
|
|
|
combLines.push_back(l);
|
2015-01-05 17:51:01 +08:00
|
|
|
}
|
|
|
|
|
2015-02-10 21:30:49 +08:00
|
|
|
lines = combLines;
|
|
|
|
|
|
|
|
scene->setItemIndexMethod(oldIndexMeth);
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
// redo layout
|
|
|
|
startResizeWorker();
|
2015-01-05 17:51:01 +08:00
|
|
|
}
|
|
|
|
|
2015-01-14 06:59:38 +08:00
|
|
|
bool ChatLog::stickToBottom() const
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
|
|
|
return verticalScrollBar()->value() == verticalScrollBar()->maximum();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::scrollToBottom()
|
|
|
|
{
|
2015-01-14 06:59:38 +08:00
|
|
|
updateSceneRect();
|
2014-11-12 21:11:25 +08:00
|
|
|
verticalScrollBar()->setValue(verticalScrollBar()->maximum());
|
|
|
|
}
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
void ChatLog::startResizeWorker()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.empty())
|
2015-01-27 02:15:29 +08:00
|
|
|
return;
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
// (re)start the worker
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!workerTimer->isActive())
|
2015-01-25 21:06:06 +08:00
|
|
|
{
|
|
|
|
// these values must not be reevaluated while the worker is running
|
|
|
|
workerStb = stickToBottom();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!visibleLines.empty())
|
2015-01-25 21:06:06 +08:00
|
|
|
workerAnchorLine = visibleLines.first();
|
|
|
|
}
|
|
|
|
|
2015-03-08 13:31:21 +08:00
|
|
|
// switch to busy scene displaying the busy notification if there is a lot
|
|
|
|
// of text to be resized
|
|
|
|
int txt = 0;
|
2015-03-17 01:56:26 +08:00
|
|
|
for (ChatLine::Ptr line : lines)
|
2015-03-08 13:31:21 +08:00
|
|
|
{
|
2015-03-17 01:56:26 +08:00
|
|
|
if (txt > 500000)
|
2015-03-08 13:31:21 +08:00
|
|
|
break;
|
2015-03-17 01:56:26 +08:00
|
|
|
for (ChatLineContent* content : line->content)
|
2015-03-08 13:31:21 +08:00
|
|
|
txt += content->getText().size();
|
|
|
|
}
|
2015-03-17 01:56:26 +08:00
|
|
|
if (txt > 500000)
|
2015-03-08 13:31:21 +08:00
|
|
|
setScene(busyScene);
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
workerLastIndex = 0;
|
|
|
|
workerTimer->start();
|
|
|
|
|
|
|
|
verticalScrollBar()->hide();
|
|
|
|
}
|
|
|
|
|
2015-01-19 22:19:54 +08:00
|
|
|
void ChatLog::mouseDoubleClickEvent(QMouseEvent *ev)
|
|
|
|
{
|
|
|
|
QPointF scenePos = mapToScene(ev->pos());
|
|
|
|
ChatLineContent* content = getContentFromPos(scenePos);
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (content)
|
2015-01-19 22:19:54 +08:00
|
|
|
{
|
|
|
|
content->selectionDoubleClick(scenePos);
|
|
|
|
selClickedCol = content->getColumn();
|
|
|
|
selClickedRow = content->getRow();
|
|
|
|
selFirstRow = content->getRow();
|
|
|
|
selLastRow = content->getRow();
|
|
|
|
selectionMode = Precise;
|
2015-02-11 23:32:42 +08:00
|
|
|
|
|
|
|
emit selectionChanged();
|
2015-01-19 22:19:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
QString ChatLog::getSelectedText() const
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode == Precise)
|
2014-12-09 20:17:08 +08:00
|
|
|
{
|
|
|
|
return lines[selClickedRow]->content[selClickedCol]->getSelectedText();
|
|
|
|
}
|
2015-03-21 02:38:10 +08:00
|
|
|
else if (selectionMode == Multi)
|
2014-12-09 20:17:08 +08:00
|
|
|
{
|
|
|
|
// build a nicely formatted message
|
|
|
|
QString out;
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i=selFirstRow; i<=selLastRow; ++i)
|
2014-12-09 20:17:08 +08:00
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines[i]->content[1]->getText().isEmpty())
|
2015-01-15 03:31:40 +08:00
|
|
|
continue;
|
|
|
|
|
2015-02-11 23:37:02 +08:00
|
|
|
QString timestamp = lines[i]->content[2]->getText().isEmpty() ? tr("pending") : lines[i]->content[2]->getText();
|
|
|
|
QString author = lines[i]->content[0]->getText();
|
|
|
|
QString msg = lines[i]->content[1]->getText();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-02-18 10:44:23 +08:00
|
|
|
out += QString(out.isEmpty() ? "[%2] %1: %3" : "\n[%2] %1: %3").arg(author, timestamp, msg);
|
2014-12-09 20:17:08 +08:00
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2014-12-09 20:17:08 +08:00
|
|
|
return out;
|
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2014-12-09 20:17:08 +08:00
|
|
|
return QString();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 04:11:03 +08:00
|
|
|
bool ChatLog::isEmpty() const
|
|
|
|
{
|
|
|
|
return lines.isEmpty();
|
|
|
|
}
|
|
|
|
|
2015-01-04 21:21:05 +08:00
|
|
|
bool ChatLog::hasTextToBeCopied() const
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
2015-01-04 21:21:05 +08:00
|
|
|
return selectionMode != None;
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-10 18:57:46 +08:00
|
|
|
ChatLine::Ptr ChatLog::getTypingNotification() const
|
|
|
|
{
|
|
|
|
return typingNotification;
|
|
|
|
}
|
|
|
|
|
2015-01-25 21:34:36 +08:00
|
|
|
QVector<ChatLine::Ptr> ChatLog::getLines()
|
|
|
|
{
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
void ChatLog::clear()
|
|
|
|
{
|
|
|
|
clearSelection();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr l : lines)
|
2015-01-04 20:29:14 +08:00
|
|
|
l->removeFromScene();
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
lines.clear();
|
2015-01-04 20:29:14 +08:00
|
|
|
visibleLines.clear();
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
updateSceneRect();
|
|
|
|
}
|
|
|
|
|
2015-02-08 17:32:52 +08:00
|
|
|
void ChatLog::copySelectedText(bool toSelectionBuffer) const
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
|
|
|
QString text = getSelectedText();
|
|
|
|
QClipboard* clipboard = QApplication::clipboard();
|
2015-02-08 00:39:56 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (clipboard && !text.isNull())
|
2015-02-08 17:32:52 +08:00
|
|
|
clipboard->setText(text, toSelectionBuffer ? QClipboard::Selection : QClipboard::Clipboard);
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
void ChatLog::setBusyNotification(ChatLine::Ptr notification)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!notification.get())
|
2015-01-25 21:06:06 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
busyNotification = notification;
|
|
|
|
busyNotification->addToScene(busyScene);
|
|
|
|
busyNotification->visibilityChanged(true);
|
|
|
|
}
|
|
|
|
|
2015-01-10 18:57:46 +08:00
|
|
|
void ChatLog::setTypingNotification(ChatLine::Ptr notification)
|
|
|
|
{
|
|
|
|
typingNotification = notification;
|
|
|
|
typingNotification->visibilityChanged(true);
|
|
|
|
typingNotification->setVisible(false);
|
|
|
|
typingNotification->addToScene(scene);
|
|
|
|
updateTypingNotification();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::setTypingNotificationVisible(bool visible)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (typingNotification.get())
|
2015-01-10 18:57:46 +08:00
|
|
|
{
|
|
|
|
typingNotification->setVisible(visible);
|
|
|
|
updateTypingNotification();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
void ChatLog::scrollToLine(ChatLine::Ptr line)
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!line.get())
|
2015-01-25 21:06:06 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
updateSceneRect();
|
2015-02-01 00:49:19 +08:00
|
|
|
verticalScrollBar()->setValue(line->sceneBoundingRect().top());
|
2015-01-25 21:06:06 +08:00
|
|
|
}
|
|
|
|
|
2015-01-27 02:32:33 +08:00
|
|
|
void ChatLog::selectAll()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.empty())
|
2015-01-27 02:32:33 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
clearSelection();
|
|
|
|
|
|
|
|
selectionMode = Multi;
|
|
|
|
selFirstRow = 0;
|
|
|
|
selLastRow = lines.size()-1;
|
|
|
|
|
2015-02-11 23:32:42 +08:00
|
|
|
emit selectionChanged();
|
2015-01-27 02:32:33 +08:00
|
|
|
updateMultiSelectionRect();
|
|
|
|
}
|
|
|
|
|
2015-02-15 18:43:01 +08:00
|
|
|
void ChatLog::forceRelayout()
|
|
|
|
{
|
|
|
|
startResizeWorker();
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
void ChatLog::checkVisibility()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (lines.empty())
|
2015-01-04 04:19:52 +08:00
|
|
|
return;
|
|
|
|
|
2015-01-14 17:34:52 +08:00
|
|
|
// find first visible line
|
2015-01-15 18:48:41 +08:00
|
|
|
auto lowerBound = std::lower_bound(lines.cbegin(), lines.cend(), getVisibleRect().top(), ChatLine::lessThanBSRectBottom);
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-01-14 17:34:52 +08:00
|
|
|
// find last visible line
|
2015-02-02 18:01:01 +08:00
|
|
|
auto upperBound = std::lower_bound(lowerBound, lines.cend(), getVisibleRect().bottom(), ChatLine::lessThanBSRectTop);
|
2014-11-12 21:11:25 +08:00
|
|
|
|
|
|
|
// set visibilty
|
2015-01-04 20:29:14 +08:00
|
|
|
QList<ChatLine::Ptr> newVisibleLines;
|
2015-03-21 02:38:10 +08:00
|
|
|
for (auto itr = lowerBound; itr != upperBound; ++itr)
|
2014-11-12 21:11:25 +08:00
|
|
|
{
|
|
|
|
newVisibleLines.append(*itr);
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!visibleLines.contains(*itr))
|
2014-11-12 21:11:25 +08:00
|
|
|
(*itr)->visibilityChanged(true);
|
|
|
|
|
|
|
|
visibleLines.removeOne(*itr);
|
|
|
|
}
|
|
|
|
|
2015-01-14 17:34:52 +08:00
|
|
|
// these lines are no longer visible
|
2015-03-21 02:38:10 +08:00
|
|
|
for (ChatLine::Ptr line : visibleLines)
|
2014-11-12 21:11:25 +08:00
|
|
|
line->visibilityChanged(false);
|
|
|
|
|
|
|
|
visibleLines = newVisibleLines;
|
|
|
|
|
2015-01-05 17:51:01 +08:00
|
|
|
// enforce order
|
2015-01-15 18:48:41 +08:00
|
|
|
std::sort(visibleLines.begin(), visibleLines.end(), ChatLine::lessThanRowIndex);
|
2014-11-12 21:11:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
//if (!visibleLines.empty())
|
2015-02-11 23:32:42 +08:00
|
|
|
// qDebug() << "visible from " << visibleLines.first()->getRow() << "to " << visibleLines.last()->getRow() << " total " << visibleLines.size();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::scrollContentsBy(int dx, int dy)
|
|
|
|
{
|
|
|
|
QGraphicsView::scrollContentsBy(dx, dy);
|
2015-01-25 21:06:06 +08:00
|
|
|
checkVisibility();
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::resizeEvent(QResizeEvent* ev)
|
|
|
|
{
|
2015-02-04 00:28:42 +08:00
|
|
|
bool stb = stickToBottom();
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (ev->size().width() != ev->oldSize().width())
|
2015-02-04 00:28:42 +08:00
|
|
|
{
|
|
|
|
startResizeWorker();
|
|
|
|
stb = false; // let the resize worker handle it
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:11:25 +08:00
|
|
|
QGraphicsView::resizeEvent(ev);
|
2015-01-27 02:01:18 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (stb)
|
2015-02-04 00:28:42 +08:00
|
|
|
scrollToBottom();
|
|
|
|
|
2015-01-27 02:01:18 +08:00
|
|
|
updateBusyNotification();
|
2014-12-10 04:47:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::updateMultiSelectionRect()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode == Multi && selFirstRow >= 0 && selLastRow >= 0)
|
2014-12-10 04:47:25 +08:00
|
|
|
{
|
|
|
|
QRectF selBBox;
|
2015-02-01 00:49:19 +08:00
|
|
|
selBBox = selBBox.united(lines[selFirstRow]->sceneBoundingRect());
|
|
|
|
selBBox = selBBox.united(lines[selLastRow]->sceneBoundingRect());
|
2014-12-10 04:47:25 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selGraphItem->rect() != selBBox)
|
2015-02-02 18:01:01 +08:00
|
|
|
scene->invalidate(selGraphItem->rect());
|
2015-02-01 02:19:13 +08:00
|
|
|
|
2014-12-10 04:47:25 +08:00
|
|
|
selGraphItem->setRect(selBBox);
|
|
|
|
selGraphItem->show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
selGraphItem->hide();
|
|
|
|
}
|
2014-11-12 21:11:25 +08:00
|
|
|
}
|
2015-01-04 22:18:23 +08:00
|
|
|
|
2015-01-10 18:57:46 +08:00
|
|
|
void ChatLog::updateTypingNotification()
|
|
|
|
{
|
|
|
|
ChatLine* notification = typingNotification.get();
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!notification)
|
2015-01-10 18:57:46 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
qreal posY = 0.0;
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (!lines.empty())
|
2015-02-01 00:49:19 +08:00
|
|
|
posY = lines.last()->sceneBoundingRect().bottom() + lineSpacing;
|
2015-01-10 18:57:46 +08:00
|
|
|
|
|
|
|
notification->layout(useableWidth(), QPointF(0.0, posY));
|
|
|
|
}
|
|
|
|
|
2015-01-25 21:06:06 +08:00
|
|
|
void ChatLog::updateBusyNotification()
|
|
|
|
{
|
2015-03-21 02:38:10 +08:00
|
|
|
if (busyNotification.get())
|
2015-01-25 21:06:06 +08:00
|
|
|
{
|
|
|
|
//repoisition the busy notification (centered)
|
|
|
|
busyNotification->layout(useableWidth(), getVisibleRect().topLeft() + QPointF(0, getVisibleRect().height()/2.0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-15 18:48:41 +08:00
|
|
|
ChatLine::Ptr ChatLog::findLineByPosY(qreal yPos) const
|
2015-01-15 02:43:52 +08:00
|
|
|
{
|
2015-01-15 18:48:41 +08:00
|
|
|
auto itr = std::lower_bound(lines.cbegin(), lines.cend(), yPos, ChatLine::lessThanBSRectBottom);
|
2015-01-15 02:43:52 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (itr != lines.cend())
|
2015-01-15 18:48:41 +08:00
|
|
|
return *itr;
|
2015-01-15 02:43:52 +08:00
|
|
|
|
|
|
|
return ChatLine::Ptr();
|
|
|
|
}
|
|
|
|
|
2015-01-14 18:27:52 +08:00
|
|
|
QRectF ChatLog::calculateSceneRect() const
|
|
|
|
{
|
2015-02-01 00:49:19 +08:00
|
|
|
qreal bottom = (lines.empty() ? 0.0 : lines.last()->sceneBoundingRect().bottom());
|
2015-01-14 18:27:52 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (typingNotification.get() != nullptr)
|
2015-02-01 00:49:19 +08:00
|
|
|
bottom += typingNotification->sceneBoundingRect().height() + lineSpacing;
|
2015-01-14 18:27:52 +08:00
|
|
|
|
|
|
|
return QRectF(-margins.left(), -margins.top(), useableWidth(), bottom + margins.bottom() + margins.top());
|
|
|
|
}
|
|
|
|
|
2015-01-04 22:18:23 +08:00
|
|
|
void ChatLog::onSelectionTimerTimeout()
|
|
|
|
{
|
|
|
|
const int scrollSpeed = 10;
|
|
|
|
|
|
|
|
switch(selectionScrollDir)
|
|
|
|
{
|
|
|
|
case Up:
|
|
|
|
verticalScrollBar()->setValue(verticalScrollBar()->value() - scrollSpeed);
|
|
|
|
break;
|
|
|
|
case Down:
|
|
|
|
verticalScrollBar()->setValue(verticalScrollBar()->value() + scrollSpeed);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-01-25 21:06:06 +08:00
|
|
|
|
|
|
|
void ChatLog::onWorkerTimeout()
|
|
|
|
{
|
|
|
|
// Fairly arbitrary but
|
|
|
|
// large values will make the UI unresponsive
|
2015-02-01 01:37:20 +08:00
|
|
|
const int stepSize = 50;
|
2015-01-25 21:06:06 +08:00
|
|
|
|
|
|
|
layout(workerLastIndex, workerLastIndex+stepSize, useableWidth());
|
|
|
|
workerLastIndex += stepSize;
|
|
|
|
|
|
|
|
// done?
|
2015-03-21 02:38:10 +08:00
|
|
|
if (workerLastIndex >= lines.size())
|
2015-01-25 21:06:06 +08:00
|
|
|
{
|
|
|
|
workerTimer->stop();
|
|
|
|
|
|
|
|
// switch back to the scene containing the chat messages
|
|
|
|
setScene(scene);
|
|
|
|
|
|
|
|
// make sure everything gets updated
|
|
|
|
updateSceneRect();
|
|
|
|
checkVisibility();
|
|
|
|
updateTypingNotification();
|
|
|
|
updateMultiSelectionRect();
|
|
|
|
|
|
|
|
// scroll
|
2015-03-21 02:38:10 +08:00
|
|
|
if (workerStb)
|
2015-01-25 21:06:06 +08:00
|
|
|
scrollToBottom();
|
|
|
|
else
|
|
|
|
scrollToLine(workerAnchorLine);
|
|
|
|
|
|
|
|
// don't keep a Ptr to the anchor line
|
|
|
|
workerAnchorLine = ChatLine::Ptr();
|
|
|
|
|
|
|
|
// hidden during busy screen
|
|
|
|
verticalScrollBar()->show();
|
|
|
|
}
|
|
|
|
}
|
2015-01-27 16:58:08 +08:00
|
|
|
|
2015-02-03 01:11:29 +08:00
|
|
|
void ChatLog::showEvent(QShowEvent*)
|
2015-01-27 16:58:08 +08:00
|
|
|
{
|
|
|
|
// Empty.
|
|
|
|
// The default implementation calls centerOn - for some reason - causing
|
|
|
|
// the scrollbar to move.
|
|
|
|
}
|
2015-02-03 01:11:29 +08:00
|
|
|
|
|
|
|
void ChatLog::focusInEvent(QFocusEvent* ev)
|
|
|
|
{
|
|
|
|
QGraphicsView::focusInEvent(ev);
|
2015-02-03 17:33:46 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode != None)
|
2015-02-03 17:33:46 +08:00
|
|
|
{
|
|
|
|
selGraphItem->setBrush(QBrush(selectionRectColor));
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i=selFirstRow; i<=selLastRow; ++i)
|
2015-02-03 17:33:46 +08:00
|
|
|
lines[i]->selectionFocusChanged(true);
|
|
|
|
}
|
2015-02-03 01:11:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatLog::focusOutEvent(QFocusEvent* ev)
|
|
|
|
{
|
|
|
|
QGraphicsView::focusOutEvent(ev);
|
2015-02-03 17:33:46 +08:00
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
if (selectionMode != None)
|
2015-02-03 17:33:46 +08:00
|
|
|
{
|
|
|
|
selGraphItem->setBrush(QBrush(selectionRectColor.lighter(120)));
|
|
|
|
|
2015-03-21 02:38:10 +08:00
|
|
|
for (int i=selFirstRow; i<=selLastRow; ++i)
|
2015-02-03 17:33:46 +08:00
|
|
|
lines[i]->selectionFocusChanged(false);
|
|
|
|
}
|
2015-02-03 01:11:29 +08:00
|
|
|
}
|