2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free 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.
|
|
|
|
|
|
|
|
It 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
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "style.h"
|
|
|
|
|
|
|
|
#include "flattextarea.h"
|
2014-11-18 12:40:43 +00:00
|
|
|
#include "window.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-16 09:31:10 +00:00
|
|
|
FlatTextarea::FlatTextarea(QWidget *parent, const style::flatTextarea &st, const QString &pholder, const QString &v) : QTextEdit(v, parent),
|
|
|
|
_ph(pholder), _oldtext(v), _phVisible(!v.length()),
|
|
|
|
a_phLeft(_phVisible ? 0 : st.phShift), a_phAlpha(_phVisible ? 1 : 0), a_phColor(st.phColor->c),
|
2014-11-18 12:40:43 +00:00
|
|
|
_st(st), _undoAvailable(false), _redoAvailable(false), _fakeMargin(0),
|
2014-06-16 09:31:10 +00:00
|
|
|
_touchPress(false), _touchRightButton(false), _touchMove(false), _replacingEmojis(false) {
|
2014-05-30 08:53:19 +00:00
|
|
|
setAcceptRichText(false);
|
|
|
|
resize(_st.width, _st.font->height);
|
|
|
|
|
|
|
|
setFont(_st.font->f);
|
|
|
|
setAlignment(_st.align);
|
|
|
|
|
|
|
|
_phelided = _st.font->m.elidedText(_ph, Qt::ElideRight, width() - _st.textMrg.left() - _st.textMrg.right() - _st.phPos.x() - 1);
|
|
|
|
|
|
|
|
QPalette p(palette());
|
|
|
|
p.setColor(QPalette::Text, _st.textColor->c);
|
|
|
|
setPalette(p);
|
|
|
|
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
|
|
|
|
setFrameStyle(QFrame::NoFrame | QFrame::Plain);
|
|
|
|
viewport()->setAutoFillBackground(false);
|
|
|
|
|
|
|
|
setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
|
|
|
switch (cScale()) {
|
|
|
|
case dbisOneAndQuarter: _fakeMargin = 1; break;
|
|
|
|
case dbisOneAndHalf: _fakeMargin = 2; break;
|
|
|
|
case dbisTwo: _fakeMargin = 4; break;
|
|
|
|
}
|
|
|
|
setStyleSheet(qsl("QTextEdit { margin: %1px; }").arg(_fakeMargin));
|
|
|
|
|
|
|
|
viewport()->setAttribute(Qt::WA_AcceptTouchEvents);
|
|
|
|
_touchTimer.setSingleShot(true);
|
|
|
|
connect(&_touchTimer, SIGNAL(timeout()), this, SLOT(onTouchTimer()));
|
|
|
|
|
|
|
|
connect(document(), SIGNAL(contentsChange(int, int, int)), this, SLOT(onDocumentContentsChange(int, int, int)));
|
|
|
|
connect(document(), SIGNAL(contentsChanged()), this, SLOT(onDocumentContentsChanged()));
|
2014-11-18 12:40:43 +00:00
|
|
|
connect(this, SIGNAL(undoAvailable(bool)), this, SLOT(onUndoAvailable(bool)));
|
|
|
|
connect(this, SIGNAL(redoAvailable(bool)), this, SLOT(onRedoAvailable(bool)));
|
|
|
|
if (App::wnd()) connect(this, SIGNAL(selectionChanged()), App::wnd(), SLOT(updateGlobalMenu()));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::onTouchTimer() {
|
|
|
|
_touchRightButton = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlatTextarea::viewportEvent(QEvent *e) {
|
|
|
|
if (e->type() == QEvent::TouchBegin || e->type() == QEvent::TouchUpdate || e->type() == QEvent::TouchEnd || e->type() == QEvent::TouchCancel) {
|
|
|
|
QTouchEvent *ev = static_cast<QTouchEvent*>(e);
|
|
|
|
if (ev->device()->type() == QTouchDevice::TouchScreen) {
|
|
|
|
touchEvent(ev);
|
|
|
|
return QTextEdit::viewportEvent(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QTextEdit::viewportEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::touchEvent(QTouchEvent *e) {
|
|
|
|
switch (e->type()) {
|
|
|
|
case QEvent::TouchBegin:
|
|
|
|
if (_touchPress || e->touchPoints().isEmpty()) return;
|
|
|
|
_touchTimer.start(QApplication::startDragTime());
|
|
|
|
_touchPress = true;
|
|
|
|
_touchMove = _touchRightButton = false;
|
|
|
|
_touchStart = e->touchPoints().cbegin()->screenPos().toPoint();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QEvent::TouchUpdate:
|
|
|
|
if (!_touchPress || e->touchPoints().isEmpty()) return;
|
|
|
|
if (!_touchMove && (e->touchPoints().cbegin()->screenPos().toPoint() - _touchStart).manhattanLength() >= QApplication::startDragDistance()) {
|
|
|
|
_touchMove = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QEvent::TouchEnd:
|
|
|
|
if (!_touchPress) return;
|
|
|
|
if (!_touchMove && window()) {
|
|
|
|
Qt::MouseButton btn(_touchRightButton ? Qt::RightButton : Qt::LeftButton);
|
|
|
|
QPoint mapped(mapFromGlobal(_touchStart)), winMapped(window()->mapFromGlobal(_touchStart));
|
|
|
|
|
|
|
|
if (_touchRightButton) {
|
|
|
|
QContextMenuEvent contextEvent(QContextMenuEvent::Mouse, mapped, _touchStart);
|
|
|
|
contextMenuEvent(&contextEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_touchTimer.stop();
|
|
|
|
_touchPress = _touchMove = _touchRightButton = false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QEvent::TouchCancel:
|
|
|
|
_touchPress = false;
|
|
|
|
_touchTimer.stop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect FlatTextarea::getTextRect() const {
|
|
|
|
return rect().marginsRemoved(_st.textMrg + st::textRectMargins);
|
|
|
|
}
|
|
|
|
|
2014-10-25 15:40:20 +00:00
|
|
|
int32 FlatTextarea::fakeMargin() const {
|
|
|
|
return _fakeMargin;
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void FlatTextarea::paintEvent(QPaintEvent *e) {
|
|
|
|
QPainter p(viewport());
|
|
|
|
p.fillRect(rect(), _st.bgColor->b);
|
|
|
|
bool phDraw = _phVisible;
|
|
|
|
if (animating()) {
|
|
|
|
p.setOpacity(a_phAlpha.current());
|
|
|
|
phDraw = true;
|
|
|
|
}
|
|
|
|
if (phDraw) {
|
|
|
|
p.save();
|
|
|
|
p.setClipRect(rect());
|
|
|
|
QRect phRect(_st.textMrg.left() - _fakeMargin + _st.phPos.x() + a_phLeft.current(), _st.textMrg.top() - _fakeMargin + _st.phPos.y(), width() - _st.textMrg.left() - _st.textMrg.right(), height() - _st.textMrg.top() - _st.textMrg.bottom());
|
|
|
|
p.setFont(_st.font->f);
|
|
|
|
p.setPen(a_phColor.current());
|
|
|
|
p.drawText(phRect, _ph, QTextOption(_st.phAlign));
|
|
|
|
p.restore();
|
|
|
|
}
|
|
|
|
QTextEdit::paintEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::focusInEvent(QFocusEvent *e) {
|
|
|
|
a_phColor.start(_st.phFocusColor->c);
|
|
|
|
anim::start(this);
|
|
|
|
QTextEdit::focusInEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::focusOutEvent(QFocusEvent *e) {
|
|
|
|
a_phColor.start(_st.phColor->c);
|
|
|
|
anim::start(this);
|
|
|
|
QTextEdit::focusOutEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize FlatTextarea::sizeHint() const {
|
|
|
|
return geometry().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize FlatTextarea::minimumSizeHint() const {
|
|
|
|
return geometry().size();
|
|
|
|
}
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
EmojiPtr FlatTextarea::getSingleEmoji() const {
|
|
|
|
QString text;
|
|
|
|
QTextFragment fragment;
|
|
|
|
|
|
|
|
getSingleEmojiFragment(text, fragment);
|
|
|
|
|
|
|
|
if (!text.isEmpty()) {
|
2015-01-02 16:11:18 +00:00
|
|
|
QTextCharFormat format = fragment.charFormat();
|
2015-05-08 12:45:14 +00:00
|
|
|
return emojiFromUrl(static_cast<const QTextImageFormat*>(&format)->name());
|
2015-01-02 14:55:24 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-15 17:19:24 +00:00
|
|
|
void FlatTextarea::getMentionHashtagBotCommandStart(QString &start) const {
|
2015-03-19 09:18:19 +00:00
|
|
|
int32 pos = textCursor().position();
|
2015-03-24 10:00:27 +00:00
|
|
|
if (textCursor().anchor() != pos) return;
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
QTextBlock block = doc->findBlock(pos);
|
|
|
|
for (QTextBlock::Iterator iter = block.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fr(iter.fragment());
|
|
|
|
if (!fr.isValid()) continue;
|
|
|
|
|
|
|
|
int32 p = fr.position(), e = (p + fr.length());
|
|
|
|
if (p >= pos || e < pos) continue;
|
|
|
|
|
|
|
|
QTextCharFormat f = fr.charFormat();
|
|
|
|
if (f.isImageFormat()) continue;
|
|
|
|
|
2015-06-15 17:19:24 +00:00
|
|
|
bool mentionInCommand = false;
|
2015-03-19 09:18:19 +00:00
|
|
|
QString t(fr.text());
|
|
|
|
for (int i = pos - p; i > 0; --i) {
|
|
|
|
if (t.at(i - 1) == '@') {
|
2015-03-24 10:00:27 +00:00
|
|
|
if ((pos - p - i < 1 || t.at(i).isLetter()) && (i < 2 || !(t.at(i - 2).isLetterOrNumber() || t.at(i - 2) == '_'))) {
|
|
|
|
start = t.mid(i - 1, pos - p - i + 1);
|
2015-06-15 17:19:24 +00:00
|
|
|
} else if ((pos - p - i < 1 || t.at(i).isLetter()) && i > 2 && (t.at(i - 2).isLetterOrNumber() || t.at(i - 2) == '_') && !mentionInCommand) {
|
|
|
|
mentionInCommand = true;
|
|
|
|
--i;
|
|
|
|
continue;
|
2015-03-24 10:00:27 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else if (t.at(i - 1) == '#') {
|
|
|
|
if (i < 2 || !(t.at(i - 2).isLetterOrNumber() || t.at(i - 2) == '_')) {
|
|
|
|
start = t.mid(i - 1, pos - p - i + 1);
|
|
|
|
}
|
|
|
|
return;
|
2015-06-15 17:19:24 +00:00
|
|
|
} else if (t.at(i - 1) == '/') {
|
|
|
|
if (i < 2) {
|
|
|
|
start = t.mid(i - 1, pos - p - i + 1);
|
|
|
|
}
|
|
|
|
return;
|
2015-03-19 09:18:19 +00:00
|
|
|
}
|
2015-06-15 17:19:24 +00:00
|
|
|
if (pos - p - i > 127 || (!mentionInCommand && (pos - p - i > 63))) break;
|
2015-03-19 09:18:19 +00:00
|
|
|
if (!t.at(i - 1).isLetterOrNumber() && t.at(i - 1) != '_') break;
|
|
|
|
}
|
2015-03-24 10:00:27 +00:00
|
|
|
return;
|
2015-03-19 09:18:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-15 17:19:24 +00:00
|
|
|
void FlatTextarea::onMentionHashtagOrBotCommandInsert(QString str) {
|
2015-03-19 09:18:19 +00:00
|
|
|
QTextCursor c(textCursor());
|
|
|
|
int32 pos = c.position();
|
|
|
|
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
QTextBlock block = doc->findBlock(pos);
|
|
|
|
for (QTextBlock::Iterator iter = block.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fr(iter.fragment());
|
|
|
|
if (!fr.isValid()) continue;
|
|
|
|
|
|
|
|
int32 p = fr.position(), e = (p + fr.length());
|
|
|
|
if (p >= pos || e < pos) continue;
|
|
|
|
|
|
|
|
QTextCharFormat f = fr.charFormat();
|
|
|
|
if (f.isImageFormat()) continue;
|
|
|
|
|
2015-06-15 17:19:24 +00:00
|
|
|
bool mentionInCommand = false;
|
2015-03-19 09:18:19 +00:00
|
|
|
QString t(fr.text());
|
|
|
|
for (int i = pos - p; i > 0; --i) {
|
2015-06-15 17:19:24 +00:00
|
|
|
if (t.at(i - 1) == '@' || t.at(i - 1) == '#' || t.at(i - 1) == '/') {
|
2015-03-24 10:00:27 +00:00
|
|
|
if ((i == pos - p || t.at(i).isLetter() || t.at(i - 1) == '#') && (i < 2 || !(t.at(i - 2).isLetterOrNumber() || t.at(i - 2) == '_'))) {
|
|
|
|
c.setPosition(p + i - 1, QTextCursor::MoveAnchor);
|
2015-03-19 09:18:19 +00:00
|
|
|
int till = p + i;
|
2015-06-15 17:19:24 +00:00
|
|
|
for (; (till < e) && (till - p - i + 1 < str.size()); ++till) {
|
|
|
|
if (t.at(till - p).toLower() != str.at(till - p - i + 1).toLower()) {
|
2015-03-19 09:18:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-06-15 17:19:24 +00:00
|
|
|
if (till - p - i + 1 == str.size() && till < e && t.at(till - p) == ' ') {
|
2015-03-19 09:18:19 +00:00
|
|
|
++till;
|
|
|
|
}
|
|
|
|
c.setPosition(till, QTextCursor::KeepAnchor);
|
2015-06-15 17:19:24 +00:00
|
|
|
c.insertText(str + ' ');
|
2015-03-19 09:18:19 +00:00
|
|
|
return;
|
2015-06-15 17:19:24 +00:00
|
|
|
} else if ((i == pos - p || t.at(i).isLetter()) && t.at(i - 1) == '@' && i > 2 && (t.at(i - 2).isLetterOrNumber() || t.at(i - 2) == '_') && !mentionInCommand) {
|
|
|
|
mentionInCommand = true;
|
|
|
|
--i;
|
|
|
|
continue;
|
2015-03-19 09:18:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-06-15 17:19:24 +00:00
|
|
|
if (pos - p - i > 127 || (!mentionInCommand && (pos - p - i > 63))) break;
|
2015-03-19 09:18:19 +00:00
|
|
|
if (!t.at(i - 1).isLetterOrNumber() && t.at(i - 1) != '_') break;
|
|
|
|
}
|
2015-06-15 17:19:24 +00:00
|
|
|
break;
|
2015-03-19 09:18:19 +00:00
|
|
|
}
|
2015-06-15 17:19:24 +00:00
|
|
|
c.insertText(str + ' ');
|
2015-03-19 09:18:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
void FlatTextarea::getSingleEmojiFragment(QString &text, QTextFragment &fragment) const {
|
|
|
|
int32 end = textCursor().position(), start = end - 1;
|
|
|
|
if (textCursor().anchor() != end) return;
|
|
|
|
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
QTextBlock from = doc->findBlock(start), till = doc->findBlock(end);
|
|
|
|
if (till.isValid()) till = till.next();
|
|
|
|
|
|
|
|
for (QTextBlock b = from; b != till; b = b.next()) {
|
|
|
|
for (QTextBlock::Iterator iter = b.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fr(iter.fragment());
|
|
|
|
if (!fr.isValid()) continue;
|
|
|
|
|
|
|
|
int32 p = fr.position(), e = (p + fr.length());
|
|
|
|
if (p >= end || e <= start) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextCharFormat f = fr.charFormat();
|
|
|
|
QString t(fr.text());
|
|
|
|
if (p < start) {
|
|
|
|
t = t.mid(start - p, end - start);
|
|
|
|
} else if (e > end) {
|
|
|
|
t = t.mid(0, end - p);
|
|
|
|
}
|
|
|
|
if (f.isImageFormat() && !t.isEmpty() && t.at(0).unicode() == QChar::ObjectReplacementCharacter) {
|
|
|
|
QString imageName = static_cast<QTextImageFormat*>(&f)->name();
|
2015-05-08 12:45:14 +00:00
|
|
|
if (imageName.startsWith(QLatin1String("emoji://e."))) {
|
2015-01-02 14:55:24 +00:00
|
|
|
fragment = fr;
|
|
|
|
text = t;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::removeSingleEmoji() {
|
|
|
|
QString text;
|
|
|
|
QTextFragment fragment;
|
|
|
|
|
|
|
|
getSingleEmojiFragment(text, fragment);
|
|
|
|
|
|
|
|
if (!text.isEmpty()) {
|
|
|
|
QTextCursor t(textCursor());
|
|
|
|
t.setPosition(fragment.position());
|
|
|
|
t.setPosition(fragment.position() + fragment.length(), QTextCursor::KeepAnchor);
|
|
|
|
t.removeSelectedText();
|
|
|
|
setTextCursor(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
QString FlatTextarea::getText(int32 start, int32 end) const {
|
|
|
|
if (end >= 0 && end <= start) return QString();
|
|
|
|
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
bool full = (start == 0) && (end < 0);
|
|
|
|
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
QTextBlock from = full ? doc->begin() : doc->findBlock(start), till = (end < 0) ? doc->end() : doc->findBlock(end);
|
|
|
|
if (till.isValid()) till = till.next();
|
|
|
|
|
|
|
|
int32 possibleLen = 0;
|
|
|
|
for (QTextBlock b = from; b != till; b = b.next()) {
|
|
|
|
possibleLen += b.length();
|
|
|
|
}
|
|
|
|
QString result;
|
|
|
|
result.reserve(possibleLen + 1);
|
|
|
|
if (!full && end < 0) {
|
|
|
|
end = possibleLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (QTextBlock b = from; b != till; b = b.next()) {
|
|
|
|
for (QTextBlock::Iterator iter = b.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fragment(iter.fragment());
|
|
|
|
if (!fragment.isValid()) continue;
|
|
|
|
|
|
|
|
int32 p = full ? 0 : fragment.position(), e = full ? 0 : (p + fragment.length());
|
|
|
|
if (!full) {
|
|
|
|
if (p >= end || e <= start) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextCharFormat f = fragment.charFormat();
|
|
|
|
QString emojiText;
|
|
|
|
QString t(fragment.text());
|
|
|
|
if (!full) {
|
|
|
|
if (p < start) {
|
2014-11-12 20:18:00 +00:00
|
|
|
t = t.mid(start - p, end - start);
|
2014-05-30 08:53:19 +00:00
|
|
|
} else if (e > end) {
|
|
|
|
t = t.mid(0, end - p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QChar *ub = t.data(), *uc = ub, *ue = uc + t.size();
|
|
|
|
for (; uc != ue; ++uc) {
|
|
|
|
switch (uc->unicode()) {
|
|
|
|
case 0xfdd0: // QTextBeginningOfFrame
|
|
|
|
case 0xfdd1: // QTextEndOfFrame
|
|
|
|
case QChar::ParagraphSeparator:
|
|
|
|
case QChar::LineSeparator:
|
|
|
|
*uc = QLatin1Char('\n');
|
|
|
|
break;
|
|
|
|
case QChar::Nbsp:
|
|
|
|
*uc = QLatin1Char(' ');
|
|
|
|
break;
|
|
|
|
case QChar::ObjectReplacementCharacter:
|
|
|
|
if (emojiText.isEmpty() && f.isImageFormat()) {
|
|
|
|
QString imageName = static_cast<QTextImageFormat*>(&f)->name();
|
2015-05-08 12:45:14 +00:00
|
|
|
if (imageName.startsWith(QLatin1String("emoji://e."))) {
|
|
|
|
if (EmojiPtr emoji = emojiFromUrl(imageName)) {
|
2015-05-12 15:01:49 +00:00
|
|
|
emojiText = emojiString(emoji);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (uc > ub) result.append(ub, uc - ub);
|
|
|
|
if (!emojiText.isEmpty()) result.append(emojiText);
|
|
|
|
ub = uc + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (uc > ub) result.append(ub, uc - ub);
|
|
|
|
}
|
|
|
|
result.append('\n');
|
|
|
|
}
|
|
|
|
result.chop(1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlatTextarea::hasText() const {
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
QTextBlock from = doc->begin(), till = doc->end();
|
|
|
|
|
|
|
|
if (from == till) return false;
|
|
|
|
|
|
|
|
for (QTextBlock::Iterator iter = from.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fragment(iter.fragment());
|
|
|
|
if (!fragment.isValid()) continue;
|
|
|
|
if (!fragment.text().isEmpty()) return true;
|
|
|
|
}
|
|
|
|
return (from.next() != till);
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:40:43 +00:00
|
|
|
bool FlatTextarea::isUndoAvailable() const {
|
|
|
|
return _undoAvailable;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlatTextarea::isRedoAvailable() const {
|
|
|
|
return _redoAvailable;
|
|
|
|
}
|
|
|
|
|
2015-04-06 22:15:29 +00:00
|
|
|
void FlatTextarea::parseLinks() { // some code is duplicated in text.cpp!
|
|
|
|
LinkRanges newLinks;
|
|
|
|
|
|
|
|
QString text(toPlainText());
|
|
|
|
if (text.isEmpty()) {
|
|
|
|
if (!_links.isEmpty()) {
|
|
|
|
_links.clear();
|
|
|
|
emit linksChanged();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initLinkSets();
|
|
|
|
|
|
|
|
int32 len = text.size();
|
|
|
|
const QChar *start = text.unicode(), *end = start + text.size();
|
|
|
|
for (int32 offset = 0, matchOffset = offset; offset < len;) {
|
|
|
|
QRegularExpressionMatch m = reDomain().match(text, matchOffset);
|
|
|
|
if (!m.hasMatch()) break;
|
|
|
|
|
|
|
|
int32 domainOffset = m.capturedStart();
|
|
|
|
|
|
|
|
QString protocol = m.captured(1).toLower();
|
|
|
|
QString topDomain = m.captured(3).toLower();
|
|
|
|
|
|
|
|
bool isProtocolValid = protocol.isEmpty() || validProtocols().contains(hashCrc32(protocol.constData(), protocol.size() * sizeof(QChar)));
|
|
|
|
bool isTopDomainValid = !protocol.isEmpty() || validTopDomains().contains(hashCrc32(topDomain.constData(), topDomain.size() * sizeof(QChar)));
|
|
|
|
|
|
|
|
if (protocol.isEmpty() && domainOffset > offset + 1 && *(start + domainOffset - 1) == QChar('@')) {
|
|
|
|
QString forMailName = text.mid(offset, domainOffset - offset - 1);
|
|
|
|
QRegularExpressionMatch mMailName = reMailName().match(forMailName);
|
|
|
|
if (mMailName.hasMatch()) {
|
|
|
|
offset = matchOffset = m.capturedEnd();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!isProtocolValid || !isTopDomainValid) {
|
|
|
|
offset = matchOffset = m.capturedEnd();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStack<const QChar*> parenth;
|
|
|
|
const QChar *domainEnd = start + m.capturedEnd(), *p = domainEnd;
|
|
|
|
for (; p < end; ++p) {
|
|
|
|
QChar ch(*p);
|
|
|
|
if (chIsLinkEnd(ch)) break; // link finished
|
|
|
|
if (chIsAlmostLinkEnd(ch)) {
|
|
|
|
const QChar *endTest = p + 1;
|
|
|
|
while (endTest < end && chIsAlmostLinkEnd(*endTest)) {
|
|
|
|
++endTest;
|
|
|
|
}
|
|
|
|
if (endTest >= end || chIsLinkEnd(*endTest)) {
|
|
|
|
break; // link finished at p
|
|
|
|
}
|
|
|
|
p = endTest;
|
|
|
|
ch = *p;
|
|
|
|
}
|
|
|
|
if (ch == '(' || ch == '[' || ch == '{' || ch == '<') {
|
|
|
|
parenth.push(p);
|
|
|
|
} else if (ch == ')' || ch == ']' || ch == '}' || ch == '>') {
|
|
|
|
if (parenth.isEmpty()) break;
|
|
|
|
const QChar *q = parenth.pop(), open(*q);
|
|
|
|
if ((ch == ')' && open != '(') || (ch == ']' && open != '[') || (ch == '}' && open != '{') || (ch == '>' && open != '<')) {
|
|
|
|
p = q;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p > domainEnd) { // check, that domain ended
|
|
|
|
if (domainEnd->unicode() != '/' && domainEnd->unicode() != '?') {
|
|
|
|
matchOffset = domainEnd - start;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newLinks.push_back(qMakePair(domainOffset - 1, p - start - domainOffset + 2));
|
|
|
|
offset = matchOffset = p - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newLinks != _links) {
|
|
|
|
_links = newLinks;
|
|
|
|
emit linksChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList FlatTextarea::linksList() const {
|
|
|
|
QStringList result;
|
|
|
|
if (!_links.isEmpty()) {
|
|
|
|
QString text(toPlainText());
|
|
|
|
for (LinkRanges::const_iterator i = _links.cbegin(), e = _links.cend(); i != e; ++i) {
|
|
|
|
result.push_back(text.mid(i->first + 1, i->second - 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::insertFromMimeData(const QMimeData *source) {
|
|
|
|
QTextEdit::insertFromMimeData(source);
|
|
|
|
emit spacedReturnedPasted();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void FlatTextarea::insertEmoji(EmojiPtr emoji, QTextCursor c) {
|
|
|
|
c.removeSelectedText();
|
|
|
|
|
|
|
|
QPixmap img(App::emojiSingle(emoji, _st.font->height));
|
2015-05-08 12:45:14 +00:00
|
|
|
QString url = qsl("emoji://e.") + QString::number(emojiKey(emoji), 16);
|
2014-05-30 08:53:19 +00:00
|
|
|
document()->addResource(QTextDocument::ImageResource, QUrl(url), QVariant(img));
|
|
|
|
QTextImageFormat imageFormat;
|
2014-06-15 20:39:30 +00:00
|
|
|
imageFormat.setWidth(img.width() / cIntRetinaFactor());
|
|
|
|
imageFormat.setHeight(img.height() / cIntRetinaFactor());
|
2014-05-30 08:53:19 +00:00
|
|
|
imageFormat.setName(url);
|
|
|
|
imageFormat.setVerticalAlignment(QTextCharFormat::AlignBaseline);
|
|
|
|
c.insertImage(imageFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::processDocumentContentsChange(int position, int charsAdded) {
|
2014-11-23 21:49:14 +00:00
|
|
|
int32 emojiPosition = 0, emojiLen = 0;
|
2014-05-30 08:53:19 +00:00
|
|
|
const EmojiData *emoji = 0;
|
|
|
|
|
|
|
|
QTextDocument *doc(document());
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
int32 start = position, end = position + charsAdded;
|
|
|
|
QTextBlock from = doc->findBlock(start), till = doc->findBlock(end);
|
|
|
|
if (till.isValid()) till = till.next();
|
|
|
|
|
|
|
|
for (QTextBlock b = from; b != till; b = b.next()) {
|
|
|
|
for (QTextBlock::Iterator iter = b.begin(); !iter.atEnd(); ++iter) {
|
|
|
|
QTextFragment fragment(iter.fragment());
|
|
|
|
if (!fragment.isValid()) continue;
|
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
int32 fp = fragment.position(), fe = fp + fragment.length();
|
|
|
|
if (fp >= end || fe <= start) {
|
2014-05-30 08:53:19 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString t(fragment.text());
|
2015-05-08 12:45:14 +00:00
|
|
|
const QChar *ch = t.constData(), *e = ch + t.size();
|
|
|
|
for (; ch != e; ++ch) {
|
|
|
|
emoji = emojiFromText(ch, e, emojiLen);
|
|
|
|
if (emoji) {
|
|
|
|
emojiPosition = fp + (ch - t.constData());
|
|
|
|
break;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-05-08 12:45:14 +00:00
|
|
|
if (ch + 1 < e && ch->isHighSurrogate() && (ch + 1)->isLowSurrogate()) ++ch;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
if (emoji) break;
|
|
|
|
}
|
|
|
|
if (emoji) break;
|
|
|
|
}
|
|
|
|
if (emoji) {
|
|
|
|
QTextCursor c(doc->docHandle(), emojiPosition);
|
2014-11-23 21:49:14 +00:00
|
|
|
c.setPosition(emojiPosition + emojiLen, QTextCursor::KeepAnchor);
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 removedUpto = c.position();
|
|
|
|
|
|
|
|
insertEmoji(emoji, c);
|
|
|
|
|
|
|
|
for (Insertions::iterator i = _insertions.begin(), e = _insertions.end(); i != e; ++i) {
|
|
|
|
if (i->first >= removedUpto) {
|
|
|
|
i->first -= removedUpto - emojiPosition - 1;
|
|
|
|
} else if (i->first >= emojiPosition) {
|
|
|
|
i->second -= removedUpto - emojiPosition;
|
|
|
|
i->first = emojiPosition + 1;
|
|
|
|
} else if (i->first + i->second > emojiPosition + 1) {
|
|
|
|
i->second -= qMin(removedUpto, i->first + i->second) - emojiPosition;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
charsAdded -= removedUpto - position;
|
|
|
|
position = emojiPosition + 1;
|
|
|
|
|
|
|
|
emoji = 0;
|
|
|
|
emojiPosition = 0;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::onDocumentContentsChange(int position, int charsRemoved, int charsAdded) {
|
2015-04-06 22:15:29 +00:00
|
|
|
if (!_links.isEmpty()) {
|
|
|
|
bool changed = false;
|
|
|
|
for (LinkRanges::iterator i = _links.begin(); i != _links.end();) {
|
|
|
|
if (i->first + i->second <= position) {
|
|
|
|
++i;
|
|
|
|
} else if (i->first >= position + charsRemoved) {
|
|
|
|
i->first += charsAdded - charsRemoved;
|
|
|
|
++i;
|
|
|
|
} else {
|
|
|
|
i = _links.erase(i);
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (changed) emit linksChanged();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
if (_replacingEmojis || document()->availableRedoSteps() > 0) return;
|
|
|
|
|
|
|
|
const int takeBack = 3;
|
|
|
|
|
|
|
|
position -= takeBack;
|
|
|
|
charsAdded += takeBack;
|
|
|
|
if (position < 0) {
|
|
|
|
charsAdded += position;
|
|
|
|
position = 0;
|
|
|
|
}
|
|
|
|
if (charsAdded <= 0) return;
|
|
|
|
|
|
|
|
_insertions.push_back(Insertion(position, charsAdded));
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::onDocumentContentsChanged() {
|
|
|
|
if (_replacingEmojis) return;
|
|
|
|
|
|
|
|
if (!_insertions.isEmpty()) {
|
|
|
|
if (document()->availableRedoSteps() > 0) {
|
|
|
|
_insertions.clear();
|
|
|
|
} else {
|
|
|
|
_replacingEmojis = true;
|
|
|
|
do {
|
|
|
|
Insertion i = _insertions.front();
|
|
|
|
_insertions.pop_front();
|
|
|
|
if (i.second > 0) {
|
|
|
|
processDocumentContentsChange(i.first, i.second);
|
|
|
|
}
|
|
|
|
} while (!_insertions.isEmpty());
|
|
|
|
_replacingEmojis = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString curText(getText());
|
|
|
|
if (_oldtext != curText) {
|
|
|
|
_oldtext = curText;
|
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
updatePlaceholder();
|
2014-11-18 12:40:43 +00:00
|
|
|
if (App::wnd()) App::wnd()->updateGlobalMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::onUndoAvailable(bool avail) {
|
|
|
|
_undoAvailable = avail;
|
|
|
|
if (App::wnd()) App::wnd()->updateGlobalMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::onRedoAvailable(bool avail) {
|
|
|
|
_redoAvailable = avail;
|
|
|
|
if (App::wnd()) App::wnd()->updateGlobalMenu();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FlatTextarea::animStep(float64 ms) {
|
|
|
|
float dt = ms / _st.phDuration;
|
|
|
|
bool res = true;
|
|
|
|
if (dt >= 1) {
|
|
|
|
res = false;
|
|
|
|
a_phLeft.finish();
|
|
|
|
a_phAlpha.finish();
|
|
|
|
a_phColor.finish();
|
|
|
|
a_phLeft = anim::ivalue(a_phLeft.current());
|
|
|
|
a_phAlpha = anim::fvalue(a_phAlpha.current());
|
|
|
|
a_phColor = anim::cvalue(a_phColor.current());
|
|
|
|
} else {
|
|
|
|
a_phLeft.update(dt, _st.phLeftFunc);
|
|
|
|
a_phAlpha.update(dt, _st.phAlphaFunc);
|
|
|
|
a_phColor.update(dt, _st.phColorFunc);
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2015-05-29 18:52:43 +00:00
|
|
|
const QString &FlatTextarea::getLastText() const {
|
|
|
|
return _oldtext;
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void FlatTextarea::updatePlaceholder() {
|
2015-05-29 18:52:43 +00:00
|
|
|
bool vis = getLastText().isEmpty();
|
2014-05-30 08:53:19 +00:00
|
|
|
if (vis == _phVisible) return;
|
|
|
|
|
|
|
|
a_phLeft.start(vis ? 0 : _st.phShift);
|
|
|
|
a_phAlpha.start(vis ? 1 : 0);
|
|
|
|
anim::start(this);
|
|
|
|
|
|
|
|
_phVisible = vis;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMimeData *FlatTextarea::createMimeDataFromSelection() const {
|
|
|
|
QMimeData *result = new QMimeData();
|
|
|
|
QTextCursor c(textCursor());
|
|
|
|
int32 start = c.selectionStart(), end = c.selectionEnd();
|
|
|
|
if (end > start) {
|
|
|
|
result->setText(getText(start, end));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::keyPressEvent(QKeyEvent *e) {
|
|
|
|
bool shift = e->modifiers().testFlag(Qt::ShiftModifier);
|
2015-05-08 14:36:05 +00:00
|
|
|
bool macmeta = (cPlatform() == dbipMac) && e->modifiers().testFlag(Qt::ControlModifier) && !e->modifiers().testFlag(Qt::MetaModifier) && !e->modifiers().testFlag(Qt::AltModifier);
|
2014-10-17 12:57:14 +00:00
|
|
|
bool ctrl = e->modifiers().testFlag(Qt::ControlModifier) || e->modifiers().testFlag(Qt::MetaModifier), ctrlGood = (ctrl && cCtrlEnter()) || (!ctrl && !shift && !cCtrlEnter()) || (ctrl && shift);
|
2014-05-30 08:53:19 +00:00
|
|
|
bool enter = (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return);
|
|
|
|
|
2015-05-08 14:36:05 +00:00
|
|
|
if (macmeta && e->key() == Qt::Key_Backspace) {
|
|
|
|
QTextCursor tc(textCursor()), start(tc);
|
|
|
|
start.movePosition(QTextCursor::StartOfLine);
|
|
|
|
tc.setPosition(start.position(), QTextCursor::KeepAnchor);
|
|
|
|
tc.removeSelectedText();
|
|
|
|
} else if (enter && ctrlGood) {
|
2014-10-17 12:57:14 +00:00
|
|
|
emit submitted(ctrl && shift);
|
2014-05-30 08:53:19 +00:00
|
|
|
} else if (e->key() == Qt::Key_Escape) {
|
|
|
|
emit cancelled();
|
2014-07-18 11:12:18 +00:00
|
|
|
} else if (e->key() == Qt::Key_Tab || (ctrl && e->key() == Qt::Key_Backtab)) {
|
2014-07-18 10:37:34 +00:00
|
|
|
if (ctrl) {
|
|
|
|
e->ignore();
|
|
|
|
} else {
|
|
|
|
emit tabbed();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
QTextCursor tc(textCursor());
|
|
|
|
if (enter && ctrl) {
|
|
|
|
e->setModifiers(e->modifiers() & ~Qt::ControlModifier);
|
|
|
|
}
|
2015-04-06 22:15:29 +00:00
|
|
|
bool spaceOrReturn = false;
|
|
|
|
QString t(e->text());
|
|
|
|
if (!t.isEmpty() && t.size() < 3) {
|
|
|
|
if (t.at(0) == '\n' || t.at(0) == '\r' || t.at(0).isSpace() || t.at(0) == QChar::LineSeparator) {
|
|
|
|
spaceOrReturn = true;
|
|
|
|
}
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
QTextEdit::keyPressEvent(e);
|
|
|
|
if (tc == textCursor()) {
|
|
|
|
bool check = false;
|
|
|
|
if (e->key() == Qt::Key_PageUp || e->key() == Qt::Key_Up) {
|
2015-01-28 13:29:01 +00:00
|
|
|
tc.movePosition(QTextCursor::Start, e->modifiers().testFlag(Qt::ShiftModifier) ? QTextCursor::KeepAnchor : QTextCursor::MoveAnchor);
|
2014-05-30 08:53:19 +00:00
|
|
|
check = true;
|
|
|
|
} else if (e->key() == Qt::Key_PageDown || e->key() == Qt::Key_Down) {
|
2015-01-28 13:29:01 +00:00
|
|
|
tc.movePosition(QTextCursor::End, e->modifiers().testFlag(Qt::ShiftModifier) ? QTextCursor::KeepAnchor : QTextCursor::MoveAnchor);
|
2014-05-30 08:53:19 +00:00
|
|
|
check = true;
|
|
|
|
}
|
|
|
|
if (check) {
|
|
|
|
if (tc == textCursor()) {
|
|
|
|
e->ignore();
|
|
|
|
} else {
|
|
|
|
setTextCursor(tc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-06 22:15:29 +00:00
|
|
|
if (spaceOrReturn) emit spacedReturnedPasted();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::resizeEvent(QResizeEvent *e) {
|
|
|
|
_phelided = _st.font->m.elidedText(_ph, Qt::ElideRight, width() - _st.textMrg.left() - _st.textMrg.right() - _st.phPos.x() - 1);
|
|
|
|
QTextEdit::resizeEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlatTextarea::mousePressEvent(QMouseEvent *e) {
|
|
|
|
QTextEdit::mousePressEvent(e);
|
|
|
|
}
|