Match CTextParser::ParseTag, thanks Cuyler

This commit is contained in:
2025-05-13 20:57:29 -07:00
parent 03165e3e54
commit c4a0f92b44
11 changed files with 98 additions and 41 deletions

View File

@@ -10,6 +10,7 @@
class CInstruction;
class CBlockInstruction;
class CLineInstruction;
class CFontImageDef;
class CTextExecuteBuffer {
typedef rstl::list< rstl::ncrc_ptr< CInstruction > > InstList;
@@ -24,6 +25,10 @@ public:
void AddVerticalJustification(EVerticalJustification just);
void AddPushState();
void AddPopState();
void AddImage(const CFontImageDef& image);
void AddColor(EColorType type, const CTextColor& color);
void AddRemoveColorOverride(int idx);
void AddColorOverride(int idx, const CTextColor& color);
private:
InstList x0_instructions;