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

25 lines
482 B
C
Raw Normal View History

#ifndef TEXTFORMATTER_H
#define TEXTFORMATTER_H
#include <QString>
class TextFormatter
{
private:
QString sourceString;
int patternEscapeSignsCount(const QString& str);
int getCapturedLength(const QRegularExpressionMatch& match, const int exprNumber);
QString applyHtmlFontStyling(bool dontShowFormattingSymbols);
public:
explicit TextFormatter(const QString& str);
QString applyStyling(bool dontShowFormattingSymbols);
};
#endif // TEXTFORMATTER_H