2017-02-19 22:48:44 +08:00
|
|
|
/*
|
|
|
|
Copyright © 2017 by The qTox Project Contributors
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox 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.
|
|
|
|
|
|
|
|
qTox 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-02-06 23:20:45 +08:00
|
|
|
#include "textformatter.h"
|
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QPair>
|
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
enum TextStyle {
|
|
|
|
BOLD = 0,
|
|
|
|
ITALIC,
|
|
|
|
UNDERLINE,
|
|
|
|
STRIKE,
|
|
|
|
CODE
|
|
|
|
};
|
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
static const QString COMMON_PATTERN = QStringLiteral("(?<=^|[^%1<])"
|
|
|
|
"[%1]{%3}"
|
|
|
|
"(?![%1 \\n])"
|
|
|
|
".+?"
|
|
|
|
"(?<![%1< \\n])"
|
|
|
|
"[%1]{%3}"
|
|
|
|
"(?=$|[^%1])");
|
|
|
|
|
|
|
|
static const QString MULTILINE_CODE = QStringLiteral("(?<=^|[^`])"
|
|
|
|
"```"
|
|
|
|
"(?!`)"
|
|
|
|
"(.|\\n)+"
|
|
|
|
"(?<!`)"
|
|
|
|
"```"
|
|
|
|
"(?=$|[^`])");
|
2017-02-06 23:20:45 +08:00
|
|
|
|
|
|
|
// Items in vector associated with TextStyle values respectively. Do NOT change this order
|
2017-02-19 22:48:44 +08:00
|
|
|
static const QVector<QString> fontStylePatterns
|
|
|
|
{
|
2017-02-06 23:20:45 +08:00
|
|
|
QStringLiteral("<b>%1</b>"),
|
|
|
|
QStringLiteral("<i>%1</i>"),
|
|
|
|
QStringLiteral("<u>%1</u>"),
|
|
|
|
QStringLiteral("<s>%1</s>"),
|
|
|
|
QStringLiteral("<font color=#595959><code>%1</code></font>")
|
|
|
|
};
|
|
|
|
|
|
|
|
// Unfortunately, can't use simple QMap because ordered applying of styles is required
|
2017-02-19 22:48:44 +08:00
|
|
|
static const QVector<QPair<QRegularExpression, QString>> textPatternStyle
|
|
|
|
{
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("*", "1")), fontStylePatterns[BOLD] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("/", "1")), fontStylePatterns[ITALIC] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("_", "1")), fontStylePatterns[UNDERLINE] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("~", "1")), fontStylePatterns[STRIKE] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("`", "1")), fontStylePatterns[CODE] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("*", "2")), fontStylePatterns[BOLD] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("/", "2")), fontStylePatterns[ITALIC] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("_", "2")), fontStylePatterns[UNDERLINE] },
|
|
|
|
{ QRegularExpression(COMMON_PATTERN.arg("~", "2")), fontStylePatterns[STRIKE] },
|
|
|
|
{ QRegularExpression(MULTILINE_CODE), fontStylePatterns[CODE] }
|
2017-02-06 23:20:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TextFormatter::TextFormatter(const QString &str)
|
2017-02-19 22:48:44 +08:00
|
|
|
: sourceString(str)
|
|
|
|
{
|
|
|
|
}
|
2017-02-06 23:20:45 +08:00
|
|
|
|
|
|
|
/**
|
2017-02-19 22:48:44 +08:00
|
|
|
* @brief Counts equal symbols at the beginning of the string
|
2017-02-06 23:20:45 +08:00
|
|
|
* @param str Source string
|
|
|
|
* @return Amount of equal symbols at the beginning of the string
|
|
|
|
*/
|
2017-02-19 22:48:44 +08:00
|
|
|
static int patternSignsCount(const QString& str)
|
|
|
|
{
|
2017-02-06 23:20:45 +08:00
|
|
|
QChar escapeSign = str.at(0);
|
|
|
|
int result = 0;
|
2017-02-19 22:48:44 +08:00
|
|
|
int length = str.length();
|
|
|
|
while (result < length && str[result] == escapeSign)
|
|
|
|
{
|
|
|
|
++result;
|
2017-02-06 23:20:45 +08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 22:48:44 +08:00
|
|
|
* @brief Checks HTML tags intersection while applying styles to the message text
|
|
|
|
* @param str Checking string
|
|
|
|
* @return True, if tag intersection detected
|
2017-02-06 23:20:45 +08:00
|
|
|
*/
|
2017-02-19 22:48:44 +08:00
|
|
|
static bool isTagIntersection(const QString& str)
|
|
|
|
{
|
|
|
|
const QRegularExpression TAG_PATTERN("(?<=<)/?[a-zA-Z0-9]+(?=>)");
|
|
|
|
|
|
|
|
int openingTagCount = 0;
|
|
|
|
int closingTagCount = 0;
|
|
|
|
|
|
|
|
QRegularExpressionMatchIterator iter = TAG_PATTERN.globalMatch(str);
|
|
|
|
while (iter.hasNext())
|
|
|
|
{
|
|
|
|
iter.next().captured()[0] == '/'
|
|
|
|
? ++closingTagCount
|
|
|
|
: ++openingTagCount;
|
|
|
|
}
|
|
|
|
return openingTagCount != closingTagCount;
|
2017-02-06 23:20:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 22:48:44 +08:00
|
|
|
* @brief Applies styles to the font of text that was passed to the constructor
|
|
|
|
* @param showFormattingSymbols True, if it is supposed to include formatting symbols into resulting string
|
2017-02-06 23:20:45 +08:00
|
|
|
* @return Source text with styled font
|
|
|
|
*/
|
2017-02-19 22:48:44 +08:00
|
|
|
QString TextFormatter::applyHtmlFontStyling(bool showFormattingSymbols)
|
|
|
|
{
|
2017-02-06 23:20:45 +08:00
|
|
|
QString out = sourceString;
|
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
for (QPair<QRegularExpression, QString> pair : textPatternStyle)
|
|
|
|
{
|
|
|
|
QRegularExpressionMatchIterator matchesIterator = pair.first.globalMatch(out);
|
2017-02-06 23:20:45 +08:00
|
|
|
int insertedTagSymbolsCount = 0;
|
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
while (matchesIterator.hasNext())
|
|
|
|
{
|
2017-02-06 23:20:45 +08:00
|
|
|
QRegularExpressionMatch match = matchesIterator.next();
|
2017-02-19 22:48:44 +08:00
|
|
|
if (isTagIntersection(match.captured()))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2017-02-06 23:20:45 +08:00
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
int capturedStart = match.capturedStart() + insertedTagSymbolsCount;
|
|
|
|
int capturedLength = match.capturedLength();
|
2017-02-06 23:20:45 +08:00
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
QString stylingText = out.mid(capturedStart, capturedLength);
|
|
|
|
int choppingSignsCount = showFormattingSymbols ? 0 : patternSignsCount(stylingText);
|
|
|
|
int textStart = capturedStart + choppingSignsCount;
|
|
|
|
int textLength = capturedLength - 2 * choppingSignsCount;
|
2017-02-06 23:20:45 +08:00
|
|
|
|
|
|
|
QString styledText = pair.second.arg(out.mid(textStart, textLength));
|
|
|
|
|
2017-02-19 22:48:44 +08:00
|
|
|
out.replace(capturedStart, capturedLength, styledText);
|
|
|
|
// Subtracting length of "%1"
|
|
|
|
insertedTagSymbolsCount += pair.second.length() - 2 - 2 * choppingSignsCount;
|
2017-02-06 23:20:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 22:48:44 +08:00
|
|
|
* @brief Applies all styling for the text
|
|
|
|
* @param showFormattingSymbols True, if it is supposed to include formatting symbols into resulting string
|
2017-02-06 23:20:45 +08:00
|
|
|
* @return Styled string
|
|
|
|
*/
|
2017-02-19 22:48:44 +08:00
|
|
|
QString TextFormatter::applyStyling(bool showFormattingSymbols)
|
|
|
|
{
|
|
|
|
return applyHtmlFontStyling(showFormattingSymbols);
|
2017-02-06 23:20:45 +08:00
|
|
|
}
|