2018-12-27 08:39:10 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* util/RsSyntaxHighlighter.cpp *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero 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 *
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2015-12-06 15:11:47 -05:00
|
|
|
#include "RsSyntaxHighlighter.h"
|
|
|
|
|
|
|
|
RsSyntaxHighlighter::RsSyntaxHighlighter(QTextEdit *parent)
|
|
|
|
: QSyntaxHighlighter(parent)
|
|
|
|
{
|
2015-12-12 20:01:06 -05:00
|
|
|
|
2015-12-06 15:11:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void RsSyntaxHighlighter::highlightBlock(const QString &text)
|
|
|
|
{
|
|
|
|
QRegExp endl("[\\r\\n\\x2028]"); //Usually 0x2028 cahracter is used for newline, no idea why
|
|
|
|
int index = 0;
|
|
|
|
QStringList lines = text.split(endl);
|
|
|
|
foreach (const QString &line, lines) {
|
|
|
|
if(line.trimmed().startsWith('>')) {
|
|
|
|
setFormat(index, line.length(), quotationFormat);
|
|
|
|
}
|
|
|
|
index += line.length() + 1;
|
|
|
|
}
|
|
|
|
//Make it work with the compact chat style
|
|
|
|
if(lines.length() > 0){
|
|
|
|
int i = lines[0].indexOf(": >");
|
|
|
|
if(i != -1) {
|
|
|
|
setFormat(i+2, lines[0].length()-i-2, quotationFormat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-12 20:01:06 -05:00
|
|
|
void RsSyntaxHighlighter::setTextColorQuote(QColor textColorQuote)
|
|
|
|
{
|
|
|
|
quotationFormat.setForeground(textColorQuote);
|
|
|
|
this->rehighlight();
|
|
|
|
}
|
|
|
|
|
2015-12-06 15:11:47 -05:00
|
|
|
//Dumping the raw unicode string into the console in Base64 encoding
|
|
|
|
/*
|
|
|
|
QByteArray uniline;
|
|
|
|
const QChar* qca = line.unicode();
|
|
|
|
for(int i=0; qca[i]!='\0' ;++i)
|
|
|
|
{
|
|
|
|
uniline.append(qca[i].row());
|
|
|
|
uniline.append(qca[i].cell());
|
|
|
|
}
|
|
|
|
std::cout << "Line: " << uniline.toBase64().toStdString() << std::endl;
|
|
|
|
*/
|