/* x64dbg RichTextPainter */ #ifndef RICHTEXTPAINTER_H #define RICHTEXTPAINTER_H #include #include #include 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; bool highlight; QColor highlightColor; int highlightWidth = 2; bool highlightConnectPrev = false; }; typedef std::vector 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); }; #endif // RICHTEXTPAINTER_H