1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/chatlog/content/text.cpp

285 lines
6.2 KiB
C++
Raw Normal View History

2014-11-16 19:58:43 +08:00
/*
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.
*/
2014-11-12 21:11:25 +08:00
#include "text.h"
2014-11-16 19:40:44 +08:00
#include "../customtextdocument.h"
2014-11-12 21:11:25 +08:00
#include <QFontMetrics>
#include <QPainter>
#include <QPalette>
#include <QDebug>
#include <QTextBlock>
#include <QAbstractTextDocumentLayout>
#include <QApplication>
#include <QGraphicsSceneMouseEvent>
#include <QDesktopServices>
2015-01-09 22:50:13 +08:00
#include <QTextFragment>
2014-11-12 21:11:25 +08:00
2015-01-05 01:21:35 +08:00
Text::Text(const QString& txt, QFont font, bool enableElide, const QString &rwText)
: rawText(rwText)
2014-11-12 21:11:25 +08:00
, elide(enableElide)
2014-11-16 19:40:44 +08:00
, defFont(font)
2014-11-12 21:11:25 +08:00
{
setText(txt);
setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton);
}
Text::~Text()
{
delete doc;
}
void Text::setText(const QString& txt)
{
2015-01-03 22:03:33 +08:00
text = txt;
dirty = true;
2015-01-03 20:20:53 +08:00
2015-01-19 18:14:53 +08:00
regenerate();
2014-11-12 21:11:25 +08:00
}
void Text::setWidth(qreal w)
{
if(w == width)
return;
width = w;
2015-01-19 18:14:53 +08:00
dirty = true;
2014-11-12 21:11:25 +08:00
if(elide)
{
QFontMetrics metrics = QFontMetrics(defFont);
2014-11-12 21:11:25 +08:00
elidedText = metrics.elidedText(text, Qt::ElideRight, width);
}
2015-01-19 18:14:53 +08:00
regenerate();
2014-11-12 21:11:25 +08:00
}
void Text::selectionMouseMove(QPointF scenePos)
{
int cur = cursorFromPos(scenePos);
if(cur >= 0)
2014-12-09 20:11:42 +08:00
{
2014-11-12 21:11:25 +08:00
cursor.setPosition(cur, QTextCursor::KeepAnchor);
2015-01-09 22:50:13 +08:00
selectedText.clear();
QTextBlock block = cursor.block();
for(QTextBlock::Iterator itr = block.begin(); itr!=block.end(); ++itr)
{
int pos = itr.fragment().position(); //fragment position -> position of the first character in the fragment
if(itr.fragment().charFormat().isImageFormat())
{
QTextImageFormat imgFmt = itr.fragment().charFormat().toImageFormat();
QString key = imgFmt.name(); //img key (eg. key::D for :D)
QString rune = key.mid(4);
if(pos >= cursor.selectionStart() && pos < cursor.selectionEnd())
{
selectedText += rune;
pos++;
}
}
else
{
2015-01-19 17:08:43 +08:00
for(QChar c : itr.fragment().text())
2015-01-09 22:50:13 +08:00
{
if(pos >= cursor.selectionStart() && pos < cursor.selectionEnd())
selectedText += c;
pos++;
}
}
}
2014-12-09 20:11:42 +08:00
}
2014-11-12 21:11:25 +08:00
update();
}
void Text::selectionStarted(QPointF scenePos)
{
int cur = cursorFromPos(scenePos);
if(cur >= 0)
cursor.setPosition(cur);
}
void Text::selectionCleared()
{
2015-01-19 18:14:53 +08:00
cursor.clearSelection();
2014-12-09 20:11:42 +08:00
selectedText.clear();
selectedText.squeeze();
2014-11-12 21:11:25 +08:00
update();
}
void Text::selectAll()
{
2015-01-19 18:14:53 +08:00
regenerate();
2014-11-12 21:11:25 +08:00
cursor.select(QTextCursor::Document);
2014-12-09 20:11:42 +08:00
selectedText = text;
2014-11-12 21:11:25 +08:00
update();
}
bool Text::isOverSelection(QPointF scenePos) const
{
int cur = cursorFromPos(scenePos);
if(cur >= 0 && cursor.selectionStart() < cur && cursor.selectionEnd() >= cur)
return true;
return false;
}
QString Text::getSelectedText() const
{
2014-12-09 20:11:42 +08:00
return selectedText;
2014-11-12 21:11:25 +08:00
}
QRectF Text::boundingSceneRect() const
{
return QRectF(scenePos(), size);
}
QRectF Text::boundingRect() const
{
return QRectF(QPointF(0, 0), size);
}
void Text::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget)
{
if(doc)
{
// draw selection
QAbstractTextDocumentLayout::PaintContext ctx;
QAbstractTextDocumentLayout::Selection sel;
sel.cursor = cursor;
sel.format.setBackground(QApplication::palette().color(QPalette::Highlight));
sel.format.setForeground(QApplication::palette().color(QPalette::HighlightedText));
ctx.selections.append(sel);
// draw text
doc->documentLayout()->draw(painter, ctx);
}
Q_UNUSED(option)
Q_UNUSED(widget)
}
void Text::visibilityChanged(bool visible)
{
isVisible = visible;
2015-01-19 18:14:53 +08:00
regenerate();
update();
2014-11-12 21:11:25 +08:00
}
2014-12-10 23:45:12 +08:00
qreal Text::getAscent() const
2014-11-12 21:11:25 +08:00
{
2015-01-19 18:14:53 +08:00
return ascent;
2014-11-12 21:11:25 +08:00
}
void Text::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
if(event->button() == Qt::LeftButton)
event->accept(); // grabber
}
void Text::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
if(!doc)
return;
2014-11-12 21:11:25 +08:00
QString anchor = doc->documentLayout()->anchorAt(event->pos());
2015-01-19 18:14:53 +08:00
// open anchor in browser
2014-11-12 21:11:25 +08:00
if(!anchor.isEmpty())
QDesktopServices::openUrl(anchor);
}
2014-12-09 20:11:42 +08:00
QString Text::getText() const
{
2015-01-05 01:21:35 +08:00
return rawText;
2014-12-09 20:11:42 +08:00
}
2015-01-19 18:14:53 +08:00
void Text::regenerate()
2014-11-12 21:11:25 +08:00
{
if(!doc)
2014-11-12 21:11:25 +08:00
{
2014-11-16 19:40:44 +08:00
doc = new CustomTextDocument();
doc->setDefaultFont(defFont);
dirty = true;
}
2014-11-12 21:11:25 +08:00
if(dirty)
{
2014-11-12 21:11:25 +08:00
if(!elide)
{
doc->setHtml(text);
}
else
{
QTextOption opt;
opt.setWrapMode(QTextOption::NoWrap);
doc->setDefaultTextOption(opt);
doc->setPlainText(elidedText);
}
cursor = QTextCursor(doc);
dirty = false;
2014-11-12 21:11:25 +08:00
}
2015-01-19 18:14:53 +08:00
// width & layout
2014-11-12 21:11:25 +08:00
doc->setTextWidth(width);
doc->documentLayout()->update();
2015-01-19 18:14:53 +08:00
// update ascent
2014-11-12 21:11:25 +08:00
if(doc->firstBlock().layout()->lineCount() > 0)
2015-01-19 18:14:53 +08:00
ascent = doc->firstBlock().layout()->lineAt(0).ascent();
2014-11-12 21:11:25 +08:00
2015-01-19 18:14:53 +08:00
// let the scene know about our change in size
2014-11-12 21:11:25 +08:00
if(size != idealSize())
prepareGeometryChange();
2015-01-19 18:14:53 +08:00
// get the new width and height
size = idealSize();
2015-01-19 18:14:53 +08:00
// if we are not visible -> free mem
if(!isVisible && !cursor.hasSelection())
freeResources();
2014-11-12 21:11:25 +08:00
}
void Text::freeResources()
{
2015-01-19 18:14:53 +08:00
delete doc;
doc = nullptr;
cursor = QTextCursor();
2014-11-12 21:11:25 +08:00
}
QSizeF Text::idealSize()
{
if(doc)
return QSizeF(qMin(doc->idealWidth(), width), doc->size().height());
2014-11-12 21:11:25 +08:00
return size;
2014-11-12 21:11:25 +08:00
}
int Text::cursorFromPos(QPointF scenePos) const
{
if(doc)
2014-12-11 02:31:27 +08:00
return doc->documentLayout()->hitTest(mapFromScene(scenePos), Qt::FuzzyHit);
2014-11-12 21:11:25 +08:00
return -1;
}