2017-09-28 21:53:59 +00:00
|
|
|
/* x64dbg RichTextPainter */
|
|
|
|
#ifndef RICHTEXTPAINTER_H
|
|
|
|
#define RICHTEXTPAINTER_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QColor>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class CachedFontMetrics;
|
|
|
|
class QPainter;
|
|
|
|
|
|
|
|
class RichTextPainter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//structures
|
|
|
|
enum CustomRichTextFlags
|
|
|
|
{
|
|
|
|
FlagNone,
|
|
|
|
FlagColor,
|
|
|
|
FlagBackground,
|
|
|
|
FlagAll
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CustomRichText_t
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
QColor textColor;
|
|
|
|
QColor textBackground;
|
|
|
|
CustomRichTextFlags flags;
|
2018-01-31 09:17:06 +00:00
|
|
|
bool highlight = false;
|
2017-09-28 21:53:59 +00:00
|
|
|
QColor highlightColor;
|
|
|
|
int highlightWidth = 2;
|
|
|
|
bool highlightConnectPrev = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<CustomRichText_t> List;
|
|
|
|
|
|
|
|
//functions
|
|
|
|
static void paintRichText(QPainter* painter, int x, int y, int w, int h, int xinc, const List & richText, CachedFontMetrics* fontMetrics);
|
|
|
|
static void htmlRichText(const List & richText, QString & textHtml, QString & textPlain);
|
2017-12-19 16:00:42 +00:00
|
|
|
|
2017-12-19 16:59:39 +00:00
|
|
|
static List cropped(const List &richText, int maxCols, const QString &indicator = nullptr, bool *croppedOut = nullptr);
|
2017-09-28 21:53:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RICHTEXTPAINTER_H
|